:root {
    --saffron: #3b080e;
    --saffron-dark: #3b080e;
    --saffron-light: #FFF3E8;
    --cream: #FFFBF5;
    --charcoal: #1A1208;
    --muted: #7A6A55;
    --border: #EDE0CC;
    --success: #2D8C5E;
    --radius: 16px;
    --ink: #12100E;
    --ink-soft: #3D3530;
    --surface: #FDFAF7;
    --surface-2: #F8F2EB;
    --orange: #3b080e;
    --orange-mid: #3b080e;
    --orange-lt: #FFF0E6;
    --gold: #3c080e;
    --green: #2A6B4A;
    --red: #B53222;
    --shadow-sm: 0 2px 12px rgba(18, 16, 14, .07);
    --shadow-md: 0 8px 32px rgba(18, 16, 14, .11);
    --shadow-lg: 0 20px 60px rgba(18, 16, 14, .16);
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --shadow: 0 8px 40px rgba(26, 18, 8, 0.10);
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body * {
    font-family: 'Poppins', sans-serif !important;
}

body {
    background: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
}


body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 70% 20%, #FDE8CC55, transparent),
        radial-gradient(ellipse 50% 60% at 10% 80%, #FFE0B255, transparent);
    pointer-events: none;
    z-index: 0;
}

.page-wrap {
    position: relative;
    z-index: 1;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1300px;
}

/* ─── Navbar ─────────────────────────────── */
/* .top-bar {
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.top-bar .brand {

    font-size: 1.35rem;
    color: #fff;
    letter-spacing: .5px;
}

.top-bar .brand span {
    color: var(--saffron);
}

.cart-btn {
    background: var(--saffron);
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px;


    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
}

.cart-btn:hover {
    background: var(--saffron-dark);
}

.cart-badge {
    background: var(--saffron-dark);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: .72rem;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0px;
}

/* ─── Hero ───────────────────────────────── */
.hero {
    text-align: center;
}

.hero h1 {
    line-height: 1.1;
}

.hero h1 span {
    color: #a75327;
}

.hero p {
    color: var(--muted);
    margin-top: 10px;
    font-size: .95rem;
}

/* ─── Product Card ───────────────────────── */
.product-grid {
    display: flex;
    justify-content: center;
    padding: 28px 20px 60px;
    gap: 24px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    border: 1.5px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26, 18, 8, .16);
}

.product-card .badge-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--saffron);
    color: #fff;
    font-size: .7rem;

    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.product-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    background: linear-gradient(135deg, #FFE8C2 0%, #FFD08A 100%);
}

.product-body {
    padding: 18px 20px 20px;
}

.product-name {

    font-size: 1.35rem;

}

.product-desc {
    color: var(--muted);
    font-size: .85rem;
    margin-top: 5px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.product-price {
    font-size: 15px;

    color: var(--saffron-dark);
}

.product-price small {
    font-size: .75rem;
    color: var(--muted);
}

.book-btn {
    background: var(--charcoal);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 20px;
    font-size: .82rem;

    cursor: pointer;
    transition: background .2s;
}

}

/* ─── Feature Box (Conditional) ───────────── */
.feature-box {
    background: #FFF9E5;
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border: 1px solid #ecc89a;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0 10px 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    border: 1px solid #ecc89a;
    justify-content: center;
    font-size: 1.5rem;
    color: #3b080e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.feature-text h4 {
    margin: 0;
    font-size: 1.05rem;

    color: var(--charcoal);
}

.feature-text p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ════════════════════════════════════════════
   WIZARD MODAL
════════════════════════════════════════════ */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;

    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: var(--charcoal);
    color: #fff;
    border-bottom: none;
    padding: 18px 24px;
    flex-shrink: 0;
}

.modal-title {

    font-size: 1.25rem;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Progress bar */
.wizard-progress {
    background: var(--cream);
    border-bottom: 1.5px solid var(--border);
    padding: 16px 24px 0;
    flex-shrink: 0;
}

.progress-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.progress-fill {
    position: absolute;
    top: 14px;
    left: 14px;
    height: 2px;
    background: var(--saffron);
    z-index: 1;
    transition: width .4s ease;
}

.prog-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.prog-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;

    color: var(--muted);
    transition: all .3s;
}

.prog-step.done .prog-dot {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
}

.prog-step.active .prog-dot {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(232, 117, 26, .18);
}

.prog-label {
    font-size: .68rem;

    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
    padding-bottom: 10px;
}

.prog-step.active .prog-label,
.prog-step.done .prog-label {
    color: var(--saffron-dark);
}

/* Modal body — scrollable area */
.modal-body {
    padding: 0;
    background: var(--cream);
    overflow-y: auto;
    flex: 1;
}

