/* ============================================================
   Octagon Cafe — Premium Restaurant Design System v2.0
   Ultra-Modern Dark Theme with Glassmorphism & Micro-Animations
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
    /* Primary Colors — Luxurious Gold Palette */
    --gold: #D4A843;
    --gold-light: #E8C56D;
    --gold-dark: #B8922E;
    --gold-glow: rgba(212, 168, 67, 0.3);
    --gold-shimmer: rgba(232, 197, 109, 0.15);

    /* Neutrals — Deep Dark Palette */
    --black: #080808;
    --charcoal: #111111;
    --charcoal-light: #1A1A1A;
    --charcoal-lighter: #252525;
    --gray-dark: #555555;
    --gray: #888888;
    --gray-light: #BBBBBB;
    --gray-lighter: #E5E5E5;
    --white: #FFFFFF;
    --off-white: #F8F7F4;

    /* Accent Colors */
    --emerald: #10B981;
    --emerald-glow: rgba(16, 185, 129, 0.2);

    /* Functional */
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    --purple: #8B5CF6;

    /* Typography */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
    --shadow-gold: 0 8px 30px rgba(212, 168, 67, 0.35);
    --shadow-gold-lg: 0 12px 50px rgba(212, 168, 67, 0.4);

    /* Glassmorphism */
    --glass-bg: rgba(17, 17, 17, 0.75);
    --glass-bg-light: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-gold: rgba(212, 168, 67, 0.2);
    --glass-blur: blur(20px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Z-index layers */
    --z-dropdown: 1100;
    --z-sticky: 9999;
    --z-overlay: 10000;
    --z-modal: 11000;
    --z-cart: 12000;
    --z-toast: 13000;
    --z-popup: 14000;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    font-weight: var(--fw-regular);
    color: var(--white);
    background-color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated background mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: meshFloat 20s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-family);
    border: none;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-family);
    outline: none;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--charcoal);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--gold-light), var(--gold));
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    color: var(--gray-dark);
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: var(--gold);
    font-weight: var(--fw-bold);
    font-family: var(--font-family);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-header .subtitle::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
}

/* ============================================================
   HEADER — Premium Glassmorphism
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    transition: opacity var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(8, 8, 8, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.site-header.scrolled::after {
    opacity: 0.6;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 76px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo .logo-img {
    height: 60px;
    max-height: 62px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(212, 168, 67, 0.2));
}

.header-logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(212, 168, 67, 0.4));
}

.logo-img-drawer {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 72px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.header-logo .logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: var(--black);
}

.header-logo .logo-text {
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    color: var(--white);
    letter-spacing: 0.5px;
}

.header-logo .logo-text span {
    color: var(--gold);
}

/* Hamburger Button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: calc(var(--z-overlay) + 1);
    transition: transform var(--transition-fast);
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.hamburger-btn:hover span {
    background: var(--gold);
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    color: var(--white);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid transparent;
}

.header-btn:hover {
    background: rgba(255,255,255,0.06);
    color: var(--gold);
    border-color: rgba(212, 168, 67, 0.2);
}

.header-btn i {
    font-size: 1.1rem;
}

.header-btn.btn-cart {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: var(--fw-semibold);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.header-btn.btn-cart:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.45);
}

.cart-count {
    background: var(--danger);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2px;
    right: -2px;
    animation: cartBadgePop 0.3s ease;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

@keyframes cartBadgePop {
    0% { transform: scale(0); }
    70% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Branch Selector in Header */
.branch-selector-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    color: var(--gray-light);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

.branch-selector-header:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 67, 0.08);
}

.branch-selector-header i {
    color: var(--gold);
    font-size: 0.9rem;
}

.branch-selector-header select {
    background: transparent;
    border: none;
    color: inherit;
    font-family: var(--font-family);
    font-size: 0.82rem;
    cursor: pointer;
    -webkit-appearance: none;
}

.branch-selector-header select option {
    background: var(--charcoal);
    color: var(--white);
}

/* ============================================================
   HAMBURGER MENU (Slide-in with Glass)
   ============================================================ */
.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.hamburger-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100vh;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(30px);
    z-index: calc(var(--z-overlay) + 1);
    transition: left var(--transition-smooth);
    overflow-y: auto;
    border-right: 1px solid rgba(212, 168, 67, 0.1);
}

.hamburger-menu.active {
    left: 0;
}

