.ax-topper-option {
    --ax-topper-accent: #c99b4b;
    --ax-topper-ink: #0d2d55;
    margin: 22px 0 8px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(13, 45, 85, 0.10);
}

.ax-topper-heading {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    color: var(--ax-topper-ink);
    font-size: 1rem;
    line-height: 1.35;
}

.ax-topper-heading strong {
    font-weight: 700;
}

.ax-topper-current {
    font-weight: 400;
}

.ax-topper-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ax-topper-choice {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 148px;
    height: 54px;
    padding: 0 20px;
    border: 1px solid #d6d9de;
    border-radius: 12px;
    background: #fff;
    color: var(--ax-topper-ink);
    cursor: pointer;
    box-sizing: border-box;
    line-height: 1.2;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, transform 0.16s ease, opacity 0.16s ease;
}

.ax-topper-choice:hover:not(.is-disabled) {
    border-color: rgba(13, 45, 85, 0.42);
    transform: translateY(-1px);
}

.ax-topper-choice.is-active {
    border-color: var(--ax-topper-accent);
    background: #fffdf8;
    box-shadow: 0 0 0 3px rgba(201, 155, 75, 0.16);
}

.ax-topper-choice.is-disabled {
    opacity: 0.46;
    cursor: not-allowed;
}

.ax-topper-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ax-topper-choice-main {
    font-weight: 700;
    white-space: nowrap;
}

.ax-topper-choice-price {
    display: none;
    padding-left: 7px;
    border-left: 1px solid rgba(13, 45, 85, 0.16);
    font-size: 0.93em;
    font-weight: 600;
    white-space: nowrap;
}

.ax-topper-choice-price:not(:empty) {
    display: inline-block;
}

.ax-topper-note {
    margin: 12px 0 0;
    color: #697787;
    font-size: 0.92rem;
    line-height: 1.4;
}

.ax-topper-note.is-selected {
    color: var(--ax-topper-ink);
    font-weight: 600;
}

.ax-topper-note.is-warning {
    color: #697787;
}

.ax-linked-topper-quantity {
    display: inline-block;
    min-width: 2em;
    text-align: center;
}

@media (max-width: 560px) {
    .ax-topper-buttons {
        gap: 10px;
    }

    .ax-topper-choice {
        min-width: 142px;
        height: 52px;
        padding-right: 14px;
        padding-left: 14px;
    }
}

@media (max-width: 390px) {
    .ax-topper-choice {
        min-width: 0;
        width: 100%;
    }
}