.modal-body::-webkit-scrollbar {
    width: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

/* ─── Wizard panels ──────────────────────── */
.wiz-panel {
    display: none;
}

.wiz-panel.active {
    display: block;
}

/* Panel heading */
.wiz-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.wiz-step-badge {
    background: var(--saffron);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: .75rem;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wiz-title {
    font-size: 1rem;

    color: var(--charcoal);
}

.wiz-hint {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 18px;
    margin-left: 36px;
}

/* ─── Calendar ───────────────────────────── */
.cal-wrap {
    user-select: none;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cal-header .month-label {

    font-size: 1rem;

}

.cal-nav {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 4px 12px;
    cursor: pointer;
    font-size: .95rem;
    color: var(--charcoal);
    transition: background .15s;
}

.cal-nav:hover {
    background: var(--saffron-light);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-name {
    text-align: center;
    font-size: .7rem;

    color: var(--muted);
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.cal-day {
    text-align: center;
    padding: 8px 4px;
    border-radius: 10px;
    font-size: .82rem;

    cursor: pointer;
    transition: background .15s, color .15s;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cal-day:hover:not(.empty):not(.past) {
    background: var(--saffron-light);
    color: var(--saffron-dark);
}

.cal-day.today {
    border: 2px solid var(--saffron);
    color: var(--saffron-dark);

}

.cal-day.selected {
    background: var(--saffron) !important;
    color: #fff !important;

    border: none;
    box-shadow: 0 4px 14px rgba(232, 117, 26, .35);
}

.cal-day.selected::after {
    content: '✓';
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: .5rem;
    opacity: .8;
}

.cal-day.past {
    color: #ccc;
    pointer-events: none;
}

.cal-day.empty {
    pointer-events: none;
}

/* ─── Date confirmed banner ──────────────── */
.date-confirmed-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 2px solid var(--saffron);
    border-radius: 14px;
    padding: 14px 18px;
    margin-top: 20px;
    animation: bannerPop .3s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes bannerPop {
    from {
        transform: scale(.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.date-confirmed-banner .icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.date-confirmed-banner .text-wrap {
    flex: 1;
}

.date-confirmed-banner .label {
    font-size: .72rem;

    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.date-confirmed-banner .date-val {

    font-size: 1.1rem;

    color: var(--charcoal);
    margin-top: 2px;
}

.date-confirmed-banner .change-link {
    font-size: .78rem;
    color: var(--saffron-dark);

    cursor: pointer;
    text-decoration: underline;
    flex-shrink: 0;
}

/* ─── Wizard navigation footer ───────────── */
.wiz-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1.5px solid var(--border);
    background: #fff;
    flex-shrink: 0;
    gap: 12px;
}

.wiz-back-btn {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: .85rem;

    cursor: pointer;
    color: var(--muted);
    transition: all .2s;

}

.wiz-back-btn:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.wiz-next-btn {
    background: var(--saffron);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 28px;
    font-size: .88rem;

    cursor: pointer;
    transition: all .2s;

    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    max-width: 260px;
    margin-left: auto;
}

.wiz-next-btn:hover {
    background: var(--saffron-dark);
    transform: translateY(-1px);
}

.wiz-next-btn:disabled {
    background: #ddd;
    color: #aaa;
    cursor: not-allowed;
    transform: none;
}

/* ─── Step 2: Time Slot Groups ───────────── */
.slot-group {
    margin-bottom: 20px;
}

.slot-group-label {
    font-size: .72rem;

    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.slot-group-label span {
    font-size: .9rem;
}

.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.slot-item {
    position: relative;
}

.slot-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.slot-item label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-size: .78rem;

    cursor: pointer;
    transition: all .18s;
    color: var(--charcoal);
    background: #fff;
    white-space: nowrap;
}

.slot-item label .slot-check-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    transition: all .18s;
    flex-shrink: 0;
}

.slot-item input:checked+label {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
    box-shadow: 0 3px 12px rgba(232, 117, 26, .3);
}

.slot-item input:checked+label .slot-check-icon {
    background: rgba(255, 255, 255, .3);
    border-color: #fff;
    color: #fff;
}

.slot-item label:hover:not(:has(input:checked)) {
    border-color: var(--saffron);
    color: var(--saffron-dark);
    background: var(--saffron-light);
}

/* Selected slot count pill */
.slots-selected-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    border: 1px solid #FFD0A0;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: .75rem;

    margin-bottom: 16px;
    transition: all .2s;
}

.slots-selected-count.hidden {
    opacity: 0;
}

/* ─── Step 3: Qty per slot ───────────────── */
.slot-qty-block {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 12px;
}

.slot-qty-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.slot-time-label {
    font-size: .88rem;

    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 7px;
}

.slot-time-label .time-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--saffron);
    flex-shrink: 0;
}

.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border-radius: 50px;
    padding: 4px 6px;
    border: 1.5px solid var(--border);
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #fff;
    font-size: 1rem;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    color: var(--charcoal);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.qty-btn:hover {
    background: var(--saffron);
    color: #fff;
}

.qty-val {
    width: 36px;
    text-align: center;
    font-size: .95rem;

}

.qty-subtext {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 4px;
}

.qty-price-chip {
    font-size: .78rem;

    color: var(--saffron-dark);
    background: var(--saffron-light);
    border-radius: 50px;
    padding: 3px 10px;
}

/* ─── Step 4: Add-ons ────────────────────── */
.addon-slot-block {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.addon-slot-title {
    font-size: .85rem;

    color: var(--charcoal);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.addon-slot-title .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--saffron);
    flex-shrink: 0;
}

.addon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px dashed var(--border);
}

.addon-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.addon-check {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
    cursor: pointer;
}

.addon-check input[type="checkbox"] {
    accent-color: var(--saffron);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.addon-name {
    font-size: .82rem;

    color: var(--charcoal);
}

.addon-price-tag {
    font-size: .75rem;
    color: var(--muted);
    margin-left: auto;
    white-space: nowrap;
}

.addon-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 8px;
}

.addon-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    color: var(--charcoal);
}

.addon-qty-btn:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
}

.addon-qty-val {
    width: 22px;
    text-align: center;
    font-size: .82rem;

}

.addons-skip-note {
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
}

/* ─── Cart & checkout (unchanged from v2) ─── */
.offcanvas-header {
    background: var(--charcoal);
    color: #fff;
}

.offcanvas-title {

    font-size: 1.2rem;
}

.offcanvas-header .btn-close {
    filter: invert(1);
}

.offcanvas-body {
    background: var(--cream);

}

.cart-empty {
    text-align: center;
    padding: 40px 0;
    color: var(--muted);
    font-size: .9rem;
}

.cart-empty .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.cart-item-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    padding: 14px 16px;
    margin-bottom: 14px;
    animation: slideIn .3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-name {

    font-size: 1rem;

    margin-bottom: 6px;
}

.cart-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    font-size: .74rem;

    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    border: 1px solid #FFD0A0;
}

.cart-slot-row {
    border-top: 1px dashed var(--border);
    padding-top: 8px;
    margin-top: 8px;
}

.cart-slot-time {
    font-size: .78rem;

    color: var(--charcoal);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-slot-time::before {
    content: '🕐';
    font-size: .78rem;
}

.cart-slot-detail {
    font-size: .75rem;
    color: var(--muted);
    margin-left: 20px;
}

.cart-slot-addon-list {
    margin-left: 20px;
    margin-top: 4px;
}

.cart-slot-addon-list li {
    font-size: .73rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.cart-slot-addon-list li span {
    color: var(--saffron-dark);

}

.add-more-btn {
    width: 100%;
    background: none;
    border: 2px dashed var(--saffron);
    border-radius: 50px;
    color: var(--saffron-dark);
    font-size: .85rem;

    padding: 11px 0;
    cursor: pointer;

    transition: background .2s;
    margin-top: 4px;
}

.add-more-btn:hover {
    background: var(--saffron-light);
}

.cart-summary {
    background: var(--charcoal);
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.cart-summary .total-label {
    font-size: .78rem;
    color: #aaa;
}

.cart-summary .total-val {

    font-size: 1.5rem;

}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 0;
    font-size: .95rem;

    letter-spacing: .4px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 6px 20px rgba(232, 117, 26, .35);
    margin-top: 10px;
}

.checkout-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

/* ─── Checkout Offcanvas ─────────────────── */
#checkoutOffcanvas {
    width: 440px;
    max-width: 100vw;
}

#checkoutOffcanvas .offcanvas-body {
    background: var(--cream);

    padding: 0;
    display: flex;
    flex-direction: column;
}

.checkout-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 20px 20px 8px;
}