.hamburger-menu-header {
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger-menu-header .logo-text {
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    color: var(--white);
}

.hamburger-menu-header .logo-text span {
    color: var(--gold);
}

.hamburger-close {
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hamburger-close:hover {
    color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
    transform: rotate(90deg);
}

.hamburger-nav {
    padding: 20px 0;
}

.hamburger-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 25px;
    color: var(--gray-light);
    font-weight: var(--fw-medium);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    border-left: 3px solid transparent;
    position: relative;
}

.hamburger-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(212, 168, 67, 0.08), transparent);
    transition: width var(--transition-normal);
}

.hamburger-nav a:hover::before,
.hamburger-nav a.active::before {
    width: 100%;
}

.hamburger-nav a:hover,
.hamburger-nav a.active {
    color: var(--gold);
    border-left-color: var(--gold);
}

.hamburger-nav a i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--gold);
}

.hamburger-nav .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    margin: 10px 25px;
}

/* ============================================================
   BUTTONS — Premium with Glow Effects
   ============================================================ */
.btn-primary-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary-gold:hover::before {
    left: 100%;
}

.btn-primary-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--black);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark:hover {
    background: var(--black);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ============================================================
   HERO SLIDER — Cinematic Full-Screen
   ============================================================ */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 550px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 76px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(8,8,8,0.92) 0%, 
        rgba(8,8,8,0.6) 40%, 
        rgba(8,8,8,0.3) 60%, 
        rgba(8,8,8,0.5) 100%
    );
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    max-width: 750px;
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.4);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    width: fit-content;
    animation: slideInLeft 0.8s ease;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease 0.4s both;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease 0.6s both;
}

/* Hero Slider Controls */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.hero-dot.active {
    background: var(--gold);
    width: 48px;
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.5);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.5);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.hero-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    pointer-events: all;
    font-size: 1.2rem;
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

/* ============================================================
   AD BANNER STRIP — Shimmer Effect
   ============================================================ */
.ad-banner-section {
    background: linear-gradient(90deg, var(--black), var(--charcoal), var(--black));
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.ad-banner-track {
    display: flex;
    animation: scrollBanner 35s linear infinite;
}

.ad-banner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    white-space: nowrap;
    color: var(--gold);
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
}

.ad-banner-item i {
    font-size: 1.1rem;
}

.ad-banner-item span {
    color: rgba(255,255,255,0.7);
    font-weight: var(--fw-regular);
    margin-left: 5px;
}

@keyframes scrollBanner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORIES SECTION — Glassmorphism Cards
   ============================================================ */
.categories-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 16px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #F3F4F6;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 168, 67, 0.15), 0 0 0 1px rgba(212, 168, 67, 0.3);
    border-color: rgba(212, 168, 67, 0.3);
}

.category-card .cat-image-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
}

.category-card .cat-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 168, 67, 0.3);
    opacity: 0;
    transition: all 0.5s ease;
    animation: none;
}

.category-card:hover .cat-image-wrapper::after {
    opacity: 1;
    animation: spinRing 8s linear infinite;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

.category-card .cat-real-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .cat-real-img {
    transform: scale(1.15) rotate(3deg);
}

.category-card h5 {
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: #111827;
    font-family: var(--font-family);
}

.category-card p {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 700;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid var(--gray-lighter);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.product-card .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: var(--emerald);
    color: var(--white);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.product-badge.discount {
    background: var(--danger);
    color: var(--white);
}

.product-card .product-body {
    padding: 20px;
}

.product-card .product-category {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card .product-name {
    font-size: 1.05rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.3;
}

.product-card .product-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price .current {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: var(--gold-dark);
}

.product-price .original {
    font-size: 0.82rem;
    color: var(--gray);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.5);
}

/* ============================================================
   DEALS SECTION — Dark Glass Cards
   ============================================================ */
.deals-section {
    padding: var(--section-padding);
    background: var(--black);
    position: relative;
}

.deals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(212, 168, 67, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 168, 67, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.deals-section .section-header h2 {
    color: var(--white);
}

.deals-section .section-header p {
    color: var(--gray);
}

.deal-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.deal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(212, 168, 67, 0.1);
}

.deal-card .deal-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #111111);
}

.deal-card .deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.08);
}

.deal-card .deal-savings {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--danger);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: dealPulse 2s ease-in-out infinite;
}

@keyframes dealPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(239, 68, 68, 0.6); }
}

.deal-card .deal-body {
    padding: 22px;
}

