:root {
    --united-red: #a83333;
    --united-red-dark: #8a2828;
    --united-red-light: #c24545;
    --united-gold: #c6ac83;
    --united-gold-dark: #a28130;
    --united-gold-light: #d4c09f;
    --united-dark: #0f0e0f;
    --united-dark-2: #141314;
    --united-dark-3: #1e1b1b;
    --united-surface: #1a1618;
    --united-white: #ffffff;
    --united-text: #d0d0d0;
    --united-text-muted: #9e9e9e;
    --united-border: rgba(198, 172, 131, 0.2);
    --united-border-2: rgba(198, 172, 131, 0.35);
    --united-overlay: rgba(15, 14, 15, 0.85);

    /* Re-map Coffee template variables to United brand */
    --color-primary: var(--united-red);
    --color-secondary: var(--united-gold);

    /* Legacy template variable aliases → United brand tokens */
    --Primary: var(--united-red);
    --Secondary: var(--united-gold);
    --White: var(--united-white);
    --Black: var(--united-dark);
    --Border: var(--united-border);
    --bg-main: var(--united-dark);
    --bg-2: var(--united-dark-3);
    --bg-3: var(--united-surface);
    --bg-input: var(--united-dark-2);
}

/* ===== RESERVATION BOOKING PAGE (UNITED ASSETS MIGRATION) ===== */

body.reservation-rtl {
    direction: rtl;
}

body.reservation-rtl input,
body.reservation-rtl textarea,
body.reservation-rtl select,
body.reservation-rtl .form-control,
body.reservation-rtl .form-select {
    text-align: right;
}

body.reservation-rtl .btn-back svg,
body.reservation-rtl .btn-next svg {
    transform: scaleX(-1);
}

.reservation-wrapper {
}

.reservation-page {
    position: relative;
    overflow: hidden;
}

.reservation-page .text,
.reservation-page .breadcrumbs a {
    color: #c6ac83;
}

.reservation-page .heading {
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.reservation-page .breadcrumbs .active a {
    color: #fff;
}

.reservation-form-section {
    padding: 28px 0 88px;
}

.reservation-form-section .container,
.reservation-form-section .themesflat-container {
    position: relative;
}

.reservation-form-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(198, 172, 131, 0.22);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
    padding: 34px;
}