.checkout-scroll::-webkit-scrollbar {
    width: 4px;
}

.checkout-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.co-section-title {
    font-size: .72rem;

    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.co-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.co-order-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.co-item-name {

    font-size: .95rem;

    margin-bottom: 5px;
}

.co-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    font-size: .72rem;

    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid #FFD0A0;
    margin-bottom: 8px;
}

.co-slot-row {
    border-top: 1px dashed var(--border);
    padding-top: 7px;
    margin-top: 7px;
    font-size: .78rem;
    color: var(--muted);
}

.co-slot-time {
    font-size: .77rem;

    color: var(--charcoal);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.co-slot-time::before {
    content: '🕐';
    font-size: .75rem;
}

.co-slot-detail {
    margin-left: 20px;
    font-size: .74rem;
}

.co-slot-addons {
    margin-left: 20px;
    margin-top: 2px;
}

.co-slot-addons span {
    display: inline-block;
    font-size: .7rem;
    color: var(--muted);
    background: #F5F0EA;
    border-radius: 20px;
    padding: 1px 8px;
    margin: 2px 2px 0 0;
}

.co-price-block {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.co-price-row {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    padding: 5px 0;
    border-bottom: 1px dashed var(--border);
    color: var(--muted);
}

.co-price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.co-price-row.total {
    font-size: .95rem;

    color: var(--charcoal);
    border-bottom: none;
    margin-top: 4px;
}

.co-price-row.total .val {
    color: var(--saffron-dark);
    font-size: 1.05rem;
}

.co-form-group {
    margin-bottom: 12px;
}

.co-form-group label {
    display: block;
    font-size: .78rem;

    color: var(--charcoal);
    margin-bottom: 5px;
}

.co-form-group input,
.co-form-group select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 9px 13px;
    font-size: .85rem;

    color: var(--charcoal);
    background: #fff;
    outline: none;
    transition: border-color .2s;
}

.co-form-group input:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(232, 117, 26, .1);
}

.co-form-row {
    display: flex;
    gap: 10px;
}

.co-form-row .co-form-group {
    flex: 1;
}

.co-pay-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.co-pay-opt {
    display: none;
}

.co-pay-label {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: .8rem;

    cursor: pointer;
    transition: all .18s;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--charcoal);
    user-select: none;
}

.co-pay-opt:checked+.co-pay-label {
    border-color: var(--saffron);
    background: var(--saffron-light);
    color: var(--saffron-dark);
    box-shadow: 0 2px 10px rgba(232, 117, 26, .18);
}

.checkout-footer {
    background: #fff;
    border-top: 1.5px solid var(--border);
    padding: 16px 20px;
    flex-shrink: 0;
}

.place-order-btn {
    width: 100%;
    background: var(--success);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 0;
    font-size: 1rem;

    letter-spacing: .4px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .2s;
    box-shadow: 0 6px 20px rgba(45, 140, 94, .3);
}

.place-order-btn:hover {
    background: #1f6b47;
    transform: translateY(-2px);
}