.deal-card .deal-type {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--fw-bold);
    margin-bottom: 8px;
}

.deal-card .deal-title {
    font-size: 1.15rem;
    font-weight: var(--fw-semibold);
    color: var(--white);
    margin-bottom: 8px;
}

.deal-card .deal-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.deal-card .deal-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deal-card .deal-prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.deal-card .deal-prices .new-price {
    font-size: 1.4rem;
    font-weight: var(--fw-extrabold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deal-card .deal-prices .old-price {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

/* ============================================================
   BEST SELLERS HORIZONTAL SLIDER
   ============================================================ */
.bestsellers-section {
    padding: var(--section-padding);
    background: var(--off-white);
    overflow: hidden;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.products-slider .product-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ============================================================
   WHY CHOOSE US — Interactive Cards
   ============================================================ */
.why-section {
    padding: var(--section-padding);
    background: var(--white);
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    position: relative;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.why-card:hover::after {
    width: 60px;
}

.why-card:hover {
    transform: translateY(-10px);
    background: var(--off-white);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.why-card .why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.25);
}

.why-card:hover .why-icon {
    border-radius: 50%;
    transform: rotate(10deg) scale(1.05);
}

.why-card h4 {
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================================
   REVIEWS / TESTIMONIALS — Premium Glass
   ============================================================ */
.reviews-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0C0C0C 0%, #080808 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-section .section-header h2 {
    color: var(--white);
}

.review-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.review-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(212, 168, 67, 0.08);
}

.review-quote-icon {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 3.2rem;
    color: rgba(212, 168, 67, 0.1);
    line-height: 1;
    pointer-events: none;
}

.review-stars {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.review-rating-num {
    font-weight: var(--fw-bold);
    color: var(--white);
    font-size: 0.85rem;
    margin-left: 8px;
}

.review-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    color: var(--black);
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.review-author-info h6 {
    color: var(--white);
    font-weight: var(--fw-semibold);
    margin-bottom: 3px;
    font-size: 1rem;
}

.review-author-info span {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 0;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-carousel .review-card {
    min-width: 350px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* ============================================================
   FOOTER — Refined with Elegance
   ============================================================ */
.site-footer {
    background: var(--black);
    color: var(--gray-light);
    padding: 80px 0 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}

.footer-brand .logo-text span {
    color: var(--gold);
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3);
}

.footer-col h5 {
    color: var(--white);
    font-weight: var(--fw-semibold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-col ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-right: 0;
    transition: all var(--transition-normal);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col ul li a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 14px !important;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
}

/* ============================================================
   SLIDE-OUT CART — Premium Glass
   ============================================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: var(--z-cart);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-cart {
    position: fixed;
    top: 0;
    right: -460px;
    width: 420px;
    height: 100vh;
    background: #ffffff;
    z-index: calc(var(--z-cart) + 1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0,0,0,0.3);
}

.sidebar-cart.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    border-bottom: 2px solid var(--gold);
    color: #ffffff;
}

.cart-header h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h4 i {
    color: var(--gold);
    font-size: 1.3rem;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    color: #D1D5DB;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--gold);
    color: #000000;
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #F9FAFB;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    height: 100%;
}

.empty-cart-icon-bg {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(212, 168, 67, 0.04));
    border: 2px dashed rgba(212, 168, 67, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-cart-icon-bg i {
    font-size: 3.2rem;
    color: var(--gold);
}

.cart-empty-state h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.cart-empty-state p {
    font-size: 0.9rem;
    color: #6B7280;
    max-width: 260px;
    line-height: 1.5;
    margin-bottom: 28px;
}

.btn-explore-menu {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
    transition: all 0.3s ease;
}

.btn-explore-menu:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 168, 67, 0.45);
    color: #000000;
}

/* Cart Items */
.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-drawer-item {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.cart-drawer-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.08);
}

.cart-drawer-img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F3F4F6;
}

.cart-drawer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-drawer-details {
    flex: 1;
}

.cart-drawer-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.cart-drawer-meta {
    font-size: 0.78rem;
    color: #6B7280;
    margin-top: 3px;
}

.cart-drawer-remove {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.cart-drawer-remove:hover {
    color: #EF4444;
}

.cart-drawer-qty {
    display: inline-flex;
    align-items: center;
    background: #F3F4F6;
    border-radius: 30px;
    padding: 3px 8px;
    gap: 10px;
}

.cart-drawer-qty button {
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.85rem;
    color: #111827;
    cursor: pointer;
    padding: 0 4px;
}

.cart-drawer-qty button:hover {
    color: var(--gold-dark);
}

.cart-drawer-qty span {
    font-weight: 800;
    font-size: 0.85rem;
    color: #111827;
}

.cart-drawer-price {
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--gold-dark);
}

/* Cart Footer */
.cart-footer {
    padding: 22px 25px;
    background: #ffffff;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.04);
}

.cart-coupon {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.cart-coupon input {
    flex: 1;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.cart-coupon input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.cart-coupon button {
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-coupon button:hover {
    background: var(--gold);
    color: #000000;
}

.cart-totals {
    margin-bottom: 15px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.cart-total-row.grand-total {
    border-top: 2px solid #111827;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    color: var(--black);
}

.cart-total-row.grand-total span:last-child {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.35);
    transition: all 0.3s ease;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cart-checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.cart-checkout-btn:hover::before {
    left: 100%;
}

.cart-checkout-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(212, 168, 67, 0.5);
    color: #000000;
}

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.product-modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.85) translateY(40px);
    transition: transform var(--transition-spring);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

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

.product-modal-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
    transition: all var(--transition-fast);
}

.product-modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.product-modal-body {
    padding: 25px;
}

.product-modal-body h3 {
    margin-bottom: 10px;
}

.product-modal-body .product-modal-price {
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.product-modal-body .product-modal-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Variants Selection */
.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-weight: var(--fw-semibold);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-btn {
    padding: 8px 20px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-full);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
}

.option-btn.active,
.option-btn:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

/* Addons */
.addon-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.addon-item:hover {
    border-color: var(--gold);
}

.addon-item.selected {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.05);
}

.addon-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 0 !important;
}

.addon-price {
    font-weight: var(--fw-semibold);
    color: var(--gold-dark);
    font-size: 0.9rem;
}

.special-instructions textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-sm);
    resize: vertical;
    min-height: 80px;
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
}

.special-instructions textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

/* Modal Footer */
.product-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-top: 1px solid var(--gray-lighter);
    background: var(--off-white);
    border-radius: 0 0 20px 20px;
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-qty-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--gray-lighter);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: var(--fw-bold);
    transition: all var(--transition-fast);
}

