/* ════════════════════════════════════════════════════════
   The Curry Culture — Custom Styles
   Tailwind handles utility classes; this file adds
   animations, Three.js overlay, modal transitions,
   and premium visual effects.
   ════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
label {
    font-family: 'Outfit', sans-serif !important;
}

body {
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c27a1e, #8a4c10);
    border-radius: 4px;
}

/* ── Three.js Canvas ─────────────────────────────────── */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

/* ── GSAP Animation Classes ──────────────────────────── */
.gsap-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotateX(-15deg);
}

.gsap-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.gsap-scale-in {
    opacity: 0;
    transform: scale(0.85);
}

/* ── Modal ───────────────────────────────────────────── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* ── Glowing Border Effect ───────────────────────────── */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, #c27a1e, #e8b76d, #c27a1e);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glow-border:hover::before {
    opacity: 1;
}

/* ── Glassmorphism Card ──────────────────────────────── */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(194, 122, 30, 0.3);
    box-shadow: 0 8px 32px rgba(194, 122, 30, 0.1);
    transform: translateY(-2px);
}

/* ── Menu Item Card ──────────────────────────────────── */
.menu-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(194, 122, 30, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-card:hover::after {
    opacity: 1;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(194, 122, 30, 0.08);
}

/* ── Diet Badge ──────────────────────────────────────── */
.badge-veg {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.badge-nonveg {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* ── Order Type Toggle ───────────────────────────────── */
.order-toggle {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    padding: 4px;
}

.order-toggle-btn {
    position: relative;
    z-index: 1;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #9ca3af;
    transition: color 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
}

.order-toggle-btn.active {
    color: white;
}

.order-toggle-slider {
    position: absolute;
    top: 4px;
    height: calc(100% - 8px);
    border-radius: 9999px;
    background: linear-gradient(135deg, #c27a1e, #a86214);
    box-shadow: 0 4px 16px rgba(194, 122, 30, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Floating particles (CSS fallback) ───────────────── */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(5deg);
    }

    66% {
        transform: translateY(10px) rotate(-3deg);
    }
}

.float-particle {
    animation: float 6s ease-in-out infinite;
}

/* ── Pulse glow ──────────────────────────────────────── */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(194, 122, 30, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(194, 122, 30, 0.4);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ── Shimmer loading ─────────────────────────────────── */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ── Extras Checkbox ─────────────────────────────────── */
.extra-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.extra-checkbox:checked {
    background: linear-gradient(135deg, #c27a1e, #a86214);
    border-color: #c27a1e;
}

.extra-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* ── Quantity Stepper ────────────────────────────────── */
.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(253, 3, 3, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-brand-500);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: rgba(194, 122, 30, 0.2);
    border-color: rgba(194, 122, 30, 0.4);
}

/* ── Responsive Helpers ──────────────────────────────── */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .modal-content {
        width: 95% !important;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* ── Admin Panel Styles ──────────────────────────────── */
.admin-sidebar {
    background: linear-gradient(180deg, #1a1a2e, #0f0f1a);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: #9ca3af;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(194, 122, 30, 0.1);
    color: #e8b76d;
}

/* ── Toast Notification ──────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(194, 122, 30, 0.3);
    backdrop-filter: blur(20px);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 200;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ── Light-mode menu card fix ────────────────────────── */
.menu-card {
    background: #fff;
    border: 1px solid #f0e8e0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 0 0 30px rgba(194, 122, 30, 0.08);
}

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid #f0e8e0;
}

.faq-item:first-child {
    border-top: 1px solid #f0e8e0;
}

.faq-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #2D1B0E;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-btn:hover {
    color: #E85D2F;
}

.faq-btn.active {
    color: #E85D2F;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5ede6;
    color: #E85D2F;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s;
}

.faq-btn.active .faq-icon {
    transform: rotate(45deg);
    background: #E85D2F;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #7c5c3e;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0;
}

.faq-answer.open {
    max-height: 400px;
    padding-bottom: 1.25rem;
}

/* simple fix for menu option model to open */
.modal-hidden {
    display: none;
}

/* ── Catering Packages Redesign ──────────────────────── */
.catering-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.catering-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.catering-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catering-card-image-wrapper {
    width: 160px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.catering-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catering-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.catering-card-desc {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 12px;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.catering-card-meta {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: auto;
}

.catering-card-price-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catering-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
}

.catering-card-gst {
    font-size: 0.75rem;
    color: #aaa;
}

.catering-card-wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.catering-card-wishlist:hover {
    color: #ff4d4f;
}

.catering-add-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #7ca82b;
    color: white;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 4px 12px rgba(124, 168, 43, 0.3);
    z-index: 10;
}

.catering-add-btn:hover {
    background: #6a9124;
}

/* Modal Redesign */
.cus-modal-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
}

.cus-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cus-modal-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cus-modal-price-gst {
    font-size: 0.75rem;
    color: #aaa;
    font-weight: normal;
}

.presentation-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.presentation-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.presentation-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #444;
}

.custom-qty-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.custom-qty-btn {
    width: 32px;
    height: 32px;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #7ca82b;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-qty-btn:hover {
    background: #f8f8f8;
}

.custom-qty-input {
    width: 40px;
    height: 32px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #333;
}

.custom-qty-input::-webkit-inner-spin-button,
.custom-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn-green {
    background: #7ca82b;
    color: white;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.add-to-cart-btn-green:hover:not(:disabled) {
    background: #6a9124;
}

.add-to-cart-btn-green:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Radio/Checkbox Overrides */
.cus-radio {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin: 0;
    position: relative;
    cursor: pointer;
    background: #fff;
}

.cus-radio:checked {
    border-color: #7ca82b;
}

.cus-radio:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: #7ca82b;
    border-radius: 50%;
}

/* -- New Package UI Styles (V2) ------------------------ */
.package-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D3748;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.package-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #d4af37;
}

.pkg-card {
    background: #f7f7f7;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.pkg-card-header {
    padding: 2.5rem 1rem 1.5rem;
}

.pkg-card-title {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pkg-card-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.pkg-card-currency {
    font-size: 1rem;
    margin-top: 0.25rem;
    margin-right: 0.2rem;
}

.pkg-card-price {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
}

.pkg-card-plus {
    font-size: 2rem;
    line-height: 1;
}

.pkg-card-perpax {
    font-size: 0.75rem;
    color: #718096;
}

.pkg-card-minpax {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 1.5rem;
}

.pkg-card-rules {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-card-rule-item {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #718096;
}

.pkg-card-footer {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #718096;
}

.pkg-card-action {
    padding: 1.5rem;
}

.pkg-btn-customise {
    background: #e2e8f0;
    color: #4a5568;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.pkg-btn-customise:hover {
    background: #cbd5e0;
    color: #2d3748;
}

/* Customise Menu Wizard Modal Styles */
.wizard-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.wizard-modal-overlay.hidden {
    display: none !important;
}

.wizard-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    max-height: 850px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(1);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.wizard-stepper {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.wizard-stepper-inner {
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

/* Stepper Line */
.wizard-stepper-inner::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    width: 100px;
    text-align: center;
}

.wizard-step-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wizard-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    border: 4px solid #f8fafc;
    transition: all 0.3s ease;
}

.wizard-step-icon svg {
    width: 24px;
    height: 24px;
}

.wizard-step.active .wizard-step-label {
    color: #f97316;
}

.wizard-step.active .wizard-step-icon {
    background: #f97316;
    color: white;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.wizard-body {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.wizard-main {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem 10% 4rem;
    background: #ffffff;
}

.wizard-sidebar {
    width: 320px;
    background: #f8fafc;
    padding: 2rem 2rem 0;
    /* no bottom padding — sticky button handles it */
    display: flex;
    flex-direction: column;
    border-left: 1px solid #f1f5f9;
    overflow-y: auto;
    /* sidebar itself scrolls if needed */
}

/* Order list scrolls, button stays pinned */
#sidebar-order-list {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    max-height: 120px;
    /* cap it so boxes+totals+button always show */
    margin-bottom: 0.5rem;
}

/* Wizard Form Elements */
.wizard-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.wizard-cat-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 2rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.wizard-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.wizard-option:hover {
    background: #f8fafc;
}

.wizard-option input[type="radio"],
.wizard-option input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: #f97316;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.wizard-option label {
    font-size: 0.95rem;
    color: #475569;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

/* Sidebar Order Elements */
.wizard-summary-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.wizard-summary-cat {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    margin-top: 1.25rem;
}

.wizard-summary-item {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.25rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.wizard-pax-box {
    background: #ffffff;
    color: #475569;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.wizard-price-box {
    background: #ffffff;
    color: #475569;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.wizard-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    /* always fully visible */
}

.wizard-pax-ctrl {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.wizard-pax-btn {
    border: none;
    background: none;
    font-size: 1.25rem;
    cursor: pointer;
    font-weight: 700;
    color: #94a3b8;
    transition: color 0.2s;
}

.wizard-pax-btn:hover {
    color: #f97316;
}

.wizard-pax-input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 700;
    background: transparent;
    color: #334155;
}

.wizard-totals {
    font-size: 0.9rem;
    color: #64748b;
    flex-shrink: 0;
    /* always fully visible */
}

.wizard-totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.wizard-total-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f97316;
}

.wizard-btn-continue {
    background: #f97316;
    color: white;
    border: none;
    padding: 1rem;
    width: calc(100% + 4rem);
    /* bleed over sidebar padding */
    margin-left: -2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: auto;
    border-radius: 0 0 16px 0;
    /* match modal bottom-right radius */
    transition: all 0.2s;
    box-shadow: 0 -4px 12px rgba(249, 115, 22, 0.15);
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.wizard-btn-continue:hover:not(:disabled) {
    background: #ea580c;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
    transform: translateY(-1px);
}

.wizard-btn-continue:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

/* --- Mobile Responsive Fixes --- */
@media (max-width: 768px) {
    .wizard-modal-overlay {
        padding: 0.5rem;
    }

    .wizard-modal-content {
        height: 98vh;
        border-radius: 8px;
    }

    .wizard-body {
        flex-direction: column;
        overflow-y: auto;
    }

    .wizard-main {
        overflow-y: visible;
        /* Let the body handle scrolling on mobile */
        padding: 1.5rem 1rem 2rem;
    }

    .wizard-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding: 1.5rem 1rem;
    }

    /* Fix Stepper squishing */
    .wizard-stepper {
        padding: 1rem 0.5rem;
    }

    .wizard-step-icon {
        width: 36px;
        height: 36px;
        border-width: 3px;
    }

    .wizard-step-icon svg {
        width: 18px;
        height: 18px;
    }

    .wizard-step-label {
        font-size: 0.6rem;
        letter-spacing: 0;
    }

    .wizard-stepper-inner::before {
        top: 25px;
        /* Adjust line to match smaller icon */
    }

    .wizard-box-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════ PAGE / LEGAL CONTENT STYLES ════════════════ */
.page-card {
    background-color: rgba(255, 255, 255, 0.95);
    color: #000000 !important;
}

.page-prose-content {
    color: #111827 !important;
}

.page-prose-content h1,
.page-prose-content h2,
.page-prose-content h3,
.page-prose-content h4,
.page-prose-content strong,
.page-prose-content b {
    color: #000000 !important;
    font-weight: 700 !important;
}

.page-prose-content p,
.page-prose-content li,
.page-prose-content span {
    color: #1f2937 !important;
    font-size: 1rem;
    line-height: 1.75;
}

.page-prose-content a {
    color: #E85D2F !important;
    text-decoration: underline;
}

/* ════════════════ MENU & BENTO MODAL STYLES ════════════════ */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#package-modal {
    z-index: 999999 !important;
}

.bento-modal-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    max-height: 800px;
}

.bento-modal-left {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    position: relative;
}

.bento-modal-right {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #000000 !important;
}

.bento-select-row {
    display: flex;
    flex-direction: column;
    border: 1px solid #d1d5db;
}

.bento-select-label {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border-bottom: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    color: #000000 !important;
    font-weight: 700;
}

.bento-select-input {
    width: 100%;
    background-color: #fff;
}

#modal-package-name {
    color: #000000 !important;
    font-weight: 800 !important;
}

#modal-package-description,
#modal-package-description li,
#modal-package-description span {
    color: #000000 !important;
    font-weight: 600 !important;
}

#package-modal p,
#package-modal span:not(.text-white),
#package-modal li,
#package-modal label {
    color: #000000;
}

#package-modal .bento-select {
    color: #000000 !important;
    font-weight: 700 !important;
}