.order-confirmed-wrap {
    text-align: center;
    padding: 36px 24px;
    animation: popIn .4s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes popIn {
    from {
        transform: scale(.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.order-confirmed-icon {
    font-size: 4rem;
    margin-bottom: 14px;
    display: block;
    animation: bounce .6s .2s ease both;
}

@keyframes bounce {
    0% {
        transform: scale(.8);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.order-confirmed-title {

    font-size: 1.55rem;

    color: var(--charcoal);
    margin-bottom: 6px;
}

.order-confirmed-sub {
    font-size: .87rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.order-id-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--charcoal);
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: .85rem;

    letter-spacing: .5px;
    margin-bottom: 20px;
}

.order-id-chip span {
    color: #fff;
}

.order-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
}

.order-detail-table td {
    padding: 7px 10px;
    font-size: .82rem;
    border-bottom: 1px dashed var(--border);
}

.order-detail-table td:first-child {
    color: var(--muted);
    width: 38%;
}

.order-detail-table td:last-child {

    color: var(--charcoal);
}

.order-detail-table tr:last-child td {
    border-bottom: none;
}

.order-total-confirmed {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.order-total-confirmed .ot-label {
    font-size: .82rem;
    opacity: .85;
}

.order-total-confirmed .ot-val {

    font-size: 1.4rem;

}

.back-home-btn {
    width: 100%;
    background: var(--charcoal);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 0;
    font-size: .9rem;

    cursor: pointer;

    transition: background .2s;
}

.back-home-btn:hover {
    background: var(--saffron);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #fff;
}

/* Main flex container: logo left, right stacked */
.header-main {
    display: flex;
    align-items: stretch;
}


/* ── Right side ── */
.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ── Top bar (red) ── */
.header-top-bar {
    background: #3b080e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 50px;
}

.header-working-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: .85rem;
    overflow: hidden;
    letter-spacing: .03em;
}

.header-working-hours i {
    font-size: 1rem;
    opacity: .9;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: .85rem;

    letter-spacing: .03em;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.header-social a:hover {
    background: #fff;
    color: var(--orange);
    transform: translateY(-2px);
}

/* ── Bottom bar (dark) ── */
.header-bottom-bar {
    margin-top: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 30px; */
    height: 56px;
    border-radius: 0 0 0 0;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.header-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.header-menu li {
    position: relative;
}

.header-menu li a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 18px;
    color: #000;
    font-size: .9rem;

    text-decoration: none;
    letter-spacing: .02em;
    transition: color .25s ease;
    position: relative;
}

.header-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #1A1208;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

/* .header-menu li a:hover,
.header-menu li a.active {
    color: #123d21;
} */

.header-menu li a:hover::after,
.header-menu li a.active::after {
    transform: scaleX(1);
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: none;
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s ease;
    position: relative;
}

.header-action-btn:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.cart-action-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: .65rem;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Order Now Button */
.header-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;

    font-size: .82rem;

    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    margin-left: 8px;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(212, 82, 10, .4);
}

.header-order-btn:hover {
    background: #BF470A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 82, 10, .55);
    color: #fff;
}

.header-order-btn i {
    font-size: .75rem;
    transition: transform .25s ease;
}

.header-order-btn:hover i {
    transform: translateX(3px);
}

/* Hamburger — hidden on desktop, shown on mobile */
.header-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, .08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-left: 8px;
    transition: background .25s ease;
}

.header-hamburger:hover {
    background: rgba(255, 255, 255, .15);
}

.header-hamburger span {
    display: block;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all .3s ease;
}

.header-hamburger span:nth-child(2) {
    width: 70%;
}

/* Visibility helpers */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: inline-flex !important;
}

/* ── Mobile Drawer ── */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--ink);
    z-index: 1000;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.77, 0, .18, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-drawer-logo img {
    max-width: 80px;
    height: auto;
}

.mobile-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.mobile-drawer-close:hover {
    background: var(--orange);
}

/* Drawer Navigation */
.mobile-drawer-nav {
    padding: 10px 0;
    flex: 1;
}

.mobile-drawer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-drawer-nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, .8);

    font-size: .95rem;

    text-decoration: none;
    transition: all .2s ease;
    border-left: 3px solid transparent;
}

.mobile-drawer-nav ul li a:hover,
.mobile-drawer-nav ul li a.active {
    color: #fff;
    background: rgba(255, 255, 255, .05);
    border-left-color: var(--orange);
}

.mobile-drawer-nav ul li a i {
    font-size: 1.05rem;
    width: 22px;
    text-align: center;
    color: #fff;
}

/* Drawer Action Buttons */
.mobile-drawer-actions {
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;

    font-size: .88rem;

    text-decoration: none;
    transition: all .25s ease;
}

.mobile-drawer-btn.cart {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .15);
}

.mobile-drawer-btn.cart:hover {
    background: rgba(255, 255, 255, .15);
}

.mobile-drawer-btn.order {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 82, 10, .4);
}

.mobile-drawer-btn.order:hover {
    background: #BF470A;
}

/* Drawer Info (hours + social) */
.mobile-drawer-info {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-drawer-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: .82rem;
    margin-bottom: 14px;
}

.mobile-drawer-hours i {
    color: var(--orange-mid);
}

.mobile-drawer-social {
    display: flex;
    gap: 10px;
}

.mobile-drawer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .25s ease;
}

.mobile-drawer-social a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════
   RESPONSIVE — Tablet (≤991px)
═══════════════════════════════════ */
@media (max-width: 991px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }

    .header-hamburger {
        display: flex;
    }

    /* Stack logo on top */
    .header-main {
        flex-direction: column;
    }

    .header-logo {
        padding: 10px 20px;
        min-width: unset;
        justify-content: flex-start;
    }

    .header-logo::after {
        display: none;
    }

    .header-logo img {
        max-width: 90px;
    }

    /* Top bar adjustments */
    .header-top-bar {
        padding: 0 15px;
        height: 36px;
    }

    .header-working-hours {
        font-size: .75rem;
    }

    .header-social .follow-label {
        display: none;
    }

    /* Hide desktop nav, keep actions */
    .desktop-nav {
        display: none;
    }

    .header-bottom-bar {
        padding: 0 15px;
        height: 50px;
        margin-top: 0;
        justify-content: flex-end;
    }
}

/* ═══════════════════════════════════
   RESPONSIVE — Mobile (≤575px)
═══════════════════════════════════ */
@media (max-width: 575px) {

    .header-logo {
        padding: 10px 0px;
    }

    .header-logo img {
        max-width: 110px;
    }
}

/* ═══════════════════════════════════
   OUR STORY / WHY CHOOSE US
═══════════════════════════════════ */
.story-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.story-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 480px;
}

/* ── Left: Image ── */
.story-image-side {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.story-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.story-img-wrap:hover .story-img {
    transform: scale(1.03);
}

/* Play button */
.story-play-btn {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, .2);
    transition: all .3s ease;
    z-index: 2;
}

.story-play-btn i {
    font-size: 1.8rem;
    color: var(--orange);
    margin-left: 4px;
}

.story-play-btn:hover {
    background: var(--orange);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 82, 10, .45);
}

.story-play-btn:hover i {
    color: #fff;
}

/* Ripple animation on play button */
.story-play-btn::before,
.story-play-btn::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(212, 82, 10, .3);
    animation: storyRipple 2s ease-out infinite;
}