.modal-qty-btn:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.modal-qty-value {
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    min-width: 30px;
    text-align: center;
}

.modal-add-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.modal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

/* ============================================================
   MENU PAGE — Cheezious Style
   ============================================================ */
.menu-page {
    margin-top: 76px;
    min-height: 100vh;
}

.menu-hero {
    background: linear-gradient(135deg, var(--black), var(--charcoal));
    padding: 60px 0 40px;
    text-align: center;
}

.menu-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.menu-hero p {
    color: var(--gray);
}

/* Category Tabs */
.category-tabs {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 76px;
    z-index: var(--z-sticky);
    border-bottom: 1px solid var(--gray-lighter);
    box-shadow: var(--shadow-sm);
}

.category-tabs-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 20px;
}

.category-tabs-inner::-webkit-scrollbar {
    display: none;
}

.category-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: var(--fw-medium);
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--off-white);
    color: var(--gray-dark);
    border: 1px solid transparent;
}

.category-tab:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.category-tab.active {
    background: var(--gold);
    color: var(--black);
    font-weight: var(--fw-semibold);
}

.menu-content {
    padding: 40px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ============================================================
   AUTH PAGES — Premium Split Layout
   ============================================================ */
.auth-page {
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #080808, #111111, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    animation: floatBubble 15s ease-in-out infinite;
}

.auth-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    animation: floatBubble 20s ease-in-out infinite reverse;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 30px); }
}

.auth-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 45px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 60px rgba(212, 168, 67, 0.05);
    position: relative;
    z-index: 1;
}

.auth-card .auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-card .auth-header .logo-text {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    margin-bottom: 8px;
    display: block;
}

.auth-card .auth-header .logo-text span {
    color: var(--gold);
}

.auth-card .auth-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: var(--fw-medium);
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.form-control-custom {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background: #FAFAFA;
}

.form-control-custom:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.08);
}

.form-control-custom.error {
    border-color: var(--danger);
}