.reservation-title {
    margin: 0 0 26px;
    color: #c29742;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.step-indicators {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    margin-bottom: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    border-radius: 18px;
    border: 1px solid rgba(198, 172, 131, 0.18);
    background: rgba(255, 255, 255, 0.03);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.step-line {
    display: none;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(198, 172, 131, 0.38);
    background: rgba(255, 255, 255, 0.05);
    color: #c6ac83;
    font-size: 18px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.step-label {
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.step.active {
    border-color: rgba(198, 172, 131, 0.52);

    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.step.completed .step-number {
    color: #fff;
    background: #5cb85c;
}
.step.completed{
    border: 2px solid #5cb85c;
}

.step.active .step-number {
    color: #fff;
    border-color: rgba(198, 172, 131, 0.75);
    background: linear-gradient(135deg, #a83333 0%, #8f2929 65%, #c6ac83 100%);
}
.step.completed .step-label {
    color: #5cb85c;
}

.step.active .step-label {
    color: #c29742;
    font-weight: 700;
}

.step-content {
    display: none;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.reservation-form-card .form-section,
.reservation-form-card .checkout-section,
.reservation-form-card .order-type-selection,
.reservation-form-card .scheduled-date-section,
.reservation-form-card .payment-method-section {
    border-radius: 20px;
    border: 1px solid rgba(198, 172, 131, 0.18);
    background: rgba(255, 255, 255, 0.03);
    padding: 22px;
    margin-bottom: 20px;
}

.reservation-form-card .section-divider,
.reservation-form-card h3,
.reservation-form-card h5 {
    margin: 0 0 16px;
    color: #c29742;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.reservation-form-card .form-label,
.reservation-form-card label {
    color: #c29742;
    font-size: 14px;
    margin-bottom: 8px;
}

.required-asterisk {
    color: #ff8f8f;
}

.reservation-form-card input,
.reservation-form-card select,
.reservation-form-card textarea,
.reservation-form-card .form-control,
.reservation-form-card .form-select {
    border: 2px solid rgb(198 172 131);
}

.reservation-form-card textarea {
    min-height: 124px;
    resize: vertical;
}

.reservation-form-card input::placeholder,
.reservation-form-card textarea::placeholder,
.reservation-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.reservation-form-card input:focus,
.reservation-form-card select:focus,
.reservation-form-card textarea:focus,
.reservation-form-card .form-control:focus,
.reservation-form-card .form-select:focus {
    outline: none;
    border-color: rgba(198, 172, 131, 0.72);
    box-shadow: 0 0 0 3px rgba(198, 172, 131, 0.16);
}

.reservation-form-card .form-text,
.reservation-form-card .text-muted {
    color: rgba(255, 255, 255, 0.56) !important;
}

.invalid-feedback,
.error-message {
    color: #ff8f8f;
}

.reservation-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.type-option,
.sub-option {
    display: block;
    cursor: pointer;
}

.type-option input[type="radio"],
.sub-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.type-card,
.sub-option-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 18px;
    border: 1px solid #c29742;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.type-option:hover .type-card,
.sub-option:hover .sub-option-card {
    transform: translateY(-2px);
    border-color: rgba(194, 151, 66, 0.44);
    background: rgba(194, 151, 66, 0.08);
}

.type-option.selected .type-card,
.sub-option.selected .sub-option-card,
.type-option input[type="radio"]:checked + .type-card,
.sub-option input[type="radio"]:checked + .sub-option-card {
    border-color: #8a2828;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.type-icon,
.sub-option-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c29742;
    background: rgba(198, 172, 131, 0.1);
    font-size: 22px;
}

.type-content,
.sub-option-card > div:last-child {
    flex: 1;
}

.type-content h4,
.sub-option-card h5 {
    margin: 0 0 6px;
    color: #171412;
    font-size: 15px;
    line-height: 1.25;
}

.type-content p,
.sub-option-card p {
    margin: 0;
    color: #000;
    line-height: 1.55;
    font-size: 13px;
}

.sub-options {
    display: none;
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    border: 1px dashed rgba(198, 172, 131, 0.26);
    background: rgba(255, 255, 255, 0.02);
    animation: reservationSlideDown 0.25s ease;
}

.sub-options.show,
.sub-options.active {
    display: block;
}

.sub-option-label {
    margin-bottom: 12px;
    color: #c29742;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
}

.sub-option {
    margin-bottom: 12px;
}

.sub-option:last-child {
    margin-bottom: 0;
}

.button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.btn-back,
.btn-next,
.btn-complete,
.btn-place-order {
    min-height: 48px;
    border-radius: 14px;
    border: 0;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.btn-next,
.btn-complete,
.btn-place-order {
    color: var(--united-white);
    background-color: var(--united-red);
    box-shadow: 0 18px 26px rgba(168, 51, 51, 0.26);
    width: 50%;
}

.btn-next:hover:not(:disabled),
.btn-complete:hover,
.btn-place-order:hover {
    transform: translateY(-2px);
    color: #fff;
}

.btn-next:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-back {
    color: #fff;
    border: 1px solid rgba(198, 172, 131, 0.26);
    background: var(--united-dark-2);
    width: 45%;
}

.btn-back:hover {
    color: var(--united-white);
    background: var(--united-gold-dark);
    transform: translateY(-2px);
}

.reservation-form-card .alert {
    border-radius: 16px;
    border: 1px solid rgba(198, 172, 131, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.reservation-form-card .alert-danger {
    border-color: rgba(255, 138, 138, 0.24);
    background: red;
}

.reservation-form-card .alert-warning {
    border-color: rgba(255, 206, 110, 0.24);
    background: yellow;
}

.reservation-form-card .alert-success {
    border-color: rgba(91, 180, 123, 0.24);
    background: green;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 6, 7, 0.8);
    backdrop-filter: blur(4px);
}

.spinner-container {
    text-align: center;
    color: #c29742;
}

.spinner-border {
    width: 56px;
    height: 56px;
    border-width: 4px;
    color: #c6ac83;
}

.modal-overlay {
    background: rgba(8, 6, 7, 0.76) !important;
}

.modal-overlay .modal-content {
    border-radius: 20px !important;
    border: 1px solid rgba(198, 172, 131, 0.22) !important;
    background: linear-gradient(
        180deg,
        rgba(24, 20, 21, 0.99) 0%,
        rgba(16, 13, 14, 0.99) 100%
    ) !important;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42) !important;
    color: #f8ecd8 !important;
}

.modal-overlay .modal-content h4,
.modal-overlay .modal-content button {
    color: #c29742 !important;
}

.modal-overlay .modal-content button:last-child {
    color: #fff !important;
    background: linear-gradient(
        135deg,
        #a83333 0%,
        #8f2929 66%,
        #c6ac83 100%
    ) !important;
}

.reservation-form-section .progress-wrap {
    z-index: 25;
}

.reservation-payment-card {
    border-radius: 24px;
    border: 1px solid rgba(198, 172, 131, 0.22);
    background: linear-gradient(
        180deg,
        rgba(24, 20, 21, 0.98) 0%,
        rgba(17, 14, 15, 0.98) 100%
    );
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
    padding: 28px;
}

.reservation-payment-card .form-section,
.reservation-payment-card .section-divider {
    margin-bottom: 18px;
}

.reservation-payment-card p,
.reservation-payment-card strong {
    color: rgba(255, 255, 255, 0.86);
}

.reservation-payment-card .btn-complete,
.reservation-payment-card .btn-back {
    width: 100%;
}

@keyframes reservationSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .reservation-form-section {
        padding: 18px 0 72px;
    }

    .reservation-form-card,
    .reservation-payment-card {
        padding: 22px;
        border-radius: 20px;
    }

    .reservation-types {
        grid-template-columns: 1fr;
    }

    .step-indicators {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group > * {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reservation-page .heading {
        font-size: 28px;
    }

    .reservation-form-card {
        padding: 18px;
    }

    .reservation-form-card .form-section,
    .reservation-form-card .checkout-section,
    .reservation-form-card .order-type-selection,
    .reservation-form-card .scheduled-date-section,
    .reservation-form-card .payment-method-section {
        padding: 18px;
    }

    .step,
    .type-card,
    .sub-option-card {
        border-radius: 16px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .reservation-form-card .form-label,
    .reservation-form-card label {
        font-size: 13px;
    }

    .reservation-form-card input,
    .reservation-form-card select,
    .reservation-form-card textarea,
    .reservation-form-card .form-control,
    .reservation-form-card .form-select,
    .btn-back,
    .btn-next,
    .btn-complete,
    .btn-place-order {
        min-height: 44px;
    }

    .reservation-payment-card {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .reservation-page .text {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .reservation-page .heading {
        font-size: 24px;
    }

    .reservation-title {
        font-size: 24px;
    }

    .type-card,
    .sub-option-card {
        padding: 16px;
    }

    .type-icon,
    .sub-option-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 18px;
    }
}

/* =================================================================
   STEP 1 — "REVEAL STRIP" REDESIGN  (rs1- prefix = no conflicts)
   ================================================================= */

/* ── Header ── */
.rs1-header {
    text-align: center;
    margin-bottom: 32px;
}

.rs1-step-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    border-radius: 99px;
    border: 1px solid rgba(198, 172, 131, 0.3);
    background: rgba(198, 172, 131, 0.07);
    color: var(--united-gold);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rs1-headline {
    font-size: clamp(18px, 3vw, 24px) !important;
    color: #2a2117 !important;
    margin: 0 !important;
    letter-spacing: 0.015em !important;
    text-transform: none !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

/* ── Strips container ── */
.rs1-strips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Each row = strip label + sub-reveal */
.rs1-row {
    display: flex;
    flex-direction: column;
}

/* ── Strip (the clickable label) ── */
.rs1-strip {
    display: block !important;
    cursor: pointer;
    position: relative;
    /* override label margin from base styles */
    margin-bottom: 0 !important;
}

/* ── The card inside the label ── */
.rs1-card {
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    border-radius: 18px !important;
    border: 1.5px solid rgba(143, 106, 52, 0.34) !important;
    background: #fdfaf4 !important;
    overflow: hidden;
    position: relative;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease !important;
}

/* Left accent bar */
.rs1-card::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.18s ease;
    z-index: 1;
}

/* Hover */
.rs1-strip:hover .rs1-card {
    border-color: rgba(143, 106, 52, 0.5) !important;
    background: #f6efe4 !important;
    transform: translateX(2px) !important;
    box-shadow: -3px 0 0 0 rgba(143, 106, 52, 0.2) !important;
}

html[dir="rtl"] .rs1-strip:hover .rs1-card {
    transform: translateX(-2px) !important;
    box-shadow: 3px 0 0 0 rgba(143, 106, 52, 0.2) !important;
}

/* Selected */
.rs1-strip.selected .rs1-card {
    border-color: rgba(168, 51, 51, 0.85) !important;
    background: #fff4f4 !important;
    box-shadow: 0 5px 18px rgba(168, 51, 51, 0.22) !important;
    transform: none !important;
}

.rs1-strip.selected .rs1-card::before {
    background: linear-gradient(180deg, #c24545 0%, #8a2828 100%);
}

/* Disabled */
.type-option-disabled.rs1-strip {
    pointer-events: none;
}

.type-option-disabled.rs1-strip .rs1-card {
    opacity: 0.56 !important;
    filter: grayscale(0.6) !important;
}

/* ── Card left section (ordinal + icon) ── */
.rs1-card-left {
    position: relative;
    width: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 12px;
    background: #efe5d6;
    border-inline-end: 1px solid rgba(143, 106, 52, 0.2);
    overflow: hidden;
}

.rs1-ordinal {
    position: absolute;
    font-size: 52px;
    font-weight: 900;
    color: rgba(143, 106, 52, 0.18);
    line-height: 1;
    letter-spacing: -5px;
    user-select: none;
    pointer-events: none;
    transition: color 0.18s ease;
}

.rs1-strip.selected .rs1-ordinal {
    color: rgba(168, 51, 51, 0.26);
}

.rs1-icon-wrap {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbf1df;
    border: 1px solid rgba(143, 106, 52, 0.35);
    color: #7d5828;
    font-size: 18px;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.rs1-strip.selected .rs1-icon-wrap {
    background: #f8dddd;
    border-color: rgba(168, 51, 51, 0.6);
    color: #8a2828;
    box-shadow: 0 0 0 3px rgba(168, 51, 51, 0.16);
}

/* ── Card body ── */
.rs1-card-body {
    flex: 1;
    padding: 20px 18px 20px 22px;
}

html[dir="rtl"] .rs1-card-body {
    padding: 20px 22px 20px 18px;
}

.rs1-type-name {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #2b241c !important;
    margin: 0 0 5px !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    line-height: 1.3 !important;
}

.rs1-type-desc {
    font-size: 12.5px !important;
    color: #6a5b49 !important;
    margin: 0 !important;
    line-height: 1.65 !important;
}

.rs1-strip.selected .rs1-type-name {
    color: #541f1f !important;
}

.rs1-strip.selected .rs1-type-desc {
    color: #7a3f3f !important;
}

/* ── Card right end (selection ring) ── */
.rs1-card-end {
    padding: 20px 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.rs1-pick-ring {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(143, 106, 52, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.rs1-check-icon {
    font-size: 10px;
    color: #fff;
    opacity: 0;
    transform: scale(0.4);
    transition:
        opacity 0.16s ease,
        transform 0.16s ease;
}

.rs1-strip.selected .rs1-pick-ring {
    border-color: #a83333;
    background: linear-gradient(135deg, #c24545 0%, #8a2828 100%);
    box-shadow: 0 0 14px rgba(168, 51, 51, 0.45);
}

.rs1-strip.selected .rs1-check-icon {
    opacity: 1;
    transform: scale(1);
}

/* ── Sub-reveal: the expanding panel below each strip ── */
.rs1-sub-reveal {
    /* Override .sub-options defaults */
    margin-top: -2px !important;
    padding: 0 !important;
    border-radius: 0 0 18px 18px !important;
    border: 1.5px solid rgba(168, 51, 51, 0.6) !important;
    border-top: none !important;
    background: #fff8f8 !important;
    animation: none !important; /* cancel reservationSlideDown */
}

.rs1-sub-reveal.show {
    animation: rs1SubReveal 0.18s ease-out both !important;
}

@keyframes rs1SubReveal {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rs1-sub-inner {
    padding: 18px 22px 22px;
}

.rs1-sub-label {
    display: block;
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
    font-weight: 800 !important;
    color: #7d5828 !important;
    text-transform: uppercase !important;
    margin-bottom: 14px !important;
}

.rs1-sub-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Each choice item ── */
.rs1-choice {
    display: block !important;
    cursor: pointer;
    margin-bottom: 0 !important;
}

/* The visible card inside a choice */
.rs1-choice-card {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    border-radius: 14px !important;
    border: 1.5px solid rgba(143, 106, 52, 0.32) !important;
    background: #ffffff !important;
    padding: 13px 16px !important;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease !important;
}

.rs1-choice:hover .rs1-choice-card {
    border-color: rgba(143, 106, 52, 0.5) !important;
    background: #fdf6eb !important;
}

.rs1-choice.selected .rs1-choice-card,
.rs1-choice input[type="radio"]:checked + .rs1-choice-card {
    border-color: rgba(168, 51, 51, 0.85) !important;
    background: #fff2f2 !important;
    box-shadow: 0 2px 10px rgba(168, 51, 51, 0.16) !important;
}

/* Choice icon badge */
.rs1-choice-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbf1df;
    border: 1px solid rgba(143, 106, 52, 0.35);
    color: #7d5828;
    font-size: 14px;
    flex-shrink: 0;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.rs1-choice.selected .rs1-choice-icon {
    background: #f8dddd;
    border-color: rgba(168, 51, 51, 0.7);
    color: #8a2828;
}

/* Choice text */
.rs1-choice-text {
    flex: 1;
}

.rs1-choice-text h5 {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #2d251c !important;
    margin: 0 0 3px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.3 !important;
}

.rs1-choice-text p {
    font-size: 12px !important;
    color: #6a5b49 !important;
    margin: 0 !important;
    line-height: 1.55 !important;
}

/* Custom radio dot */
.rs1-choice-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(143, 106, 52, 0.5);
    flex-shrink: 0;
    background: transparent;
    position: relative;
    transition: border-color 0.18s ease;
}

.rs1-choice-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a83333;
    transition: transform 0.16s ease;
}

.rs1-choice.selected .rs1-choice-dot {
    border-color: #a83333;
}

.rs1-choice.selected .rs1-choice-dot::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ── Next button ── */
.rs1-btn-group {
    margin-top: 26px !important;
}

.rs1-next-btn {
    width: 100% !important;
    font-size: 13px !important;
    letter-spacing: 0.13em !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    position: relative;
    overflow: hidden;
    gap: 10px !important;
}

/* Shimmer on hover */
.rs1-next-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 70%
    );
    transform: translateX(-120%);
    transition: transform 0.32s ease;
}

.rs1-next-btn:hover:not(:disabled)::after {
    transform: translateX(120%);
}

/* RTL arrow flip */
html[dir="rtl"] .rs1-next-btn svg {
    transform: scaleX(-1);
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .rs1-card-left {
        width: 72px;
    }

    .rs1-ordinal {
        font-size: 40px;
    }

    .rs1-icon-wrap {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 10px;
    }

    .rs1-card-body {
        padding: 16px 12px 16px 16px !important;
    }

    html[dir="rtl"] .rs1-card-body {
        padding: 16px 16px 16px 12px !important;
    }

    .rs1-type-name {
        font-size: 13.5px !important;
    }

    .rs1-card-end {
        padding: 16px 14px;
    }

    .rs1-sub-inner {
        padding: 14px 16px 18px;
    }
}