.story-play-btn::after {
    animation-delay: .6s;
}

@keyframes storyRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ── Right: Content ── */
.story-content-side {
    flex: 0 0 50%;
    max-width: 50%;
    background: linear-gradient(160deg, #5d0e0e 0%, #fdde9d 40%, #5d0e0e 100%);
    position: relative;
    overflow: hidden;
}

.story-content-inner {
    padding: 60px 50px;
    position: relative;
    z-index: 2;
}

/* Eyebrow */
.story-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: .78rem;

    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.story-eyebrow i {
    font-size: .9rem;
}

/* Heading */
.story-heading {

    font-size: 2.6rem;

    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

/* Description */
.story-desc {

    font-size: .92rem;
    color: #000 line-height: 1.7;
    margin-bottom: 30px;
    max-width: 420px;
}

/* Feature Cards */
.story-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px;
}

.story-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.story-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange) 0%, #BF470A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 82, 10, .35);
}

.story-feature-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.story-feature-text h4 {
    font-size: 1rem;

    margin: 0 0 4px;
}

.story-feature-text p {
    font-size: .82rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA Button */
.story-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;

    font-size: .85rem;

    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    transition: all .3s ease;
    box-shadow: 0 5px 18px rgba(212, 82, 10, .4);
}

.story-cta-btn:hover {
    background: #BF470A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 82, 10, .55);
    color: #fff;
}

.story-cta-btn i {
    font-size: .8rem;
    transition: transform .25s ease;
}

.story-cta-btn:hover i {
    transform: translateX(4px);
}

/* Decorative herb */
.story-decor-herb {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 150' fill='%232A6B4A' opacity='0.15'%3E%3Cpath d='M50 150 C50 100 20 80 10 40 C20 60 40 70 50 90 C60 70 80 60 90 40 C80 80 50 100 50 150Z'/%3E%3Cpath d='M50 120 C45 90 30 75 25 50 C35 65 45 70 50 85 C55 70 65 65 75 50 C70 75 55 90 50 120Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: .5;
    z-index: 1;
}

