
        :root {
            --cream: #fdf8f2;
            --warm-white: #fffcf8;
            --ink: #1a1410;
            --ink-muted: #6b5f55;
            --ink-light: #b5a99e;
            --rust: #c94a1f;
            --rust-light: #f5d5c8;
            --rust-pale: #fdf0eb;
            --amber: #d4870a;
            --amber-light: #fef3d0;
            --teal: #1a6b5c;
            --teal-light: #d0eee8;
            --blue: #1d4e8f;
            --blue-light: #dce8f7;
            --border: #e8ddd4;
            --border-dark: #cfc4b8;
            --shadow-sm: 0 1px 3px rgba(26, 20, 16, 0.06), 0 2px 8px rgba(26, 20, 16, 0.04);
            --shadow-md: 0 4px 16px rgba(26, 20, 16, 0.08), 0 1px 4px rgba(26, 20, 16, 0.04);
            --shadow-lg: 0 12px 40px rgba(26, 20, 16, 0.12), 0 4px 12px rgba(26, 20, 16, 0.06);
            --r-sm: 8px;
            --r-md: 14px;
            --r-lg: 22px;
            --r-xl: 32px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background: var(--cream);
            color: var(--ink);
            font-family: 'DM Sans', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ── LOADER ── */
        #loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: var(--cream);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        #loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* Synced Premium Branded Logo */
        .logo-container {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            text-decoration: none;
            transition: transform 0.2s ease;
        }

        .logo-container:hover {
            transform: translateY(-1px);
        }

        .logo-badge {
            background: linear-gradient(135deg, var(--rust), #e05e32);
            color: #fff;
            font-size: 14px;
            font-weight: 900;
            padding: 4px 8px;
            border-radius: 7px;
            letter-spacing: 0.5px;
            box-shadow: 0 3px 8px rgba(201, 74, 31, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            line-height: 1;
        }

        .logo-text {
            font-size: 18px;
            font-weight: 900;
            color: var(--ink);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .logo-container.loader-logo-style {
            transform: scale(1.35);
            margin-bottom: 15px;
            animation: pulseLogo 1.5s infinite alternate;
        }

        @keyframes pulseLogo {
            0% {
                transform: scale(1.3);
                opacity: 0.9;
            }

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

        .loader-bar {
            width: 120px;
            height: 2px;
            background: var(--border);
            border-radius: 2px;
            overflow: hidden;
        }

        .loader-fill {
            height: 100%;
            width: 0;
            background: var(--rust);
            border-radius: 2px;
            animation: loadFill 1.2s ease forwards;
        }

        @keyframes loadFill {
            to {
                width: 100%;
            }
        }

        /* ── NAVBAR ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0 clamp(16px, 4vw, 48px);
            background: rgba(253, 248, 242, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s;
        }

        nav.scrolled {
            box-shadow: var(--shadow-sm);
        }

        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 6px;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-muted);
            padding: 7px 14px;
            border-radius: var(--r-sm);
            transition: color 0.2s, background 0.2s;
        }

        .nav-link:hover {
            color: var(--ink);
            background: var(--border);
        }

        .btn-login {
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            color: var(--ink);
            padding: 8px 20px;
            border-radius: var(--r-sm);
            border: 1.5px solid var(--border-dark);
            background: transparent;
            transition: all 0.2s;
        }

        .btn-login:hover {
            border-color: var(--ink);
            background: var(--ink);
            color: white;
        }

        .btn-register {
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            color: white;
            padding: 8px 20px;
            border-radius: var(--r-sm);
            background: var(--rust);
            border: 1.5px solid var(--rust);
            transition: all 0.2s;
        }

        .btn-register:hover {
            background: #b03d14;
            border-color: #b03d14;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(201, 74, 31, 0.3);
        }

        /* ── USER AVATAR / PROFILE MENU ── */
        .nav-profile {
            position: relative;
        }

        .nav-avatar {
            display: flex;
            align-items: center;
            gap: 9px;
            cursor: pointer;
            padding: 5px 12px 5px 5px;
            border-radius: 100px;
            border: 1.5px solid var(--border);
            background: white;
            transition: border-color 0.2s, box-shadow 0.2s;
            text-decoration: none;
        }

        .nav-avatar:hover {
            border-color: var(--rust);
            box-shadow: 0 2px 10px rgba(201, 74, 31, 0.12);
        }

        .avatar-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--rust) 0%, #a83a15 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 13px;
            font-weight: 700;
            flex-shrink: 0;
            letter-spacing: 0;
        }

        .avatar-name {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--ink);
            max-width: 110px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .avatar-chevron {
            width: 14px;
            height: 14px;
            color: var(--ink-muted);
            transition: transform 0.2s;
            flex-shrink: 0;
        }

        .nav-profile.open .avatar-chevron {
            transform: rotate(180deg);
        }

        .profile-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            box-shadow: var(--shadow-lg);
            min-width: 200px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
            z-index: 200;
        }

        .nav-profile.open .profile-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .pd-header {
            padding: 10px 12px 8px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 6px;
        }

        .pd-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pd-email {
            font-size: 12px;
            color: var(--ink-light);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-top: 1px;
        }

        .pd-item {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px 12px;
            border-radius: var(--r-sm);
            text-decoration: none;
            font-size: 14px;
            color: var(--ink-muted);
            font-weight: 500;
            transition: background 0.15s, color 0.15s;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }

        .pd-item:hover {
            background: var(--cream);
            color: var(--ink);
        }

        .pd-item svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
        }

        .pd-divider {
            border: none;
            border-top: 1px solid var(--border);
            margin: 6px 0;
        }

        .pd-item-danger {
            color: var(--rust);
        }

        .pd-item-danger:hover {
            background: var(--rust-pale);
            color: var(--rust);
        }

        /* mobile profile section */
        .mobile-profile-info {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .mobile-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--rust) 0%, #a83a15 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .mobile-user-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
        }

        .mobile-user-email {
            font-size: 12px;
            color: var(--ink-light);
        }

        /* hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            z-index: 99;
            background: var(--warm-white);
            border-bottom: 1px solid var(--border);
            padding: 16px clamp(16px, 4vw, 48px) 20px;
            flex-direction: column;
            gap: 8px;
            box-shadow: var(--shadow-md);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            text-decoration: none;
            font-size: 15px;
            color: var(--ink);
            font-weight: 500;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }

        .mobile-menu .mobile-btns {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }

        .mobile-menu .mobile-btns a {
            border: none;
            padding: 0;
            flex: 1;
            text-align: center;
            padding: 10px;
            border-radius: var(--r-sm);
        }

        .mobile-menu .mobile-btns .btn-login {
            border: 1.5px solid var(--border-dark);
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            padding: 120px clamp(16px, 4vw, 48px) 80px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: var(--cream);
        }

        .hero-blob-1 {
            position: absolute;
            top: -80px;
            right: -100px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 74, 31, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-blob-2 {
            position: absolute;
            bottom: 0;
            left: -120px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 135, 10, 0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 48px 48px;
            opacity: 0.35;
        }

        .hero-inner {
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--rust-pale);
            color: var(--rust);
            border: 1px solid var(--rust-light);
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: fadeInUp 0.6s ease both;
        }

        .hero-title {
            font-family: 'Fraunces', serif;
            font-size: clamp(40px, 5.5vw, 72px);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -1.5px;
            color: var(--ink);
            margin-bottom: 24px;
            animation: fadeInUp 0.6s 0.1s ease both;
        }

        .hero-title em {
            font-style: italic;
            color: var(--rust);
        }

        .hero-title .underline-word {
            position: relative;
            display: inline-block;
        }

        .hero-title .underline-word::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 3px;
            background: var(--amber);
            border-radius: 2px;
        }

        .hero-desc {
            font-size: 17px;
            color: var(--ink-muted);
            line-height: 1.7;
            max-width: 460px;
            margin-bottom: 36px;
            font-weight: 300;
            animation: fadeInUp 0.6s 0.2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s 0.3s ease both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--rust);
            color: white;
            padding: 14px 28px;
            border-radius: var(--r-md);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
            box-shadow: 0 4px 16px rgba(201, 74, 31, 0.25);
        }

        .btn-primary:hover {
            background: #b03d14;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 74, 31, 0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--ink);
            padding: 13px 28px;
            border-radius: var(--r-md);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            border: 1.5px solid var(--border-dark);
            transition: all 0.25s;
        }

        .btn-secondary:hover {
            border-color: var(--ink);
            background: var(--ink);
            color: white;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 48px;
            padding-top: 36px;
            border-top: 1px solid var(--border);
            animation: fadeInUp 0.6s 0.4s ease both;
        }

        .stat-item {}

        .stat-num {
            font-family: 'Fraunces', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -1px;
            line-height: 1;
        }

        .stat-num span {
            color: var(--rust);
        }

        .stat-label {
            font-size: 12px;
            color: var(--ink-light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        /* Hero visual */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 0.8s 0.2s ease both;
        }

        .hero-card-stack {
            position: relative;
            width: 380px;
            height: 420px;
        }

        .hcard {
            position: absolute;
            background: white;
            border-radius: var(--r-lg);
            padding: 20px 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
        }

        .hcard-main {
            width: 320px;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }

        .hcard-back1 {
            width: 280px;
            top: 16px;
            left: 50%;
            transform: translateX(-48%);
            z-index: 2;
            opacity: 0.7;
        }

        .hcard-back2 {
            width: 260px;
            top: 4px;
            left: 50%;
            transform: translateX(-46%);
            z-index: 1;
            opacity: 0.4;
        }

        .hcard-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--ink-light);
            margin-bottom: 12px;
        }

        .hcard-title {
            font-family: 'Fraunces', serif;
            font-size: 17px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 16px;
        }

        .hcard-items {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .hcard-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            border-radius: var(--r-sm);
            background: var(--cream);
            border: 1px solid var(--border);
        }

        .hcard-item-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hcard-emoji {
            font-size: 20px;
        }

        .hcard-name {
            font-size: 13px;
            font-weight: 500;
            color: var(--ink);
        }

        .hcard-price {
            font-size: 13px;
            font-weight: 600;
            color: var(--rust);
        }

        .hcard-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--teal-light);
            color: var(--teal);
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 999px;
            margin-top: 12px;
        }

        .float-tag {
            position: absolute;
            background: white;
            border-radius: var(--r-sm);
            padding: 10px 14px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-md);
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            animation: floatY 3s ease-in-out infinite;
        }

        .float-tag:nth-child(odd) {
            animation-delay: -1.5s;
        }

        .float-tag-1 {
            bottom: 60px;
            left: -20px;
            z-index: 5;
        }

        .float-tag-2 {
            top: 20px;
            right: -10px;
            z-index: 5;
            animation-delay: -0.8s;
        }

        @keyframes floatY {

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

            50% {
                transform: translateY(-8px);
            }
        }

        /* ── SECTION WRAPPER ── */
        .section {
            padding: 80px clamp(16px, 4vw, 48px);
        }

        .section-inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--rust);
            margin-bottom: 12px;
        }

        .section-label::before {
            content: '';
            display: block;
            width: 20px;
            height: 1.5px;
            background: var(--rust);
        }

        .section-heading {
            font-family: 'Fraunces', serif;
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .section-sub {
            font-size: 16px;
            color: var(--ink-muted);
            font-weight: 300;
            max-width: 480px;
            line-height: 1.65;
        }

        /* ── MENU SECTION ── */
        #menu {
            background: var(--warm-white);
        }

        .menu-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
            gap: 24px;
            margin-bottom: 32px;
        }

        .menu-date-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--amber-light);
            color: var(--amber);
            border: 1px solid #f5dfa0;
            border-radius: 999px;
            padding: 5px 14px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Tab bar */
        .tab-bar {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            padding: 5px;
            align-self: flex-start;
        }

        .tab-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: var(--ink-muted);
            padding: 8px 16px;
            border-radius: var(--r-sm);
            transition: all 0.2s;
            white-space: nowrap;
        }

        .tab-btn:hover {
            color: var(--ink);
            background: var(--border);
        }

        .tab-btn.active {
            background: white;
            color: var(--ink);
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }

        .menu-section {
            display: none;
        }

        .menu-section.active {
            display: block;
        }

        /* ── FEATURES ── */
        #features {
            background: var(--cream);
        }

        .features-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 64px;
            align-items: start;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .feat-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            padding: 28px 24px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--rust);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .feat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .feat-card:hover::after {
            transform: scaleX(1);
        }

        .feat-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--r-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
        }

        .fi-rust {
            background: var(--rust-pale);
        }

        .fi-amber {
            background: var(--amber-light);
        }

        .fi-teal {
            background: var(--teal-light);
        }

        .fi-blue {
            background: var(--blue-light);
        }

        .feat-title {
            font-family: 'Fraunces', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .feat-desc {
            font-size: 13px;
            color: var(--ink-muted);
            line-height: 1.6;
            font-weight: 300;
        }

        /* ── ABOUT ── */
        #about {
            background: var(--ink);
            color: white;
        }

        #about .section-label {
            color: var(--rust-light);
        }

        #about .section-label::before {
            background: var(--rust-light);
        }

        #about .section-heading {
            color: white;
        }

        .about-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .about-desc {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
            line-height: 1.75;
            margin-bottom: 36px;
        }

        .about-perks {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .about-perk {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .perk-dot {
            width: 6px;
            height: 6px;
            background: var(--rust);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 8px;
        }

        .perk-text {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 300;
        }

        .about-visual {
            border-radius: var(--r-xl);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .about-stat:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .about-stat-num {
            font-family: 'Fraunces', serif;
            font-size: 40px;
            font-weight: 700;
            color: white;
            letter-spacing: -1.5px;
            line-height: 1;
        }

        .about-stat-num em {
            color: var(--rust);
            font-style: normal;
        }

        .about-stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 500;
        }

        /* ── CONTACT ── */
        #contact {
            background: var(--warm-white);
        }

        .contact-box {
            max-width: 620px;
            margin: 0 auto;
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--r-xl);
            padding: clamp(32px, 5vw, 56px);
            box-shadow: var(--shadow-lg);
            text-align: center;
        }

        .contact-icon {
            width: 72px;
            height: 72px;
            background: var(--rust-pale);
            border-radius: var(--r-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 24px;
        }

        .contact-title {
            font-family: 'Fraunces', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .contact-desc {
            font-size: 15px;
            color: var(--ink-muted);
            font-weight: 300;
            margin-bottom: 28px;
        }

        .contact-email-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--ink);
            color: white;
            padding: 14px 28px;
            border-radius: var(--r-md);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.25s;
        }

        .contact-email-btn:hover {
            background: var(--rust);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 74, 31, 0.3);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--ink);
            padding: 40px clamp(16px, 4vw, 48px);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .footer-brand {
            font-family: 'Fraunces', serif;
            font-size: 18px;
            font-weight: 700;
            color: white;
        }

        .footer-brand span {
            color: var(--rust);
        }

        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(32px);
            }

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

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .hero-visual {
                display: flex;
                width: 100%;
                justify-content: center;
                margin-top: 24px;
            }

            .features-layout {
                grid-template-columns: 1fr;
            }

            .about-layout {
                grid-template-columns: 1fr;
            }

            .about-visual {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-actions {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-stats {
                gap: 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .menu-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .tab-bar {
                width: 100%;
                overflow-x: auto;
                flex-wrap: nowrap;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                letter-spacing: -0.5px;
            }

            .hero-stats {
                flex-wrap: wrap;
            }

            .items-grid {
                grid-template-columns: 1fr;
            }
        }

        /* scrollbar minimal */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--border-dark);
            border-radius: 3px;
        }

        /* ── FLOATING CART BUTTON ── */
        .floating-cart {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--rust) 0%, #a83a15 100%);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(201, 74, 31, 0.4), 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: scale(0.8) translateY(20px);
            pointer-events: none;
        }

        .floating-cart.visible {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
        }

        .floating-cart:hover {
            transform: scale(1.08) translateY(-3px);
            box-shadow: 0 12px 35px rgba(201, 74, 31, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .floating-cart:active {
            transform: scale(0.95);
        }

        .floating-cart svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--amber);
            color: white;
            font-size: 11px;
            font-weight: 700;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            animation: bounceBadge 0.3s ease;
        }

        @keyframes bounceBadge {
            0% {
                transform: scale(0.6);
            }

            50% {
                transform: scale(1.2);
            }

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

        /* ── CART DRAWER OVERLAY ── */
        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 20, 16, 0.6);
            backdrop-filter: blur(8px);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .cart-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* ── CART DRAWER PANEL ── */
        .cart-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(440px, 100vw);
            background: var(--warm-white);
            border-left: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }

        .cart-drawer.active {
            transform: translateX(0);
        }

        .cd-header {
            padding: 24px 28px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cd-title {
            font-family: 'Fraunces', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
        }

        .cd-close {
            background: none;
            border: none;
            cursor: pointer;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink-muted);
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .cd-close:hover {
            background: var(--cream);
            color: var(--ink);
            border-color: var(--border);
        }

        .cd-close svg {
            width: 18px;
            height: 18px;
        }

        .cd-body {
            flex: 1;
            overflow-y: auto;
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cart-empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--ink-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            height: 100%;
        }

        .cart-empty-emoji {
            font-size: 48px;
        }

        .cart-empty-text {
            font-size: 14px;
            font-weight: 500;
        }

        .cart-items-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .cart-item {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-sm);
            animation: slideInItem 0.25s ease forwards;
        }

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

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

        .ci-emoji-wrap {
            width: 44px;
            height: 44px;
            border-radius: var(--r-sm);
            background: var(--rust-pale);
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ci-details {
            flex: 1;
            min-width: 0;
        }

        .ci-name {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--ink);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ci-unit {
            font-size: 11px;
            color: var(--ink-light);
            margin-top: 2px;
        }

        .ci-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }

        .qty-selector {
            display: flex;
            align-items: center;
            border: 1.5px solid var(--border);
            border-radius: var(--r-sm);
            overflow: hidden;
            background: var(--warm-white);
        }

        .qty-btn {
            background: none;
            border: none;
            width: 28px;
            height: 26px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--ink-muted);
            transition: background 0.15s, color 0.15s;
        }

        .qty-btn:hover {
            background: var(--cream);
            color: var(--ink);
        }

        .qty-val {
            width: 28px;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--ink);
        }

        .ci-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
            justify-content: space-between;
            height: 100%;
            min-height: 52px;
        }

        .ci-price {
            font-family: 'Fraunces', serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
        }

        .ci-remove {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--ink-light);
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s;
        }

        .ci-remove:hover {
            color: var(--rust);
            background: var(--rust-pale);
        }

        .ci-remove svg {
            width: 14px;
            height: 14px;
        }

        .cart-note-section {
            margin-top: 10px;
            border-top: 1px dashed var(--border);
            padding-top: 16px;
        }

        .cart-note-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--ink-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: block;
            margin-bottom: 6px;
        }

        .cart-note-input {
            width: 100%;
            min-height: 70px;
            padding: 10px 12px;
            border: 1.5px solid var(--border);
            border-radius: var(--r-sm);
            background: white;
            font-family: 'DM Sans', sans-serif;
            font-size: 13.5px;
            color: var(--ink);
            resize: vertical;
            outline: none;
            transition: border-color 0.2s;
        }

        .cart-note-input:focus {
            border-color: var(--rust);
        }

        .cd-footer {
            padding: 24px 28px;
            border-top: 1px solid var(--border);
            background: var(--warm-white);
            display: flex;
            flex-direction: column;
            gap: 16px;
            box-shadow: 0 -4px 16px rgba(26, 20, 16, 0.03);
        }

        .cd-total-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cd-total-lbl {
            font-size: 14px;
            font-weight: 600;
            color: var(--ink-muted);
        }

        .cd-total-val {
            font-family: 'Fraunces', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--rust);
        }

        .btn-checkout {
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--rust) 0%, #a83a15 100%);
            color: white;
            border: none;
            border-radius: var(--r-sm);
            font-size: 14.5px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(201, 74, 31, 0.25);
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-checkout:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(201, 74, 31, 0.35);
        }

        .btn-checkout:active {
            transform: translateY(0);
        }

        .btn-checkout svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
        }

        /* ── CUSTOM TOAST NOTIFICATION ── */
        .custom-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        .custom-toast {
            background: rgba(26, 20, 16, 0.95);
            color: white;
            border: 1.5px solid var(--border-dark);
            padding: 12px 20px;
            border-radius: var(--r-sm);
            font-size: 13.5px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: auto;
            font-family: 'DM Sans', sans-serif;
        }

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

        .custom-toast-emoji {
            font-size: 16px;
        }

        /* ── NAVBAR CART BUTTON ── */
        .nav-order-btn {
            background-color: var(--rust);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .nav-order-btn:hover {
            background-color: var(--amber);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(201, 74, 31, 0.2);
        }

        /* ── CONFIRMATION MODAL ── */
        .c-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 20, 16, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 20px;
        }

        .c-modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .c-modal {
            background: var(--warm-white);
            border: 1.5px solid var(--border);
            border-radius: var(--r-lg);
            width: 100%;
            max-width: 480px;
            box-shadow: var(--shadow-lg);
            position: relative;
            transform: scale(0.9) translateY(20px);
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .c-modal-overlay.active .c-modal {
            transform: scale(1) translateY(0);
        }

        .c-modal-close {
            position: absolute;
            top: 16px;
            right: 18px;
            background: none;
            border: none;
            font-size: 24px;
            font-weight: 300;
            color: var(--ink-light);
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
        }

        .c-modal-close:hover {
            color: var(--rust);
        }

        .c-modal-header {
            padding: 28px 28px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1.5px dashed var(--border);
        }

        .c-modal-icon {
            font-size: 24px;
        }

        .c-modal-title {
            font-family: 'Fraunces', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
        }

        .c-modal-body {
            padding: 24px 28px;
            overflow-y: auto;
            max-height: 60vh;
        }

        .c-modal-text {
            font-size: 13.5px;
            color: var(--ink-muted);
            margin-bottom: 16px;
        }

        .c-modal-summary {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            padding: 16px;
            margin-bottom: 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cms-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .cms-item-left {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: var(--ink);
        }

        .cms-item-right {
            color: var(--ink-muted);
        }

        .cms-divider {
            border: none;
            border-top: 1px dashed var(--border-dark);
            margin: 4px 0;
        }

        .cms-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 14.5px;
            color: var(--ink);
        }

        .cms-total .total-val {
            color: var(--rust);
            font-family: 'Fraunces', serif;
            font-size: 18px;
        }

        .c-modal-warning {
            font-size: 11px;
            color: var(--amber);
            background: var(--amber-light);
            border: 1px solid rgba(212, 135, 10, 0.15);
            padding: 10px 12px;
            border-radius: var(--r-sm);
            line-height: 1.4;
        }

        .c-modal-footer {
            padding: 20px 28px 28px;
            display: flex;
            gap: 12px;
            background: var(--cream);
            border-top: 1px solid var(--border);
            justify-content: flex-end;
        }

        .c-modal-btn {
            padding: 11px 20px;
            border-radius: var(--r-sm);
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'DM Sans', sans-serif;
        }

        .c-modal-btn.cancel {
            background: white;
            border: 1.5px solid var(--border);
            color: var(--ink-muted);
        }

        .c-modal-btn.cancel:hover {
            background: var(--cream);
            color: var(--ink);
            border-color: var(--border-dark);
        }

        .c-modal-btn.confirm {
            background: linear-gradient(135deg, var(--rust) 0%, #a83a15 100%);
            border: none;
            color: white;
            box-shadow: 0 4px 12px rgba(201, 74, 31, 0.2);
        }

        .c-modal-btn.confirm:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(201, 74, 31, 0.3);
        }

        .c-modal-btn.confirm:active {
            transform: translateY(0);
        }

        /* Payment selection styles */
        .payment-option-card {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px;
            border: 1.5px solid var(--border);
            border-radius: var(--r-sm);
            cursor: pointer;
            background: white;
            transition: all 0.2s;
        }

        .payment-option-card:hover {
            border-color: var(--ink-muted);
            background: var(--cream-light);
        }

        .payment-option-card.active {
            border-color: var(--rust);
            background: #fffbf9;
        }

        /* ── HERO PROMOTIONS CAROUSEL ── */
        .hero-promo-container {
            position: relative;
            width: 100%;
            max-width: 420px;
            height: 450px;
            perspective: 1000px;
        }

        .promo-hero-card {
            position: absolute;
            inset: 0;
            border-radius: 28px;
            padding: 28px;
            color: white;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
            display: flex;
            flex-direction: column;
            transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease, filter 0.7s ease;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            pointer-events: none;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .promo-hero-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .promo-hero-card.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
            z-index: 10;
        }

        .promo-hero-card.prev {
            opacity: 0;
            transform: translateY(-30px) scale(0.95);
            pointer-events: none;
        }

        .promo-hero-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .promo-hero-emoji-wrap {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            backdrop-filter: blur(4px);
        }

        .promo-hero-title-wrap {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .promo-hero-badge {
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 3px 10px;
            border-radius: 9999px;
            display: inline-block;
            width: fit-content;
            animation: pulse-glow 2s infinite;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 0.9;
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
            }

            50% {
                opacity: 1;
                box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.4);
            }
        }

        .promo-hero-name {
            font-family: 'Fraunces', serif;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.15;
            color: white;
            letter-spacing: -0.5px;
        }

        .promo-hero-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.45;
            margin-bottom: 20px;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .promo-hero-items-container {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 12px;
            padding-right: 4px;
            position: relative;
            z-index: 1;
        }

        .promo-hero-items-container::-webkit-scrollbar {
            width: 4px;
        }

        .promo-hero-items-container::-webkit-scrollbar-track {
            background: transparent;
        }

        .promo-hero-items-container::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }

        .promo-hero-items-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 2px 0;
        }

        .promo-hero-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.16);
            padding: 12px 14px;
            border-radius: 18px;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .promo-hero-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .promo-hero-item-left {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .promo-hero-item-emoji {
            font-size: 26px;
            flex-shrink: 0;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
        }

        .promo-hero-item-details {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .promo-hero-item-name {
            font-size: 13.5px;
            font-weight: 700;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .promo-hero-item-offer {
            font-size: 10.5px;
            color: #fef08a;
            font-weight: 800;
            margin-top: 3px;
            letter-spacing: 0.2px;
        }

        .promo-hero-item-discount-pct {
            font-size: 10px;
            color: #a7f3d0;
            font-weight: 700;
            margin-top: 3px;
        }

        .promo-hero-item-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .promo-hero-item-price-wrap {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            line-height: 1.2;
        }

        .promo-hero-item-special {
            font-size: 15px;
            font-weight: 900;
            color: #34d399;
        }

        .promo-hero-item-orig {
            font-size: 10.5px;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: line-through;
            margin-top: 1px;
        }

        .promo-hero-item-regular {
            font-size: 14.5px;
            font-weight: 800;
            color: white;
        }

        .promo-hero-add-btn {
            background: white;
            color: var(--ink);
            border: none;
            padding: 7px 14px;
            border-radius: 9999px;
            font-size: 11.5px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .promo-hero-add-btn:hover {
            background: var(--cream);
            transform: scale(1.06);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        .promo-hero-add-btn:active {
            transform: scale(0.96);
        }

        .promo-hero-footer-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.18);
            padding-top: 14px;
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .promo-hero-count {
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: 0.5px;
        }

        .promo-hero-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 20px;
            position: absolute;
            bottom: -56px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            z-index: 15;
        }

        .promo-hero-dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .promo-hero-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border-dark);
            border: none;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 0;
        }

        .promo-hero-dot.active {
            background: var(--rust);
            transform: scale(1.2);
            width: 20px;
            border-radius: 4px;
        }

        .promo-hero-arrow {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: white;
            border: 1.5px solid var(--border);
            color: var(--ink-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: var(--shadow-sm);
        }

        .promo-hero-arrow:hover {
            background: var(--cream);
            color: var(--ink);
            border-color: var(--border-dark);
            box-shadow: var(--shadow-md);
        }

        .promo-hero-arrow svg {
            width: 18px;
            height: 18px;
        }

        .promo-hero-arrow:active {
            transform: scale(0.92);
        }

        @media (max-width: 480px) {
            .hero-promo-container {
                max-width: 100%;
                height: 470px;
            }

            .promo-hero-card {
                padding: 22px;
                border-radius: 22px;
            }

            .promo-hero-controls {
                bottom: -48px;
            }
        }


        /* ── LIGHT THEME CARD INTEGRATION STYLES ── */
        .items-grid {
            max-width: 1400px;
            margin: 40px auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .food-card {
            background: #ffffff;
            border: 1.5px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            color: var(--ink);
            transition: .3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 12px rgba(26, 20, 16, 0.03);
        }

        .food-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(26, 20, 16, 0.08);
            border-color: var(--border-dark);
        }

        .card-image {
            position: relative;
            height: 140px;
            background: var(--cream);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-bottom: 1.5px solid var(--border);
        }

        .popular-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--amber-light);
            color: var(--amber);
            border: 1px solid rgba(212, 135, 10, 0.2);
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .food-type {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 20px;
            height: 20px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }

        .food-type.veg {
            border: 1.5px solid #4caf50;
        }

        .food-type.nonveg {
            border: 1.5px solid #e53935;
        }

        .food-type span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .food-type.veg span {
            background: #4caf50;
        }

        .food-type.nonveg span {
            background: #e53935;
        }

        .food-tag {
            margin-top: 12px;
            background: white;
            color: var(--teal);
            border: 1.5px solid var(--teal-light);
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
        }

        .slider-dots {
            margin-top: 12px;
            display: flex;
            gap: 6px;
        }

        .slider-dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--border-dark);
        }

        .slider-dots .active {
            width: 16px;
            border-radius: 10px;
            background: var(--ink-muted);
        }

        .card-content {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
            background: #ffffff;
        }

        .card-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 8px;
        }

        .card-title-col {
            flex: 1;
            min-width: 0;
        }

        .card-content h3 {
            font-family: 'Fraunces', serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 2px;
            line-height: 1.2;
            color: var(--ink);
        }

        .unit {
            color: var(--ink-muted);
            font-size: 13px;
            margin-bottom: 0;
            font-weight: 500;
        }

        .rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fffdf5;
            border: 1px solid #fce7b2;
            padding: 5px;
            border-radius: 100px;
            font-size: 8px;
            font-weight: 700;
            color: #d4870a;
            margin: 6px 0 3px;
            cursor: pointer;
            width: fit-content;
            transition: all 0.2s ease;
        }

        .rating-badge:hover {
            background: #fdf5df;
            border-color: #f7d279;
            transform: translateY(-1px);
        }

        .rating-badge .stars {
            color: #ffb300;
            letter-spacing: 0.5px;
            display: inline-flex;
        }

        .rating-badge .rating-num {
            font-weight: 800;
            color: var(--ink);
            margin-left: 2px;
        }

        .rating-badge .reviews-count {
            color: var(--ink-muted);
            font-weight: 500;
        }

        .card-header-row .price {
            margin-top: 0;
            text-align: right;
            flex-shrink: 0;
        }

        .card-header-row .price h2 {
            font-size: 20px;
            margin: 1px 0 2px;
        }

        .card-header-row .price small {
            font-size: 11px;
            text-transform: lowercase;
            display: block;
        }

        .card-header-row .price .credit {
            font-size: 11px;
            margin-top: 1px;
        }

        .price {
            margin-top: auto;
        }

        .price small {
            color: var(--ink-muted);
            font-size: 12px;
            font-weight: 500;
        }

        .price h2 {
            font-family: 'Fraunces', serif;
            font-size: 28px;
            line-height: 1.1;
            margin: 2px 0 4px;
            color: var(--ink);
            font-weight: 700;
        }

        .credit {
            color: var(--ink-muted);
            font-size: 12px;
        }

        .credit span {
            color: var(--amber);
            font-weight: 700;
        }

        .divider {
            margin: 16px 0;
            border: none;
            border-top: 1px solid var(--border);
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .variant-btn {
            border: 1px solid var(--rust-light);
            background: var(--rust-pale);
            color: var(--rust);
            padding: 0 14px;
            height: 42px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
        }

        .variant-btn:hover {
            background: var(--rust);
            color: white;
            border-color: var(--rust);
        }

        .choose-btn {
            background: var(--ink);
            border: 1px solid var(--ink);
            color: #fff;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(26, 20, 16, 0.15);
        }

        .choose-btn:hover {
            background: #3a2e26;
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(26, 20, 16, 0.2);
        }

        .w-full {
            width: 100%;
        }

        @media(max-width:992px) {
            .items-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:768px) {
            .items-grid {
                grid-template-columns: 1fr;
            }
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px 0;
        }

        .category-left {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .category-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: #f8f1ec;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 600;
            color: #222;
        }

        .category-title {
            margin: 0;
            font-size: 42px;
            font-weight: 700;
            line-height: 1;
            color: #222;
            font-family: Georgia, serif;
        }

        .category-count {
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid #e6ddd5;
            background: #faf6f2;
            color: #a79a8e;
            font-size: 18px;
            font-weight: 600;
            white-space: nowrap;
        }

        .var-option-card {
            transition: all 0.2s ease;
        }

        .var-option-card:hover {
            border-color: var(--rust) !important;
            background: #fffcfb !important;
            box-shadow: 0 4px 12px rgba(201, 74, 31, 0.06);
        }

        .var-option-card:has(input[type="checkbox"]:checked) {
            border-color: var(--rust) !important;
            background: var(--rust-pale) !important;
            box-shadow: 0 4px 16px rgba(201, 74, 31, 0.1);
        }

        .var-option-card input[type="checkbox"]:checked + span {
            color: var(--rust) !important;
        }

        .var-options-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            max-height: 360px;
            overflow-y: auto;
            margin-bottom: 24px;
            padding-right: 8px;
        }

        @media (max-width: 640px) {
            .var-options-grid {
                grid-template-columns: 1fr;
            }
        }
    