.form-error {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 5px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.auth-links a {
    color: var(--gold);
    font-weight: var(--fw-semibold);
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-page {
    margin-top: 76px;
    padding: 40px 0 80px;
    background: var(--off-white);
    min-height: calc(100vh - 76px);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.checkout-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.checkout-card h4 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card h4 i {
    color: var(--gold);
}

/* ============================================================
   ORDER TRACKING — Animated Timeline
   ============================================================ */
.tracking-page {
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    padding: 60px 0;
    background: var(--off-white);
}

.tracking-form {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.tracking-input-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.tracking-input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.tracking-input-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.08);
}

.tracking-result {
    max-width: 700px;
    margin: 0 auto;
}

.tracking-timeline {
    position: relative;
    padding: 20px 0;
}

.tracking-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

.tracking-step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 48px;
    bottom: -20px;
    width: 2px;
    background: #E5E7EB;
    transition: background 0.5s ease;
}

.tracking-step:last-child::before {
    display: none;
}

.tracking-step.completed::before {
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}

.tracking-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    transition: all var(--transition-normal);
    font-size: 1.1rem;
}

.tracking-step.completed .tracking-step-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.tracking-step.active .tracking-step-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 0 0 6px rgba(212, 168, 67, 0.15);
    animation: trackingPulse 2s ease-in-out infinite;
}

@keyframes trackingPulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(212, 168, 67, 0.15); }
    50% { box-shadow: 0 0 0 12px rgba(212, 168, 67, 0.05); }
}

.tracking-step-info h5 {
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
}

.tracking-step-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================================
   STORE LOCATOR
   ============================================================ */
.locator-page {
    margin-top: 76px;
    min-height: calc(100vh - 76px);
}

.locator-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: calc(100vh - 76px);
}

.locator-sidebar {
    padding: 30px;
    overflow-y: auto;
    background: var(--white);
    border-right: 1px solid #E5E7EB;
}

.locator-card {
    padding: 20px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.locator-card:hover,
.locator-card.active {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.04);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.1);
}

.locator-card h5 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.locator-card h5 i {
    color: var(--gold);
}

.locator-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.locator-map {
    width: 100%;
    height: 100%;
}

.locator-map #map {
    width: 100%;
    height: 100%;
}

/* ============================================================
   STATIC PAGES — Premium Typography
   ============================================================ */
.static-page {
    margin-top: 76px;
    padding: 60px 0;
    min-height: calc(100vh - 76px);
}

.static-page .page-hero {
    background: linear-gradient(135deg, #080808, #151515);
    padding: 80px 0;
    text-align: center;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.static-page .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.static-page .page-hero h1 {
    color: var(--white);
    position: relative;
}

.static-page .page-hero p {
    color: var(--gray);
    position: relative;
}

.static-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.static-content h2,
.static-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.static-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 40px 0;
}

.contact-info-card {
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-info-item h5 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* ============================================================
   PROFILE PAGE — Premium Layout
   ============================================================ */
.profile-page {
    margin-top: 76px;
    padding: 40px 0 80px;
    background: var(--off-white);
    min-height: calc(100vh - 76px);
}

.profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.profile-sidebar {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E5E7EB;
    height: fit-content;
}

.profile-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--fw-bold);
    color: var(--black);
    margin: 0 auto 15px;
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.3);
    position: relative;
}

.profile-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.3);
    animation: profileRing 3s ease-in-out infinite;
}

@keyframes profileRing {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.profile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--gray-dark);
    font-weight: var(--fw-medium);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    margin-bottom: 4px;
    position: relative;
}

.profile-nav a:hover,
.profile-nav a.active {
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold-dark);
}

.profile-nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--gold);
    border-radius: 2px;
}

.profile-nav a i {
    width: 20px;
    text-align: center;
}

.profile-content {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E5E7EB;
}

/* ============================================================
   POPUP MODAL
   ============================================================ */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    z-index: var(--z-popup);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.promo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    background: linear-gradient(135deg, #151515, #0a0a0a);
    border-radius: 24px;
    padding: 45px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 168, 67, 0.3);
    transform: scale(0.85);
    transition: transform var(--transition-spring);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(212, 168, 67, 0.1);
}

.promo-popup-overlay.active .promo-popup {
    transform: scale(1);
}

.promo-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.promo-popup-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.promo-popup h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.promo-popup p {
    color: var(--gray-light);
    margin-bottom: 25px;
}