/* ── Story Section Responsive ── */
@media (max-width: 991px) {
    .story-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .story-image-side,
    .story-content-side {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .story-image-side {
        height: 350px;
    }

    .story-content-inner {
        padding: 40px 30px;
    }

    .story-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .story-image-side {
        height: 250px;
    }

    .story-play-btn {
        width: 56px;
        height: 56px;
    }

    .story-play-btn i {
        font-size: 1.4rem;
    }

    .story-content-inner {
        padding: 30px 20px;
    }

    .story-heading {
        font-size: 1.8rem;
    }

    .story-desc {
        font-size: .85rem;
    }

    .story-feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .story-feature-icon i {
        font-size: 1.1rem;
    }

    .story-cta-btn {
        padding: 12px 24px;
        font-size: .8rem;
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════
   PAGE LAYOUT
═══════════════════════════════════ */
.page-wrap {
    margin: 0 auto;
    padding: 48px 20px 80px;
}

.section-eyebrow {
    font-size: .7rem;

    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.section-title {

    font-size: 40px;

    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 6px;
}

.section-title em {
    color: var(--orange-mid);
    font-style: italic;
}

.section-sub {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════
   TOAST
═══════════════════════════════════ */
.toast-wrap {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
}

.toast-msg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--r-md);
    color: #fff;
    font-size: .9rem;

    box-shadow: var(--shadow-lg);
    animation: toastIn .32s ease, toastOut .32s ease 2.3s forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.toast-orange {
    background: var(--orange);
}

.toast-green {
    background: var(--green);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
    position: relative;
    overflow: hidden;
}

/* ── Orange Contact Bar ── */
.footer-contact-bar {
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.footer-contact-inner {
    background: linear-gradient(135deg, #E8681F 0%, #D4520A 100%);
    border-radius: 16px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(212, 82, 10, .35);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon i {
    font-size: 1.15rem;
    color: #fff;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-size: .72rem;

    color: rgba(255, 255, 255, .75);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.footer-contact-text strong {

    font-size: .92rem;

    color: #fff;
}

/* ── Main Footer ── */
.footer-main {
    background: linear-gradient(170deg, #000000 0%, #000000 100%);
    padding: 70px 0 40px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Footer Logo & About */
.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-about-text {

    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 280px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .85rem;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 82, 10, .4);
}

/* Footer Column Title */
.footer-col-title {

    font-size: 1.35rem;

    color: #fff;
    margin-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);

    font-size: .88rem;

    text-decoration: none;
    transition: all .25s ease;
}

.footer-links li a i {
    font-size: .65rem;
    color: #fff;
    transition: transform .25s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Footer Hours */
.footer-hours {
    margin-bottom: 22px;
}

.footer-hours p {

    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 6px;
}

.footer-hours p span {
    color: #fff font-style: italic;
}

/* Footer Newsletter */
.footer-newsletter-input {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color .25s ease;
}

.footer-newsletter-input:focus-within {
    border-color: var(--orange);
}

.footer-newsletter-input input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;

    font-size: .82rem;
    padding: 12px 18px;
    outline: none;
}

.footer-newsletter-input input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.footer-newsletter-input button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    flex-shrink: 0;
    transition: all .25s ease;
}

.footer-newsletter-input button:hover {
    background: #BF470A;
    transform: scale(1.05);
}

/* Privacy checkbox */
.footer-privacy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.footer-privacy-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--orange);
    cursor: pointer;
    flex-shrink: 0;
}

.footer-privacy-check span {

    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
}

.footer-privacy-check span a {
    color: rgba(255, 255, 255, .8);
    text-decoration: underline;
    transition: color .2s;
}

.footer-privacy-check span a:hover {
    color: var(--orange);
}

/* ── Bottom Bar ── */
.footer-bottom {
    background: #3b080e;
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {

    font-size: .8rem;
    color: #fff;
    margin: 0;
}

/* ── Footer Responsive ── */
@media (max-width: 991px) {
    .footer-contact-inner {
        flex-direction: column;
        padding: 24px 28px;
        gap: 18px;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-main {
        padding: 55px 0 35px;
    }
}

@media (max-width: 575px) {
    .footer-contact-bar {
        margin-top: -20px;
    }

    .footer-contact-inner {
        border-radius: 12px;
        padding: 20px 18px;
        gap: 14px;
    }

    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-contact-icon {
        width: 42px;
        height: 42px;
    }

    .footer-contact-text strong {
        font-size: .82rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-main {
        padding: 45px 0 30px;
    }

    .footer-about-text {
        max-width: 100%;
    }

    .footer-col-title {
        font-size: 1.2rem;
    }

    .footer-newsletter-input {
        border-radius: 25px;
    }

    .footer-newsletter-input input {
        padding: 10px 14px;
        font-size: .8rem;
    }

    .footer-newsletter-input button {
        width: 38px;
        height: 38px;
    }
}

/* ═══════════════════════════════════
   UTILITIES
═══════════════════════════════════ */
.hidden {
    display: none !important;
}

/* ── RIGHT PANEL — How to order ─ */
.right-panel {
    background: #fef2f3;
    padding: 35px 35px 35px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 64px;
    overflow-y: auto;
}

.right-panel::-webkit-scrollbar {
    width: 0;
}

.right-heading {
    font-size: 1.5rem;

    color: #000;
    margin-bottom: 6px;
    line-height: 1.2;
}

.right-heading em {
    color: var(--saffron);
    font-style: normal;
}

.right-sub {
    font-size: .82rem;
    color: #000;
    margin-bottom: 36px;
    line-height: 1.5;
}

/* ── Steps ─────────────────── */
.steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 18px;
    opacity: 0;
    transform: translateX(20px);
    animation: stepIn .5s ease forwards;
}

.step-item:nth-child(1) {
    animation-delay: .1s;
}

.step-item:nth-child(2) {
    animation-delay: .25s;
}

.step-item:nth-child(3) {
    animation-delay: .4s;
}

.step-item:nth-child(4) {
    animation-delay: .55s;
}

@keyframes stepIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-spine {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #fef2f3;
    border: 2px solid #3b080e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.step-num-inner {

    font-size: 1rem;

    color: #000;
    position: relative;
    z-index: 1;
    transition: color .3s;
}

.step-item:hover .step-num {
    background: var(--saffron);
    border-color: var(--saffron);
}

.step-item:hover .step-num-inner {
    color: #fff;
}

.step-item:hover .step-icon-anim {
    animation-play-state: running;
}

.step-connector {
    width: 1.5px;
    flex: 1;
    min-height: 24px;
    background: linear-gradient(to bottom, #3b080e, #3b080e);
    margin: 6px 0;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-content {
    padding-bottom: 28px;
    flex: 1;
}

.step-tag {
    display: inline-block;
    font-size: .65rem;

    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 7px;
}

.step-title {
    font-size: .98rem;

    margin-bottom: 5px;
    line-height: 1.3;
}

.step-desc {
    font-size: .8rem;
    line-height: 1.55;
}

/* ── Step visual cards ───────── */
.step-visual {
    margin-top: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c54a0a;
    max-width: 500px;
}

/* Calendar mini */
.mini-cal {
    background: rgba(255, 255, 255, .05);
    padding: 12px 14px;
}

.mini-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.mini-cal-month {
    font-size: .75rem;

    color: rgba(255, 255, 255, .7);
}

.mini-cal-nav {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .08);
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: .7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.mini-day-hdr {
    text-align: center;
    font-size: .55rem;

    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 2px 0;
}

.mini-day {
    text-align: center;
    font-size: .65rem;

    color: rgba(255, 255, 255, .35);
    padding: 4px 2px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .15s;
}

.mini-day.avail {
    color: rgba(255, 255, 255, .65);
}

.mini-day.sel {
    background: var(--saffron);
    color: #fff;

    box-shadow: 0 2px 8px rgba(232, 117, 26, .4);
    animation: calPop .3s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes calPop {
    from {
        transform: scale(.7);
    }

    to {
        transform: scale(1);
    }
}

.mini-day.past {
    color: rgba(255, 255, 255, .15);
    pointer-events: none;
}

.mini-day.today {
    border: 1px solid rgba(232, 117, 26, .5);
    color: var(--saffron-mid);
}

/* Slot pills mini */
.mini-slots {
    background: rgba(255, 255, 255, .05);
    padding: 12px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-slot {
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: .67rem;

    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.mini-slot.sel {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
    animation: slotPop .25s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes slotPop {
    from {
        transform: scale(.85);
    }

    to {
        transform: scale(1);
    }
}

.mini-slot:hover:not(.sel) {
    border-color: rgba(232, 117, 26, .4);
    color: rgba(255, 255, 255, .7);
}

/* Qty mini */
.mini-qty {
    background: #ff742b6b;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-qty-label {
    font-size: .75rem;
}

.mini-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: none;
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.mini-qty-btn:hover {
    background: var(--saffron);
}

.mini-qty-val {
    font-size: 1rem;

    min-width: 24px;
    text-align: center;
    transition: transform .15s;
}

.mini-qty-val.bump {
    animation: qtyBump .2s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes qtyBump {
    from {
        transform: scale(1.5);
    }

    to {
        transform: scale(1);
    }
}

.mini-qty-price {
    font-size: .75rem;

}

/* Addons mini */
.mini-addons {
    background: rgba(255, 255, 255, .05);
    padding: 10px 14px;
}

.mini-addon-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    cursor: pointer;
    transition: all .15s;
}

.mini-addon-row:last-child {
    border-bottom: none;
}

.mini-addon-row:hover .mini-addon-name {
    color: rgba(255, 255, 255, .8);
}

.mini-chk {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
    font-size: .6rem;
    color: #fff;
}

.mini-chk.on {
    background: var(--saffron);
    border-color: var(--saffron);
}

.mini-addon-name {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    flex: 1;
    transition: color .15s;
}

.mini-addon-price {
    font-size: .65rem;
    color: rgba(255, 255, 255, .25);
}

/* ── CTA bottom ──────────────── */
.right-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.right-cta p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 12px;
    text-align: center;
}

.cta-btn {
    width: 100%;
    background: var(--saffron);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 0;
    font-size: .9rem;

    cursor: pointer;

    transition: all .22s;
    letter-spacing: .3px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background .2s;
}

.cta-btn:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
}

.cta-btn:hover::before {
    background: rgba(255, 255, 255, .04);
}

/* ── Responsive ──────────────── */
@media (max-width: 900px) {
    .main-section {
        grid-template-columns: 1fr;
    }

    .right-panel {
        position: static;
        height: auto;
    }

    .left-panel {
        padding: 32px 24px;
    }

    .right-panel {
        padding: 36px 24px;
    }
}

@media (max-width: 600px) {
    .stats-row {
        gap: 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Page entry animation ──── */
.left-panel {
    animation: fadeUp .5s ease both;
}

.right-panel {
    animation: fadeUp .5s .1s ease both;
    border-radius: 20px;
    border: 1px solid #ecc89a;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* top bar */
.topbar {
    background: #fef7eb;

    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
}

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 30s linear infinite;
}

.topbar:hover .marquee {
    animation-play-state: paused;
}

.marquee span {
    display: inline-block;
    margin-right: 50px;
    font-size: 14px;
    color: #12100e;
}

@keyframes scrollText {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ── INTRO BAND ── */
.intro-band {
    background: #3c080e;
    overflow: hidden;
    width: 100%;
}

.ticker {
    display: flex;
    gap: 4rem;
    animation: scrollText 40s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.ticker-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.ticker-sep {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;

    animation: starBlink 1.5s infinite ease-in-out;
}

/* ✨ Star blink animation */
@keyframes starBlink {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(0.8);
    }
}

.ticker-sep:nth-child(odd) {
    animation-delay: 0.7s;
}



/* ─── STORY PAGE REDESIGN ─── */
.story-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-position: center;
    background-attachment: fixed;
}

.story-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 16, 14, 0.4), rgba(18, 16, 14, 1.7));
    z-index: 1;
}

.story-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.story-hero-eyebrow {

    font-size: 0.9rem;

    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 15px;
    display: block;
    animation: fadeInDown 0.8s ease forwards;
}

.story-hero-title {

    font-size: 58px;
    line-height: 1.1;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.story-hero-title span {
    color: #c69f3b;
}

/* Sections */
.story-section {
    /* padding: 80px 0; */
}

.story-section.light {
    /* background: var(--surface); */
}



/* Feature Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: var(--saffron);
    box-shadow: var(--shadow-md);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.experience-card h3 {
    font-size: 1.25rem;

    margin-bottom: 12px;
}

.experience-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Legacy Content */
.legacy-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 60px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.legacy-card::before {
    content: '\"';
    position: absolute;
    top: -20px;
    left: 40px;

    font-size: 15rem;
    color: var(--saffron-light);
    opacity: 0.5;
    z-index: 0;
}

.legacy-inner {
    position: relative;
    z-index: 1;
}

.legacy-heading {
    margin-bottom: 30px;
}

.legacy-heading h2 {
    font-size: 42px;
}

.legacy-heading h2 span {
    color: var(--saffron);
}

.legacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.legacy-text p:last-child {
    margin-bottom: 0;
}

/* Closing */
.story-closing {
    padding: 100px 0;
    text-align: center;
}

.closing-content h2 {

    font-size: 2.5rem;

    margin-bottom: 20px;
}

.closing-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .legacy-card {
        padding: 40px 20px;
    }

    .legacy-heading h2 {
        font-size: 1.8rem;
    }

    .story-section {
        padding: 60px 0;
    }
}

.order-btn {
    background: #5d0e0e;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;

    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    box-shadow: 0 0 0 10px rgba(255, 122, 24, 0.7);
    animation: outerGlow 1.5s infinite;
}

/* Animation */
@keyframes outerGlow {
    0% {
        box-shadow: 0 0 0 10px rgba(255, 122, 24, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 122, 24, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 24, 0);
    }
}

/* Floating Button Position */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 999;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.7);
    animation: whatsappBlink 1.5s infinite;
}

/* Icon */
.whatsapp-float i {
    font-size: 35px;
    color: #25D366;
}

/* Glow + Blink Animation */
@keyframes whatsappBlink {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* ─── Contact Page Styles ────────────────── */
.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
    height: 100%;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail-item .icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--saffron-light);
    color: var(--saffron);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-detail-item .text-wrap h4 {
    font-size: 1.1rem;

    margin-bottom: 5px;
    color: var(--charcoal);
}

.contact-detail-item .text-wrap p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-detail-item .text-wrap a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-detail-item .text-wrap a:hover {
    color: var(--saffron);
    border-bottom: 1px solid currentColor;
}

.social-connect h4 {
    font-size: 1.1rem;

    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--surface-2);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--saffron);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
}

.custom-field label {
    font-size: 0.9rem;

    color: var(--charcoal);
    margin-bottom: 8px;
    display: block;
}

.custom-field .form-control {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all 0.2s;
}

.custom-field .form-control:focus {
    background: #fff;
    border-color: var(--saffron);
    box-shadow: 0 0 0 4px rgba(232, 117, 26, 0.1);
    outline: none;
}

.contact-submit-btn {
    background: var(--charcoal);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;

    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    background: var(--saffron);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 117, 26, 0.2);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* --- Our Story Page Enhancements ---------- */
.story-section {
    position: relative;
}

/* .story-section.cream {
    background: var(--cream);
} */

.story-section.light {
    background: #fff;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--saffron);
}

.experience-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--saffron-light);
    color: var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.experience-card:hover .experience-icon-wrap {
    background: var(--saffron);
    color: #fff;
    transform: rotateY(180deg);
}

.experience-card h3 {


    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.experience-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.legacy-card {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
}

.legacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--saffron);
}

.legacy-heading h2 {
    font-size: 42px;
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.legacy-heading h2 span {
    color: var(--saffron);
}

.legacy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.legacy-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid var(--surface-2);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s;
}

.legacy-card:hover .legacy-image-wrap {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .story-section {
        padding: 60px 0;
    }

    .legacy-card {
        padding: 40px 20px;
    }

    .legacy-heading h2 {
        font-size: 2.2rem;
    }
}

/* Call Button Header CSS */
.pulse-button span {
    position: absolute;
    right: 15px;
    top: 6px;
    color: #333;
    background: #ffffff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    float: right;
}

.pulse-button span:before {
    font-family: FontAwesome;
    content: "\f095";
    width: 15px;
    height: 15px;
    display: block;
    margin: 5px 7px;
    -webkit-animation: wiggle 2s infinite;
    -moz-animation: wiggle 2s infinite;
    animation: wiggle 2s infinite;
}

.pulse-button i {
    font-size: 15px;
    margin: 0 auto;
    opacity: 0.5;

}

.pulse-button {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    width: 240px;
    padding: 10px 15px 6px 30px;
    line-height: 25px;
    text-align: left;
    height: 50px;
    border: none;
    box-shadow: 0 0 0 0 rgba(255, 232, 160, 0.7);
    border-radius: 40px;
    background-color: #123d21;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse-button:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 232, 160, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 232, 160, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 232, 160, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 232, 160, 0);
    }
}


/* safari and chrome */
@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: rotate(15deg);
    }

    50% {
        -webkit-transform: rotate(-15deg);
    }

    100% {
        -webkit-transform: rotate(15deg);
    }
}

/* firefox */
@-moz-keyframes wiggle {
    0% {
        -moz-transform: rotate(15deg);
    }

    50% {
        -moz-transform: rotate(-15deg);
    }

    100% {
        -moz-transform: rotate(15deg);
    }
}

/* anyone brave enough to implement the ideal method */
@keyframes wiggle {
    0% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(15deg);
    }
}