.cat-btn {
    color: #000000 !important;
    font-weight: 700;
}

.cat-btn:hover {
    background-color: #f3f4f6;
    color: #000000 !important;
}

.cat-btn.active {
    background-color: #000000 !important;
    color: #ffffff !important;
    font-weight: 700;
}

.diet-btn {
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #000000 !important;
    font-weight: 700;
}

.diet-btn:hover {
    background-color: #f3f4f6;
}

.diet-btn.active {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

@media (min-width: 768px) {
    .bento-modal-wrapper {
        flex-direction: row;
        height: 600px;
    }

    .bento-modal-left {
        width: 40%;
        height: 100%;
    }

    .bento-modal-right {
        width: 60%;
        height: 100%;
    }

    .bento-select-row {
        flex-direction: row;
    }

    .bento-select-label {
        width: 35%;
        border-bottom: none;
        border-right: 1px solid #d1d5db;
    }

    .bento-select-input {
        width: 65%;
    }
}

/* ════════════════ GLOBAL / ADMIN HELPERS ════════════════ */
[x-cloak] {
    display: none !important;
}

.grid-cols-25 {
    grid-template-columns: repeat(25, minmax(0, 1fr));
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

/* ════════════════ LEGAL / STATIC PAGES ════════════════ */
.legal-page-container {
    width: 100%;
    min-height: calc(100vh - 80px);
    padding-top: 112px;
    padding-bottom: 72px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .legal-page-container {
        padding-top: 132px;
        padding-bottom: 88px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {
    .legal-page-container {
        padding-top: 144px;
        padding-bottom: 104px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

.legal-page-card {
    width: 100%;
    max-width: 860px;
    margin-left: auto !important;
    margin-right: auto !important;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
    padding: 24px 20px;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .legal-page-card {
        padding: 36px 32px;
        border-radius: 24px;
    }
}

@media (min-width: 1024px) {
    .legal-page-card {
        padding: 48px 48px;
        border-radius: 28px;
    }
}

.legal-prose-content {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.75;
    word-break: break-word;
}

@media (min-width: 640px) {
    .legal-prose-content {
        font-size: 16px;
    }
}

.legal-prose-content h2,
.legal-prose-content h3 {
    color: #111827;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.legal-prose-content h2 {
    font-size: 1.35rem;
}

.legal-prose-content h3 {
    font-size: 1.15rem;
}

.legal-prose-content p {
    margin-bottom: 1.15rem;
    color: #374151;
}

.legal-prose-content p.lead {
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.legal-prose-content strong {
    color: #111827;
    font-weight: 700;
}

.legal-prose-content ul,
.legal-prose-content ol {
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.legal-prose-content li {
    margin-bottom: 0.4rem;
    color: #374151;
}

/* ════════════════════════════════════════════════════════
   Festive Promotional Campaign Side Trigger & Modal
   ════════════════════════════════════════════════════════ */
.promo-side-badge {
    background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #92400e 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(254, 240, 138, 0.7) !important;
    border-right: none !important;
    box-shadow: -4px 6px 25px rgba(180, 83, 9, 0.45) !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.promo-side-badge:hover {
    transform: translateX(-6px) scale(1.02) !important;
    box-shadow: -6px 8px 30px rgba(180, 83, 9, 0.65) !important;
}

.promo-whatsapp-btn {
    background-color: #25D366 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4) !important;
}

.promo-whatsapp-btn:hover {
    background-color: #20bd5a !important;
}

.promo-inquiry-toggle-btn {
    background-color: #fffbeb !important;
    color: #92400e !important;
    border: 1.5px solid #fcd34d !important;
}

.promo-inquiry-toggle-btn:hover {
    background-color: #fef3c7 !important;
}

/* ════════════════════════════════════════════════════════
   The Curry Culture — Royal Burgundy Header & Footer (#41010F)
   ════════════════════════════════════════════════════════ */

/* Header & Nav */
#main-nav {
    background-color: #41010F !important;
    border-bottom: 1px solid #5e0c1b !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.45) !important;
}

#main-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500 !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
}

#main-nav .nav-link:hover {
    color: #f59e0b !important;
}

#main-nav .nav-link svg {
    color: #f59e0b !important;
    transition: transform 0.2s ease !important;
}

#main-nav .nav-link:hover svg {
    transform: scale(1.15) !important;
}

/* Nav Search Input */
#nav-search {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

#nav-search::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

#nav-search:focus {
    background-color: #ffffff !important;
    border-color: #f59e0b !important;
    color: #1a1a1a !important;
}

#nav-search:focus::placeholder {
    color: #9ca3af !important;
}

#search-wrapper svg {
    color: rgba(255, 255, 255, 0.7) !important;
}

#nav-search:focus + svg {
    color: #9ca3af !important;
}