.promo-popup .coupon-display {
    background: rgba(212, 168, 67, 0.08);
    border: 2px dashed rgba(212, 168, 67, 0.4);
    padding: 14px 30px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.promo-popup .coupon-display code {
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    color: var(--gold);
    letter-spacing: 3px;
}

/* ============================================================
   TOAST NOTIFICATIONS — Polished
   ============================================================ */
.toast-container {
    position: fixed;
    top: 85px;
    right: 20px;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--white);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(120%);
    animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-left: 4px solid var(--gold);
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.info { border-left-color: var(--info); }

.toast.removing {
    animation: slideOutRight 0.4s ease forwards;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast.info .toast-icon { color: var(--info); }

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    color: #111827;
}

/* ============================================================
   LOADING — Premium Spinner
   ============================================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(212, 168, 67, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.skeleton {
    background: linear-gradient(90deg, #E5E7EB 25%, #f0f0f0 50%, #E5E7EB 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ============================================================
   FLY TO CART ANIMATION
   ============================================================ */
.fly-to-cart {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transition: none;
}

.fly-to-cart.flying {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    opacity: 0.8;
    object-fit: cover;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

@keyframes slideOutRight {
    from { transform: translateX(0); }
    to { transform: translateX(120%); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(212, 168, 67, 0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes cartBump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================================
   SUBSCRIBE TO OFFERS SECTION — Glassmorphism
   ============================================================ */
.subscribe-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0C0C0C 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.subscribe-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.subscribe-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 28px;
    padding: 55px 45px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212, 168, 67, 0.05);
    position: relative;
}

.subscribe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.subscribe-card h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.subscribe-card p {
    color: #9CA3AF;
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.subscribe-form {
    max-width: 560px;
    margin: 0 auto 30px;
}

.subscribe-input-group {
    display: flex;
    align-items: center;
    background: rgba(8, 8, 8, 0.8);
    border: 2px solid rgba(212, 168, 67, 0.25);
    border-radius: 50px;
    padding: 6px 6px 6px 22px;
    transition: all 0.3s ease;
}

.subscribe-input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 168, 67, 0.2);
}

.subscribe-input-group i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 12px;
}

.subscribe-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
}

.subscribe-input-group input::placeholder {
    color: #6B7280;
}

.subscribe-input-group button {
    border-radius: 40px;
}

.subscribe-perks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #D1D5DB;
}

/* ============================================================
   CHEEZIOUS STYLE MENU PAGE (SS 2)
   ============================================================ */
.menu-category-section {
    scroll-margin-top: 140px;
    margin-bottom: 50px;
}

.menu-category-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.menu-category-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gold-light);
    animation: shimmerLine 2s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.product-card-cheezious {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
    border: 1px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.product-card-cheezious:hover {
    border-color: rgba(212, 168, 67, 0.4);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.12);
    transform: translateY(-5px);
}

.wishlist-heart-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,0.06);
    color: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wishlist-heart-btn:hover {
    background: #FEE2E2;
    transform: scale(1.15);
}

.cheezious-img-wrap {
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 14px;
    background: #F3F4F6;
    margin-bottom: 14px;
    cursor: pointer;
    position: relative;
}

.cheezious-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-cheezious:hover .cheezious-img-wrap::after {
    opacity: 1;
}

.cheezious-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-cheezious:hover .cheezious-img-wrap img {
    transform: scale(1.08);
}

.cheezious-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cheezious-desc {
    font-size: 0.82rem;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.cheezious-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.cheezious-price-row .price-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-dark);
}

.badge-starting-price {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.btn-add-cheezious {
    width: 100%;
    background: #ffffff;
    border: 2px solid #E5E7EB;
    color: #111827;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 11px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-add-cheezious::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-add-cheezious:hover::before {
    left: 100%;
}

.btn-add-cheezious:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.category-tabs-sticky {
    position: sticky;
    top: 76px;
    z-index: 90;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    padding: 16px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.category-pills-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 2px;
}

.category-pills-wrap::-webkit-scrollbar {
    display: none;
}

.category-pill-btn {
    white-space: nowrap;
    padding: 10px 24px;
    border-radius: 12px;
    background: #F3F4F6;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.category-pill-btn:hover {
    background: #E5E7EB;
    color: #111827;
}

.category-pill-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.35);
    border-color: transparent;
}