.heart-beat {
    display: inline-block;
    animation: heartbeat 1.2s infinite ease-in-out;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.1);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1);
    }
}

@media (max-width: 380px) {
    .order-btn {
        padding: 12px 25px;
    }

    .phone-btn {
        padding: 10px 12px;
    }

    .header-actions {
        gap: 5px;
    }

    .story-hero-title {
        font-size: 34px;
    }

    .story-hero {
        height: 28vh;
    }
}

@media (max-width: 650px) {
    .story-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 550px) {
    .story-hero-title {
        font-size: 24px;
    }
}

@media (max-width: 450px) {
    .story-hero-title {
        font-size: 25px;
    }

    .day-time {
        font-size: 15px !important;
    }
}

/* ─── About Us Section ────────────────── */
.about-section {
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.text-saffron {
    color: var(--saffron);
}

.text-gold {
    color: var(--gold);
}

.bg-light-saffron {
    background-color: var(--saffron-light);
}

.about-image-wrapper {
    position: relative;
    padding: 15px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--saffron);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 4px solid #fff;
    z-index: 2;
    animation: float_badge 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
}

.experience-badge .text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

@keyframes float_badge {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.italic {
    font-style: italic;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-pill {
    background: #fff;
    border: 1.5px solid var(--border);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.feature-pill i {
    color: var(--gold);
}

.signature-dish {
    border-left: 5px solid var(--gold);
    background: #fff !important;
    box-shadow: var(--shadow-sm);
}

/* ─── Premium About Section ────────────────── */
.premium-about-section {
    background-color: #FDF8F3;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    color: #3B080E;
}

.premium-about-section .about-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.premium-about-section .crown-icon {
    display: block;
    margin: 0 auto 10px;
    width: 60px;
    height: auto;
}

.premium-about-section .pre-title {
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.premium-about-section .pre-title::before,
.premium-about-section .pre-title::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #3c080e;
}

.premium-about-section .main-title {
    line-height: 1.1;
    color: #3B080E;
}


@media (max-width: 360px) {
    .premium-about-section .pre-title {
        font-size: 13px;
    }

    .premium-about-section .tagline-box .tagline {
        font-size: 10px;
    }
}

@media (max-width: 460px) {
    .premium-about-section .pre-title h2 {
        font-size: 18px;
    }

    .premium-about-section .tagline-box .tagline {
        font-size: 17px;
    }

    .ticker {
        animation: scrollText 8s linear infinite;
    }

    #ordernow {
        scroll-margin-top: 180px;
    }
}

@media (max-width: 768px) {
    .premium-about-section .main-title {
        font-size: 20px;
    }
}

.premium-about-section .decorative-divider {
    margin: 10px auto;
    width: 150px;
}

.premium-about-section .about-content {
    font-size: 16px;
    color: #4A3E31;
    margin: 0 auto;
}

.premium-about-section .about-content p {
    margin-bottom: 30px;
}

.premium-about-section .highlight {
    color: #3c080e;
    font-weight: 700;
}

.premium-about-section .tagline-box {
    padding: 10px;
    border-top: 1.5px solid #E5D5C5;
    border-bottom: 1.5px solid #E5D5C5;
    position: relative;
}

.premium-about-section .tagline-box .tagline {
    font-size: 20px;
    color: #3B080E;
}

/* Chef Section */
.premium-about-section .chef-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-about-section .chef-portrait-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
}

.premium-about-section .chef-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #E5D5C5;
    background: #fff;
}

.premium-about-section .whatsapp-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #25D366;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

.premium-about-section .chef-name {
    margin-bottom: 5px;
}

.premium-about-section .chef-exp {
    font-family: 'Inter', sans-serif;
    color: #3c080e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.premium-about-section .chef-bio {
    font-size: 1.1rem;
    color: #7A6A55;
}