/* Order Now Nav Button */
#nav-order-btn,
#nav-order-btn-mobile {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35) !important;
    border: none !important;
}

#nav-order-btn:hover,
#nav-order-btn-mobile:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5) !important;
    transform: translateY(-1px) !important;
}

/* Cart Badge */
#cart-badge,
#cart-badge-mobile {
    background-color: #f59e0b !important;
    color: #ffffff !important;
    font-weight: 800 !important;
}

/* Mobile Drawer */
#mobile-drawer {
    background-color: #41010F !important;
    border-right: 1px solid #5e0c1b !important;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.65) !important;
}

#mobile-drawer a {
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

#mobile-drawer a:hover {
    color: #f59e0b !important;
}

#mobile-drawer svg {
    color: #f59e0b !important;
}

#close-drawer-btn {
    color: rgba(255, 255, 255, 0.7) !important;
}

#close-drawer-btn:hover {
    color: #ffffff !important;
}

/* Footer Styling */
footer,
.brand-footer {
    background-color: #41010F !important;
    border-top: 1px solid #5e0c1b !important;
    color: #ffffff !important;
}

footer h4 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

footer p {
    color: #fce7eb !important;
}

footer ul li a {
    color: #fce7eb !important;
    transition: all 0.2s ease !important;
}

footer ul li a:hover {
    color: #f59e0b !important;
    padding-left: 4px !important;
}

footer ul li span {
    color: #fce7eb !important;
}

footer .footer-badge {
    background-color: #f59e0b !important;
}

footer .footer-gold-text {
    color: #f59e0b !important;
    font-weight: 600 !important;
}

footer .footer-icon-pill {
    background-color: rgba(255, 255, 255, 0.12) !important;
    color: #f59e0b !important;
}

footer .footer-social-btn {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

footer .footer-social-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05) !important;
}

footer .footer-copyright {
    color: #f5b8c2 !important;
}

footer .footer-credit a {
    color: #f59e0b !important;
    font-weight: 600 !important;
}

footer .footer-credit a:hover {
    color: #fbbf24 !important;
}