/* ============================================================
   STATS COUNTER (Homepage)
   ============================================================ */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0C0C0C, #111111);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 168, 67, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .locator-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .locator-sidebar {
        max-height: 300px;
    }
    .locator-map {
        height: 400px;
    }
    .hero-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 15px;
        height: 64px;
    }
    .header-btn .btn-text {
        display: none;
    }
    .branch-selector-header {
        display: none;
    }
    .hero-section {
        height: 75vh;
        min-height: 420px;
        margin-top: 64px;
    }
    .hero-content h1 {
        font-size: 1.9rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .category-card {
        padding: 20px 15px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .sidebar-cart {
        width: 100%;
        right: -100%;
    }
    .hamburger-menu {
        width: 280px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .reviews-carousel .review-card {
        min-width: 280px;
    }
    .product-modal {
        max-width: 95%;
    }
    .product-modal-image {
        height: 200px;
    }
    .tracking-input-group {
        flex-direction: column;
    }
    .products-slider .product-card {
        min-width: 250px;
    }
    .contact-info-card {
        padding: 25px;
    }
    .auth-card {
        padding: 30px 25px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .menu-page, .auth-page, .checkout-page, .tracking-page, .profile-page, .static-page, .locator-page {
        margin-top: 64px;
    }
    .category-tabs-sticky {
        top: 64px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn-primary-gold,
    .hero-buttons .btn-outline-gold {
        width: 100%;
        justify-content: center;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .category-card .cat-image-wrapper {
        width: 100px;
        height: 100px;
    }
    .auth-card {
        padding: 25px 20px;
    }
    .product-modal-footer {
        flex-direction: column;
        gap: 15px;
    }
    .modal-add-btn {
        width: 100%;
        justify-content: center;
    }
    .subscribe-card {
        padding: 35px 20px;
    }
    .subscribe-card h2 {
        font-size: 1.7rem;
    }
}

/* ============================================================
   Bootstrap Overrides
   ============================================================ */
.badge.bg-purple {
    background: var(--purple) !important;
}

.btn-primary {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--black) !important;
}

.btn-primary:hover {
    background: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 168, 67, 0.15);
}

/* Utility Classes */
.text-gold { color: var(--gold) !important; }
.bg-gold { background: var(--gold) !important; }
.bg-charcoal { background: var(--charcoal) !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }

/* ============================================================
   LEAFLET MAP Z-INDEX OVERRIDE
   ============================================================ */
.leaflet-container {
    z-index: 1 !important;
}
.leaflet-pane {
    z-index: 5 !important;
}
.leaflet-top,
.leaflet-bottom {
    z-index: 10 !important;
}
.leaflet-control {
    z-index: 10 !important;
}
.leaflet-popup {
    z-index: 15 !important;
}

/* ============================================================
   Payment Option Selector
   ============================================================ */
".payment-option:has(input:checked) {
    border-color: var(--gold) !important;
    background: rgba(212, 168, 67, 0.05);
}

/* ============================================================
   OCTAGON SIGNATURE GEOMETRIC HERO & ANIMATIONS
   ============================================================ */
.oct-hero-section {
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(212, 168, 67, 0.12) 0%, rgba(15, 23, 42, 0.98) 60%), #080C14;
    min-height: 90vh;
    padding: 130px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 168, 67, 0.25);
}

.oct-hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(212, 168, 67, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.oct-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.35);
    border-radius: 50px;
    color: #D4A843;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.15);
    backdrop-filter: blur(10px);
}

.text-gold-animated {
    background: linear-gradient(135deg, #FFF 0%, #D4A843 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.oct-live-meter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #E2E8F0;
    font-size: 0.9rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.oct-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.oct-rotating-ring {
    position: absolute;
    width: 440px;
    height: 440px;
    border: 2px dashed rgba(212, 168, 67, 0.4);
    border-radius: 50%;
    animation: octRotateRing 25s linear infinite;
    pointer-events: none;
}

.oct-glow-shape {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.25) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.oct-hero-img-wrap {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(212, 168, 67, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 168, 67, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.oct-hero-img-wrap:hover {
    transform: scale(1.03) rotate(1deg);
}

.oct-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oct-floating-badge {
    position: absolute;
    padding: 10px 18px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: 16px;
    color: #FFF;
    font-weight: 700;
    font-size: 0.85rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 4;
    animation: octBadgeFloat 4s ease-in-out infinite;
}

.oct-badge-top-left {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.oct-badge-top-right {
    top: 40px;
    right: -25px;
    animation-delay: 1.5s;
}

.oct-badge-bottom-right {
    bottom: 30px;
    right: -15px;
    animation-delay: 2.5s;
}

@keyframes octRotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes octBadgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
"
