/**
 * RytChef Fusion Theme - Main Styles
 * Grab&Go-inspired design with Grab.com colors
 * 
 * @package RytChef_Fusion
 * @version 1.0.0
 */

/* Import Grab Colors */
@import url('grab-colors.css');

/* ===================================================================
   RESET & BASE
   =================================================================== */

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

:root {
    /* ============================================
       TYPOGRAPHY
       ============================================ */

    /* Font Families */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-primary: var(--font-body);

    /* Premium Type Scale (8px base - International Standard) */
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 2.25rem;
    /* 36px */
    --font-size-5xl: 3rem;
    /* 48px */
    --font-size-6xl: 3.75rem;
    /* 60px */
    --font-size-7xl: 4.5rem;
    /* 72px */

    /* Heading Sizes (Responsive with clamp) */
    --font-size-h1: clamp(2.25rem, 5vw, 3.75rem);
    /* 36px-60px */
    --font-size-h2: clamp(1.875rem, 4vw, 3rem);
    /* 30px-48px */
    --font-size-h3: clamp(1.5rem, 3vw, 2.25rem);
    /* 24px-36px */
    --font-size-h4: clamp(1.25rem, 2.5vw, 1.875rem);
    /* 20px-30px */
    --font-size-h5: clamp(1.125rem, 2vw, 1.5rem);
    /* 18px-24px */
    --font-size-h6: clamp(1rem, 1.5vw, 1.25rem);
    /* 16px-20px */

    /* Letter Spacing (Premium Feel) */
    --letter-spacing-tighter: -0.05em;
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.025em;
    --letter-spacing-wider: 0.05em;
    --letter-spacing-widest: 0.1em;

    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    /* NEW: For subtle emphasis */
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-heading: 700;
    /* Reduced from 800 for modern look */

    /* Line Heights (Premium Scale) */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Legacy line-heights (for compatibility) */
    --line-height-tight: var(--leading-tight);
    --line-height-normal: var(--leading-normal);
    --line-height-relaxed: var(--leading-relaxed);

    /* ============================================
       PREMIUM SPACING SCALE (4px base - International Standard)
       ============================================ */

    --space-0: 0;
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* Section Spacing (Responsive) */
    --section-padding-y: clamp(3rem, 8vw, 6rem);
    --section-padding-x: clamp(1rem, 4vw, 2rem);

    /* Component Spacing */
    --gap-sm: var(--space-2);
    --gap-md: var(--space-4);
    --gap-lg: var(--space-6);
    --gap-xl: var(--space-8);

    /* Legacy spacing (for compatibility) */
    --spacing-1: var(--space-1);
    --spacing-2: var(--space-2);
    --spacing-3: var(--space-3);
    --spacing-4: var(--space-4);
    --spacing-5: var(--space-5);
    --spacing-6: var(--space-6);
    --spacing-8: var(--space-8);
    --spacing-10: var(--space-10);
    --spacing-12: var(--space-12);
    --spacing-16: var(--space-16);
    --spacing-20: var(--space-20);

    /* ============================================
       BORDER RADIUS (8px, 16px, 32px, 50px)
       ============================================ */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 50px;

    /* Container */
    --container-max: 1200px;
    --container-padding: var(--spacing-4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Breakpoints */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;

    /* Z-index */
    --z-base: 1;
    --z-sticky: 100;
    --z-dropdown: 200;
    --z-modal: 300;

    /* ============================================
       SHADOW LEVELS (4 levels for cards)
       ============================================ */

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

html {
    font-size: var(--font-size-base);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--grab-go-text, #1A1A1A);
    background-color: var(--grab-go-bg, #FFFFFF);

    /* Premium Typography Rendering */
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-heading);
    line-height: var(--line-height-tight);
    color: var(--grab-go-text, #1A1A1A);
    margin-bottom: var(--spacing-4);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

p {
    font-family: var(--font-body);
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-relaxed);
}

a {
    color: var(--grab-primary, #FFA000);
    text-decoration: none;
    position: relative;
    transition: color 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Smooth underline animation - No layout shift */
a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

a:hover {
    color: var(--grab-primary-dark, #FF8C00);
}

a:hover::after {
    width: 100%;
}

/* ===================================================================
   ACCESSIBILITY - FOCUS INDICATORS (WCAG 2.1 SC 2.4.7)
   =================================================================== */

/* Global focus indicator for keyboard navigation */
*:focus {
    outline: none;
    /* Remove default */
}

*:focus-visible {
    outline: 3px solid var(--grab-primary, #FFA000);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Button focus states */
button:focus-visible,
.btn:focus-visible,
.button:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible {
    outline: 3px solid var(--grab-primary, #FFA000);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(255, 160, 0, 0.2);
}

/* Form input focus states */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--grab-primary, #FFA000);
    outline-offset: 2px;
    border-color: var(--grab-primary, #FFA000);
}

/* Link focus - Use underline instead of box */
a:focus-visible {
    outline: 2px solid var(--grab-primary, #FFA000);
    outline-offset: 4px;
}

/* Skip link focus (for screen readers) */
.skip-link:focus {
    clip: auto;
    height: auto;
    width: auto;
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--grab-primary, #FFA000);
    color: #000;
    padding: 10px 20px;
    z-index: 100000;
    border-radius: 4px;
    font-weight: 600;
}

/* ===================================================================
   LAYOUT
   =================================================================== */

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
    padding-top: 100px;
    /* Space for pill navbar (20px top + ~60px navbar + 20px spacing) */
    min-height: calc(100vh - 100px);
}

#main {
    padding-top: 100px;
    /* Space for pill navbar */
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-20) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-12) 0;
    }
}

/* ===================================================================
   HEADER & NAVIGATION - BOLD 3D PILL (Option 4)
   =================================================================== */

/* ============================================
   BOLD 3D PILL-SHAPED NAVBAR
   Maximum depth, Grab green gradients, dramatic effects
   ============================================ */

.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;

    /* Bold 3D gradient background */
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);

    /* Pill shape */
    border-radius: 50px;

    /* Maximum 3D depth with multiple shadow layers */
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 3px 0 rgba(255, 255, 255, 0.12),
        inset 0 -3px 0 rgba(0, 0, 0, 0.5);

    /* Subtle borders for depth */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

/* Bottom glow accent line */
.site-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 177, 79, 0.6),
            transparent);
    border-radius: 50px;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* ============================================
   LOGO & BRAND NAME - UNIFIED COMPONENT
   White background circle for logo visibility
   ============================================ */

/* Brand Link Container - Unified Component */
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    /* Remove any underlines */
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

/* Remove any ::after pseudo-elements (underlines) */
.brand-link::after {
    display: none !important;
}

/* Unified hover effect for entire component */
.brand-link:hover {
    background: linear-gradient(135deg,
            rgba(255, 209, 0, 0.15),
            rgba(255, 199, 0, 0.2));
    box-shadow:
        0 4px 15px rgba(255, 209, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Logo Container with White Background Circle */
.brand-link .ryt-logo-link,
.brand-link .ryt-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;

    /* White circular background for visibility */
    background: white;
    border-radius: 50%;
    padding: 8px;
    width: 48px;
    height: 48px;

    transition: all 0.3s ease;
}

/* Logo rotation on hover - synchronized with brand name */
.brand-link:hover .ryt-logo-link,
.brand-link:hover .ryt-logo-icon {
    transform: rotate(-5deg) scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 209, 0, 0.5);
}

/* Logo image/SVG inside white circle */
.brand-link img,
.brand-link svg {
    max-height: 32px;
    max-width: 32px;
    width: auto;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Enhanced glow on hover */
.brand-link:hover img,
.brand-link:hover svg {
    filter: drop-shadow(0 4px 12px rgba(255, 209, 0, 0.6));
}

/* Brand Name Typography */
.brand-name {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none !important;
    /* No underlines */
}

/* Brand name gradient - synchronized with logo rotation */
.brand-link:hover .brand-name {
    background: linear-gradient(135deg, #FFD100, #FFC700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 209, 0, 0.5));
}

.brand-name .logo-dot {
    color: #FFD100;
    font-weight: 900;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* ============================================
   NAVIGATION MENU - BOLD 3D BUTTONS
   ============================================ */

.main-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
    margin: 0;
}

.nav-menu li a {
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    color: #d0d0d0;
    padding: 12px 20px;
    position: relative;
    display: inline-block;
    text-decoration: none !important;
    /* Remove underlines */
    white-space: nowrap;
    border-radius: 25px;

    /* Bold 3D button effect */
    background: linear-gradient(180deg, #2a2a2a, #1f1f1f);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);

    transition: all 0.3s ease;
}

/* Remove any ::after pseudo-elements (underlines) */
.nav-menu li a::after {
    display: none !important;
}

/* Grab Green Gradient Hover */
.nav-menu li a:hover {
    background: linear-gradient(135deg, #00B14F, #00D95F);
    color: white;
    transform: translateY(-4px);
    box-shadow:
        0 10px 30px rgba(0, 177, 79, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

/* Active/Current Page */
.nav-menu li.current-menu-item>a,
.nav-menu li.current-page-item>a {
    background: linear-gradient(135deg, #00B14F, #00D95F);
    color: white;
    box-shadow:
        0 6px 20px rgba(0, 177, 79, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

/* Press effect on click */
.nav-menu li a:active {
    transform: translateY(-2px);
    box-shadow:
        0 4px 15px rgba(0, 177, 79, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */

.menu-toggle {
    display: none;
    background: linear-gradient(135deg, #00B14F, #00D95F);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    box-shadow:
        0 4px 15px rgba(0, 177, 79, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 177, 79, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.menu-toggle:focus {
    outline: 2px solid #00B14F;
    outline-offset: 2px;
}

/* Content padding to account for fixed header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-12, 3rem);
}

.section-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: var(--font-weight-heading, 800);
    font-size: 3.5rem;
    /* Premium menu size */
    margin-bottom: var(--spacing-4, 1rem);
    color: var(--color-text, #1A1A1A);
    line-height: 1.1;
}

.section-title .highlight {
    color: var(--grab-primary, #FFD100);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -5px;
    right: -5px;
    height: 20%;
    background: linear-gradient(90deg, rgba(255, 209, 0, 0.3), rgba(255, 160, 0, 0.3));
    transform: rotate(-2deg);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.1rem;
    /* Match preview */
    color: #666;
    /* Match preview */
    font-family: var(--font-body, 'Poppins', sans-serif);
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 16px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--grab-go-border-light, #F0F0F0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .main-navigation.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        align-items: stretch;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--radius-sm, 8px);
        font-size: 1.5rem;
        /* Larger for mobile - RytChef spec */
        font-weight: 700;
        /* Bold for mobile - RytChef spec */
    }

    /* Mobile: Show underline effect */
    .nav-menu li a::after {
        display: block;
        /* Show underline on mobile */
        bottom: 8px;
        /* Adjust position for mobile padding */
    }

    .nav-menu li a:hover {
        background: rgba(0, 177, 79, 0.1);
        color: #00B14F;
        /* Grab Green on hover */
    }

    .nav-menu li a:hover::after {
        width: calc(100% - 32px);
        /* Account for padding */
    }

    /* Mobile logo typography - RytChef spec */
    .logo .site-title {
        font-size: 1.3rem;
        /* 20.8px on mobile */
    }

    .site-main {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {

    /* Small mobile: Even smaller logo */
    .logo .site-title {
        font-size: 1.2rem;
        /* 19.2px on small mobile */
    }

    .nav-menu li a {
        font-size: 1.3rem;
        /* 20.8px on small mobile */
    }
}

/* ===================================================================
   HERO SECTION (Grab&Go Style with Gradients)
   =================================================================== */

.hero-fusion {
    min-height: 100vh;
    background: var(--gradient-hero, linear-gradient(135deg, #FFFDE7 0%, #FFFFFF 100%));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    /* Header height + spacing */
    padding-bottom: var(--spacing-16, 4rem);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: var(--spacing-8);
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: var(--font-weight-heading, 800);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    /* Match preview: 4.5rem */
    margin-bottom: var(--spacing-4, 1rem);
    color: var(--color-text, #1A1A1A);
    line-height: 1.1;
}

/* Hero Title Highlight Effect on "Ryt" */
.hero-title .highlight {
    color: var(--grab-primary, #FFD100);
    position: relative;
    z-index: 1;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -5px;
    width: 105%;
    height: 30%;
    background: linear-gradient(90deg, rgba(255, 209, 0, 0.2), rgba(255, 160, 0, 0.2));
    z-index: -1;
    transform: rotate(-2deg);
}

.hero-subtitle {
    font-size: 1.1rem;
    /* Match preview */
    margin-bottom: var(--spacing-8, 2rem);
    color: #666;
    font-family: var(--font-body, 'Poppins', sans-serif);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
    justify-content: center;
}

/* ===================================================================
   MODULAR CARD SYSTEM (4 Shadow Levels)
   =================================================================== */

.card-fusion {
    background: var(--grab-go-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

/* Card shadow levels */
.card-fusion--sm {
    box-shadow: var(--shadow-sm);
}

.card-fusion--md {
    box-shadow: var(--shadow-md);
}

.card-fusion--lg {
    box-shadow: var(--shadow-lg);
}

.card-fusion--xl {
    box-shadow: var(--shadow-xl);
}

/* Card hover lift animation - Match preview */
.card-fusion:hover,
.card-fusion--hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--grab-primary-light, #FFD100);
}

/* Subtle hover for less emphasis */
.card-fusion--subtle:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Tilt effect for premium cards */
.card-fusion--tilt {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-fusion--tilt:hover {
    transform: translateY(-8px) rotateY(2deg) rotateX(-2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-4);
}

.card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-heading);
    margin-bottom: var(--spacing-2);
}

.card-text {
    font-family: var(--font-body);
    color: var(--grab-go-text-light);
    font-size: var(--font-size-sm);
}

/* ===================================================================
   BADGE SYSTEM (Primary, Outline, Pill-shaped)
   =================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-2);
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

/* Badge Variants with New Color Scheme */
.badge--primary {
    background: var(--primary-gradient, linear-gradient(135deg, #FFD100 0%, #FFA000 100%));
    color: var(--color-secondary, #000000);
    /* Black text on yellow */
}

.badge--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Badge - Orange (Popular, Urgency) */
.badge--secondary {
    background: var(--color-secondary, #FF6B35);
    color: var(--grab-white);
}

/* Badge - Yellow (New, Highlights) */
.badge--highlight {
    background: var(--color-highlight, #FFD93D);
    color: #1A1A1A;
}

/* Badge - Green (Vegan, Health) */
.badge--vegan {
    background: var(--color-primary, #00B14F);
    color: var(--grab-white);
}

/* Badge - Teal (Premium, Trust) */
.badge--premium {
    background: var(--color-premium, #0D7377);
    color: var(--grab-white);
}

/* Badge - Terracotta (Traditional) */
.badge--accent {
    background: var(--color-accent, #D67A46);
    color: var(--grab-white);
}

/* Outline badge */
.badge--outline {
    background: transparent;
    color: var(--grab-primary);
    border: 2px solid var(--grab-primary);
}

.badge--outline:hover {
    background: var(--grab-primary);
    color: var(--grab-white);
}

/* Pill-shaped badge */
.badge--pill {
    border-radius: var(--radius-pill);
}

/* ===================================================================
   GRID SYSTEM (2, 3, 4 columns + auto-fit)
   =================================================================== */

.grid {
    display: grid;
    gap: var(--spacing-6);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-6);
    padding: var(--spacing-8) 0;
}

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

@media (max-width: 768px) {

    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-4);
    }
}

/* ===================================================================
   BUTTON VARIANTS (Primary, Secondary, Outline)
   =================================================================== */

.btn-fusion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    /* Match preview */
    border-radius: var(--radius-pill, 50px);
    /* Pill shape */
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 700;
    /* Match preview */
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base, 0.3s ease);
    text-decoration: none;
}

/* Primary Button - Yellow Gradient (Main CTAs) */
.btn-primary {
    background: var(--primary-gradient, linear-gradient(135deg, #FFD100 0%, #FFA000 100%));
    color: var(--color-secondary, #000000);
    /* Black text on yellow */
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 209, 0, 0.4);
    filter: brightness(1.05);
}

/* Secondary Button - Black (Food CTAs) */
.btn-secondary {
    background-color: var(--color-secondary, #000000);
    color: var(--grab-white, #FFFFFF);
    border: none;
}

.btn-secondary:hover {
    background: var(--primary-gradient, linear-gradient(135deg, #FFD100 0%, #FFA000 100%));
    color: var(--color-secondary, #000000);
    transform: translateY(-2px);
}

/* Accent Button - Terracotta (Traditional Food) */
.btn-accent {
    background: var(--gradient-warm);
    color: var(--grab-white);
}

.btn-accent:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(214, 122, 70, 0.3);
}

/* Premium Button - Green to Teal (Premium Items) */
.btn-premium {
    background: var(--gradient-premium);
    color: var(--grab-white);
}

.btn-premium:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(13, 115, 119, 0.3);
}

/* Outline button */
.btn-outline {
    background-color: transparent;
    border-color: var(--color-secondary, #000000);
    color: var(--color-secondary, #000000);
}

.btn-outline:hover {
    background-color: var(--color-secondary, #000000);
    color: var(--grab-white, #FFFFFF);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    /* Match preview */
    font-size: 1.1rem;
}

/* ===================================================================
   BUTTON STATES (Active, Disabled, Loading) - International Standards
   =================================================================== */

/* Active/Pressed state - All buttons */
.btn-fusion:active,
.btn-primary:active,
.btn-secondary:active,
.btn-accent:active,
.btn-premium:active,
.btn-outline:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

/* Disabled state - All buttons */
.btn-fusion:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-accent:disabled,
.btn-premium:disabled,
.btn-outline:disabled,
.btn-fusion.disabled,
.btn-primary.disabled,
.btn-secondary.disabled,
.btn-accent.disabled,
.btn-premium.disabled,
.btn-outline.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(30%);
}

/* Loading state */
.btn-fusion.loading,
.btn-primary.loading,
.btn-secondary.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-fusion.loading::after,
.btn-primary.loading::after,
.btn-secondary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: button-loading-spinner 0.6s linear infinite;
}

@keyframes button-loading-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Remove underline animation from buttons */
.btn-fusion::after,
.btn-primary::after,
.btn-secondary::after,
.btn-accent::after,
.btn-premium::after,
.btn-outline::after {
    display: none;
}

/* ===================================================================
   FORMS
   =================================================================== */

.input-fusion {
    width: 100%;
    padding: var(--spacing-4);
    border: 1px solid var(--grab-go-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    background: var(--grab-go-card);
}

.input-fusion:focus {
    outline: none;
    border-color: var(--grab-primary);
    box-shadow: 0 0 0 3px var(--grab-go-focus);
}

/* ===================================================================
   TRUST SECTION (Modular Cards with Hover)
   =================================================================== */

/* ===================================================================
   PREMIUM TRUST SECTION
   =================================================================== */

.premium-trust-section,
.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.premium-trust-section::before,
.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10B981 0%, #059669 50%, #10B981 100%);
    background-size: 200% 100%;
    animation: trustGradientShift 3s ease infinite;
}

@keyframes trustGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.premium-trust-card,
.trust-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.premium-trust-card::before,
.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.premium-trust-card::after,
.trust-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-trust-card:hover,
.trust-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
    border-color: #10B981;
}

.premium-trust-card:hover::before,
.trust-card:hover::before {
    transform: scaleX(1);
}

.premium-trust-card:hover::after,
.trust-card:hover::after {
    opacity: 1;
}

.trust-icon {
    font-size: 4.5rem;
    margin-bottom: 24px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.premium-trust-card:hover .trust-icon,
.trust-card:hover .trust-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(16, 185, 129, 0.3));
}

.trust-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.trust-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ===================================================================
   PREMIUM FOLLOW US SECTION (Social Icons)
   =================================================================== */

.premium-follow-us-section,
.follow-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%) !important;
    position: relative;
    overflow: hidden;
}

.premium-follow-us-section::before,
.follow-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FFD100 0%, #FFA000 50%, #FFD100 100%);
    background-size: 200% 100%;
    animation: followUsGradientShift 3s ease infinite;
    z-index: 1;
}

@keyframes followUsGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.premium-follow-us-section .section-header,
.follow-us-section .section-header {
    position: relative;
    z-index: 2;
}

.premium-follow-us-section .section-title,
.follow-us-section .section-title {
    color: #FFFFFF !important;
}

.premium-follow-us-section .section-subtitle,
.follow-us-section .section-subtitle {
    color: #B3B3B3 !important;
}

.premium-follow-us-section .section-badge,
.follow-us-section .section-badge {
    position: relative;
    z-index: 2;
}

.premium-follow-us-section .social-icons-grid,
.follow-us-section .social-icons-grid {
    position: relative;
    z-index: 2;
}

.section-badge-yellow {
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%) !important;
    color: #000000 !important;
}

.section-badge-green {
    background: #10B981 !important;
    color: #FFFFFF !important;
}

.social-icons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* KEEP THE ROUNDED POP HOVER ANIMATION (scale 1.15) */
.social-icon:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 12px 30px rgba(255, 209, 0, 0.4),
        0 0 20px rgba(255, 209, 0, 0.3);
    border-color: rgba(255, 209, 0, 0.5);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Platform-specific gradient hover colors */
.social-icon-facebook:hover {
    background: linear-gradient(135deg, #1877F2 0%, #0D5FCC 100%);
    border-color: #1877F2;
}

.social-icon-instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.social-icon-twitter:hover,
.social-icon-x:hover {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    border-color: #000000;
}

.social-icon-youtube:hover {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-color: #FF0000;
}

.social-icon-linkedin:hover {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    border-color: #0077B5;
}

/* Circle style icons */
.social-icons-circle .social-icon {
    border-radius: 50%;
}

/* Square style icons */
.social-icons-square .social-icon {
    border-radius: var(--radius-sm, 8px);
}

/* ===================================================================
   FOOTER COLUMNS
   =================================================================== */

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-6, 1.5rem);
    margin-bottom: var(--spacing-6, 1.5rem);
}

.footer-column {
    padding: var(--spacing-4, 1rem) 0;
}

.footer-column h4 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-3, 0.75rem);
    color: var(--grab-white);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: var(--spacing-2, 0.5rem);
}

.footer-column a {
    color: var(--grab-gray-300, #B3B3B3);
    text-decoration: none;
    transition: color var(--transition-base, 0.3s ease);
}

.footer-column a:hover {
    color: var(--grab-primary, #00B14F);
}

.footer-tagline {
    color: var(--grab-gray-300, #B3B3B3);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===================================================================
   FOOTER
   =================================================================== */

/* ============================================
   PREMIUM MODULAR FOOTER DESIGN
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
    color: var(--white, #FFFFFF);
    padding: 40px 0 20px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

/* Animated Yellow Gradient Accent Bar at Top */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD100 0%, #FFA000 50%, #FFD100 100%);
    background-size: 200% 100%;
    animation: footerGradientShift 3s ease infinite;
}

@keyframes footerGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Section - Brand + Social Icons */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Link - Unified Component */
.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none !important;
    padding: 12px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

/* Remove any underlines */
.footer-brand-link::after {
    display: none !important;
}

/* Unified hover effect */
.footer-brand-link:hover {
    background: linear-gradient(135deg,
            rgba(255, 209, 0, 0.15),
            rgba(255, 199, 0, 0.2));
    box-shadow:
        0 4px 15px rgba(255, 209, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer Logo Icon with White Background */
.footer-brand-link .ryt-logo-icon {
    background: white;
    border-radius: 50%;
    padding: 12px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Logo rotation on hover */
.footer-brand-link:hover .ryt-logo-icon {
    transform: rotate(-5deg) scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 209, 0, 0.5);
}

/* Logo image/SVG sizing */
.footer-brand-link .ryt-logo-icon img,
.footer-brand-link .ryt-logo-icon svg {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

/* Enhanced glow on hover */
.footer-brand-link:hover .ryt-logo-icon img,
.footer-brand-link:hover .ryt-logo-icon svg {
    filter: drop-shadow(0 4px 12px rgba(255, 209, 0, 0.6));
}

.footer-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--black, #000000);
    font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.footer-brand-info h3.footer-brand-name {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: var(--white, #FFFFFF);
    transition: all 0.3s ease;
}

/* Brand name gradient on hover */
.footer-brand-link:hover .footer-brand-name {
    background: linear-gradient(135deg, #FFD100, #FFC700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 209, 0, 0.5));
}

line-height: 1;
}

.footer-brand-info h3.footer-brand-name .logo-dot {
    color: var(--grab-primary, #FFD100);
    font-weight: 900;
}

.footer-brand-info .footer-tagline {
    font-size: 0.95rem;
    color: var(--grab-gray-300, #B3B3B3);
    font-style: italic;
    margin: 0;
}

/* Social Icons Horizontal */
.footer-social-horizontal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon-modern {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #FFFFFF);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-modern svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon-modern:hover {
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 209, 0, 0.4);
    border-color: transparent;
    color: var(--black, #000000);
}

.social-icon-modern:hover svg {
    fill: var(--black, #000000);
}

/* Main Content - Horizontal Cards */
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD100 0%, #FFA000 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.footer-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 209, 0, 0.15);
    border-color: rgba(255, 209, 0, 0.3);
}

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

.footer-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 209, 0, 0.2) 0%, rgba(255, 160, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-card:hover .footer-card-icon {
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    transform: scale(1.1) rotate(5deg);
    color: var(--black, #000000);
}

.footer-card h4 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white, #FFFFFF);
    letter-spacing: -0.5px;
}

.footer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--grab-gray-300, #B3B3B3);
    transition: all 0.2s ease;
}

.footer-card ul li a {
    color: var(--grab-gray-300, #B3B3B3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.footer-card ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD100 0%, #FFA000 100%);
    transition: width 0.3s ease;
}

.footer-card ul li:hover {
    color: var(--white, #FFFFFF);
    transform: translateX(4px);
}

.footer-card ul li:hover a {
    color: var(--grab-primary, #FFD100);
}

.footer-card ul li:hover a::after {
    width: 100%;
}

/* Business Hours Special Card */
.footer-hours-card {
    background: linear-gradient(135deg, rgba(255, 209, 0, 0.1) 0%, rgba(255, 160, 0, 0.05) 100%);
    border: 1px solid rgba(255, 209, 0, 0.2);
}

.footer-hours-card .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours-card .hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--white, #FFFFFF);
    font-size: 0.95rem;
}

.hours-time {
    color: var(--grab-primary, #FFD100);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Info with Icons */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 209, 0, 0.2) 0%, rgba(255, 160, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    color: var(--black, #000000);
}

.contact-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--grab-gray-300, #B3B3B3);
}

.contact-text a {
    color: var(--grab-gray-300, #B3B3B3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: var(--grab-primary, #FFD100);
}

/* Delivery Partners */
.delivery-description {
    color: var(--grab-gray-300, #B3B3B3);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.delivery-partners {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.delivery-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white, #FFFFFF);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body, 'Poppins', sans-serif);
}

.delivery-btn:hover {
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    color: var(--black, #000000);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 209, 0, 0.3);
    border-color: transparent;
}

/* Bottom Section - Copyright + Legal Links */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--grab-gray-300, #B3B3B3);
    font-family: var(--font-body, 'Poppins', sans-serif);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--grab-gray-300, #B3B3B3);
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    transition: color 0.2s ease;
    font-family: var(--font-body, 'Poppins', sans-serif);
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD100 0%, #FFA000 100%);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--grab-primary, #FFD100);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-top {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-social-horizontal {
        width: 100%;
        justify-content: flex-start;
    }
}

.footer-external-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-4, 1rem);
    margin-bottom: var(--spacing-4, 1rem);
    padding-top: var(--spacing-4, 1rem);
    border-top: 1px solid var(--grab-gray-800, #2D2D2D);
}

.footer-social-links h4,
.footer-delivery-links h4,
.footer-whatsapp-link h4,
.footer-google-maps-link h4 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-4, 1rem);
    color: var(--grab-white);
}

.footer-social-links .social-icons-grid {
    justify-content: flex-start;
}

.footer-social-links .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--grab-white);
}

.footer-social-links .social-icon:hover {
    background: var(--grab-primary, #00B14F);
    transform: translateY(-3px);
}

.footer-delivery-buttons-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2, 0.5rem);
}

.delivery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2, 0.5rem) var(--spacing-4, 1rem);
    border-radius: var(--radius-sm, 8px);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base, 0.3s ease);
}

.delivery-swiggy {
    background: #FC8019;
    color: var(--grab-white);
}

.delivery-zomato {
    background: #E23744;
    color: var(--grab-white);
}

.delivery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn,
.google-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2, 0.5rem);
    padding: var(--spacing-2, 0.5rem) var(--spacing-4, 1rem);
    background: rgba(255, 255, 255, 0.1);
    color: var(--grab-white);
    border-radius: var(--radius-sm, 8px);
    text-decoration: none;
    transition: all var(--transition-base, 0.3s ease);
}

.whatsapp-btn:hover {
    background: #25D366;
    transform: translateY(-2px);
}

.google-maps-btn:hover {
    background: #4285F4;
    transform: translateY(-2px);
}

/* Compact Footer Bottom */
.site-info {
    text-align: center;
    padding-top: var(--spacing-4, 1rem);
    border-top: 1px solid var(--grab-gray-800, #2D2D2D);
    font-size: 0.8rem;
    /* Smaller, more compact */
    color: var(--grab-gray-400, #8C8C8C);
    margin-top: var(--spacing-4, 1rem);
}

.site-info p {
    margin: 0;
}

/* ===================================================================
   SPECIAL EFFECTS
   =================================================================== */

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Rotation effects */
.rotate-subtle {
    transform: rotate(-1deg);
}

.rotate-medium {
    transform: rotate(-2deg);
}

/* Marquee animation for tickers */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

/* Spin animation for decorative elements */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 20s linear infinite;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================================================
   UTILITIES
   =================================================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-4 {
    margin-top: var(--spacing-4);
}

.mt-6 {
    margin-top: var(--spacing-6);
}

.mt-8 {
    margin-top: var(--spacing-8);
}

.mb-4 {
    margin-bottom: var(--spacing-4);
}

.mb-6 {
    margin-bottom: var(--spacing-6);
}

.mb-8 {
    margin-bottom: var(--spacing-8);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ===================================================================
   PREMIUM MENU SECTION
   =================================================================== */

.premium-menu-section,
.menu-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF5E8 50%, #FFF0DC 100%);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FFD100 0%, #FFA000 50%, #FFD100 100%);
    background-size: 200% 100%;
    animation: menuGradientShift 3s ease infinite;
}

@keyframes menuGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    color: var(--black, #000000);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
    font-family: var(--font-heading, 'Montserrat', sans-serif);
}

/* Category Header */
.menu-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.category-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
    animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {

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

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

.category-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black, #000000);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD100 0%, #FFA000 100%);
    border-radius: 2px;
}

.category-description {
    font-size: 1.1rem;
    color: var(--grab-gray-600, #666666);
    margin-top: 16px;
    font-family: var(--font-body, 'Poppins', sans-serif);
}

/* Premium Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

/* Premium Menu Card */
.menu-card {
    background: var(--white, #FFFFFF);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD100 0%, #FFA000 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 209, 0, 0.25);
    border-color: var(--grab-primary, #FFD100);
}

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

/* Menu Image */
.menu-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #FFE066 0%, #FFD100 50%, #FFA000 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: transform 0.5s ease;
}

.menu-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.menu-card:hover .menu-image {
    transform: scale(1.1);
}

/* Menu Badge */
.menu-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    color: var(--black, #000000);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    box-shadow: 0 4px 12px rgba(255, 209, 0, 0.4);
    z-index: 2;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {

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

    50% {
        transform: scale(1.05);
    }
}

/* Menu Content */
.menu-content {
    padding: 28px;
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.menu-emoji {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-emoji {
    transform: scale(1.2) rotate(10deg);
}

.menu-name {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black, #000000);
    flex: 1;
    line-height: 1.2;
}

.menu-description {
    font-size: 0.95rem;
    color: var(--grab-gray-600, #666666);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
    font-family: var(--font-body, 'Poppins', sans-serif);
}

/* Menu Footer */
.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--grab-gray-100, #F5F5F5);
}

.menu-type-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.badge-veg {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white, #FFFFFF);
}

.badge-vegan {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: var(--white, #FFFFFF);
}

.order-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    color: var(--black, #000000);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.order-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 209, 0, 0.5);
}

.order-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.order-btn:hover::after {
    transform: translateX(4px);
}

.ryt-menu-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.ryt-menu-type {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-6);
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.75rem;
        --font-size-h3: 1.5rem;
    }

    .hero-fusion {
        min-height: 80vh;
    }

    .hero-content {
        padding: var(--spacing-4);
    }

    /* Premium CTA Section */
    .menu-cta {
        text-align: center;
        margin-top: 80px;
        padding: 60px 40px;
        background: linear-gradient(135deg, rgba(255, 209, 0, 0.1) 0%, rgba(255, 160, 0, 0.1) 100%);
        border-radius: 32px;
        border: 2px solid rgba(255, 209, 0, 0.2);
        position: relative;
        overflow: hidden;
    }

    .menu-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 209, 0, 0.1) 0%, transparent 70%);
        animation: rotateGlow 10s linear infinite;
    }

    @keyframes rotateGlow {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .menu-cta-content {
        position: relative;
        z-index: 1;
    }

    .cta-title {
        font-family: var(--font-heading, 'Montserrat', sans-serif);
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--black, #000000);
        margin-bottom: 16px;
    }

    .cta-subtitle {
        font-size: 1.125rem;
        color: var(--grab-gray-600, #666666);
        margin-bottom: 32px;
        font-family: var(--font-body, 'Poppins', sans-serif);
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-btn-primary {
        padding: 16px 40px;
        border-radius: 50px;
        background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
        color: var(--black, #000000);
        font-weight: 700;
        font-size: 1.125rem;
        text-decoration: none;
        transition: all 0.3s ease;
        font-family: var(--font-heading, 'Montserrat', sans-serif);
        box-shadow: 0 8px 25px rgba(255, 209, 0, 0.4);
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .cta-btn-primary:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 209, 0, 0.6);
    }

    .cta-btn-secondary {
        padding: 16px 40px;
        border-radius: 50px;
        background: var(--black, #000000);
        color: var(--white, #FFFFFF);
        font-weight: 700;
        font-size: 1.125rem;
        text-decoration: none;
        transition: all 0.3s ease;
        font-family: var(--font-heading, 'Montserrat', sans-serif);
        border: 2px solid var(--black, #000000);
    }

    .cta-btn-secondary:hover {
        background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
        color: var(--black, #000000);
        border-color: transparent;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 209, 0, 0.6);
    }

    /* Premium CTA Section */
    .premium-cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
        position: relative;
        overflow: hidden;
    }

    .premium-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, #FFD100 0%, #FFA000 50%, #FFD100 100%);
        background-size: 200% 100%;
        animation: ctaGradientShift 3s ease infinite;
    }

    @keyframes ctaGradientShift {

        0%,
        100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    /* Responsive Menu Section */
    @media (max-width: 1024px) {
        .menu-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .menu-section {
            padding: 60px 0;
        }

        .menu-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .category-title {
            font-size: 2rem;
        }

        .category-emoji {
            font-size: 3rem;
        }

        .menu-emoji {
            font-size: 2rem;
        }

        .menu-cta {
            padding: 40px 24px;
        }

        .cta-title {
            font-size: 2rem;
        }

        /* Premium Trust Section Responsive */
        .premium-trust-section,
        .trust-section {
            padding: 60px 0;
        }

        .trust-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .premium-trust-card,
        .trust-card {
            padding: 32px 24px;
        }

        .trust-icon {
            font-size: 3.5rem;
        }

        /* Premium Follow Us Section Responsive */
        .premium-follow-us-section,
        .follow-us-section {
            padding: 60px 0;
        }

        .social-icons-grid {
            gap: 16px;
        }

        .social-icon {
            width: 56px;
            height: 56px;
        }

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

    /* ===================================================================
   HERO SLIDER STYLES
   =================================================================== */

    .ryt-hero-slider {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        background: var(--gradient-primary);
    }

    .ryt-slider-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .ryt-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        z-index: 1;
    }

    .ryt-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .ryt-slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ryt-slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
        z-index: 1;
    }

    .ryt-slide-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        text-align: center;
        color: white;
        padding: var(--spacing-8);
    }

    .ryt-slide-inner {
        max-width: 800px;
        width: 100%;
    }

    .ryt-slide-title {
        font-family: var(--font-heading);
        font-size: var(--font-size-h1);
        font-weight: var(--font-weight-heading);
        color: white;
        margin-bottom: var(--spacing-4);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .ryt-slide-subtitle {
        font-family: var(--font-body);
        font-size: var(--font-size-lg);
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: var(--spacing-8);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .ryt-slide-buttons {
        display: flex;
        gap: var(--spacing-4);
        justify-content: center;
        flex-wrap: wrap;
    }

    .ryt-slider-prev,
    .ryt-slider-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        color: var(--color-primary);
    }

    .ryt-slider-prev:hover,
    .ryt-slider-next:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
    }

    .ryt-slider-prev {
        left: var(--spacing-4);
    }

    .ryt-slider-next {
        right: var(--spacing-4);
    }

    .ryt-slider-dots {
        position: absolute;
        bottom: var(--spacing-4);
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: var(--spacing-2);
        z-index: 10;
    }

    .ryt-slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid white;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .ryt-slider-dot.active {
        background: white;
        transform: scale(1.2);
    }

    /* ===================================================================
   VEGWORLD FLASH SECTION - Green Gradient Theme
   =================================================================== */

    .vegworld-archive-section,
    .vegworld-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
        position: relative;
        overflow: hidden;
    }

    .vegworld-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, #10B981 0%, #059669 50%, #10B981 100%);
        background-size: 200% 100%;
        animation: vegworldGradientShift 3s ease infinite;
    }

    @keyframes vegworldGradientShift {

        0%,
        100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    .vegworld-hero {
        background: var(--gradient-vegworld, linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%));
        padding: 100px 0 80px 0;
        text-align: center;
    }

    .vegworld-hero .section-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 16px;
        color: #1A1A1A;
    }

    .vegworld-hero .section-subtitle {
        font-size: 1.25rem;
        color: #4A5568;
    }

    /* Filter Bar */
    .filter-bar {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 60px;
    }

    .filter-btn {
        padding: 10px 24px;
        border-radius: 50px;
        border: 2px solid #e5e7eb;
        background: white;
        color: #4A5568;
        font-weight: 600;
        font-size: 0.9375rem;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: var(--font-body, 'Poppins', sans-serif);
    }

    .filter-btn:hover {
        border-color: var(--vegworld-green, #10B981);
        color: var(--vegworld-green, #10B981);
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #10B981, #059669);
        border-color: var(--vegworld-green, #10B981);
        color: white;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    /* VegWorld Grid */
    .vegworld-grid,
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
        gap: 24px;
        justify-content: center;
    }

    /* Desktop: Limit card max-width to prevent oversized cards */
    @media (min-width: 1025px) {

        .vegworld-grid .ryt-vegworld-card,
        .vegworld-grid .vegworld-card,
        .vegworld-grid .premium-vegworld-card {
            max-width: 100%;
        }
    }

    /* VegWorld Card - Premium Design (Matching Preview) */
    .ryt-vegworld-card,
    .vegworld-card,
    .premium-vegworld-card,
    .vegworld-section .ryt-vegworld-card,
    .vegworld-section .vegworld-card,
    .premium-vegworld-section .ryt-vegworld-card,
    .premium-vegworld-section .vegworld-card {
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: pointer !important;
        position: relative !important;
    }

    .ryt-vegworld-card:hover,
    .vegworld-card:hover,
    .premium-vegworld-card:hover,
    .vegworld-section .ryt-vegworld-card:hover,
    .vegworld-section .vegworld-card:hover,
    .premium-vegworld-section .ryt-vegworld-card:hover,
    .premium-vegworld-section .vegworld-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;
    }

    /* VegWorld Image - Premium Design */
    .ryt-vegworld-card-image,
    .vegworld-image,
    .premium-vegworld-card .ryt-vegworld-card-image,
    .premium-vegworld-card .vegworld-image,
    .vegworld-section .ryt-vegworld-card-image,
    .vegworld-section .vegworld-image,
    .premium-vegworld-section .ryt-vegworld-card-image,
    .premium-vegworld-section .vegworld-image {
        position: relative !important;
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        background: linear-gradient(135deg, #E8F5E9, #C8E6C9) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }


    .ryt-vegworld-card-image img,
    .vegworld-image img,
    .premium-vegworld-card .ryt-vegworld-card-image img,
    .premium-vegworld-card .vegworld-image img,
    .vegworld-section .ryt-vegworld-card-image img,
    .vegworld-section .vegworld-image img,
    .premium-vegworld-section .ryt-vegworld-card-image img,
    .premium-vegworld-section .vegworld-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: transform 0.5s ease !important;
    }

    .ryt-vegworld-card:hover .ryt-vegworld-card-image img,
    .vegworld-card:hover .vegworld-image img,
    .premium-vegworld-card:hover .ryt-vegworld-card-image img,
    .premium-vegworld-card:hover .vegworld-image img,
    .vegworld-section .ryt-vegworld-card:hover .ryt-vegworld-card-image img,
    .vegworld-section .vegworld-card:hover .vegworld-image img,
    .premium-vegworld-section .ryt-vegworld-card:hover .ryt-vegworld-card-image img,
    .premium-vegworld-section .vegworld-card:hover .vegworld-image img {
        transform: scale(1.05) !important;
    }

    /* VegWorld Badge - Matching Preview */
    .vegworld-badge {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        padding: 6px 16px !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        z-index: 3 !important;
    }

    .badge-hot {
        background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
        color: white;
    }

    .badge-location {
        background: #6B7280;
        color: white;
    }

    /* VegWorld Content - Matching Preview */
    .ryt-vegworld-card-content,
    .vegworld-content,
    .premium-vegworld-card .ryt-vegworld-card-content,
    .premium-vegworld-card .vegworld-content,
    .vegworld-section .ryt-vegworld-card-content,
    .vegworld-section .vegworld-content,
    .premium-vegworld-section .ryt-vegworld-card-content,
    .premium-vegworld-section .vegworld-content {
        padding: 24px !important;
        position: relative !important;
    }

    .ryt-vegworld-card-meta,
    .vegworld-badges,
    .premium-vegworld-card .ryt-vegworld-card-meta,
    .premium-vegworld-card .vegworld-badges,
    .vegworld-section .ryt-vegworld-card-meta,
    .vegworld-section .vegworld-badges,
    .premium-vegworld-section .ryt-vegworld-card-meta,
    .premium-vegworld-section .vegworld-badges {
        display: flex !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
        flex-wrap: wrap !important;
    }

    .diet-badge,
    .premium-vegworld-card .diet-badge,
    .vegworld-section .diet-badge,
    .premium-vegworld-section .diet-badge {
        padding: 4px 12px !important;
        border-radius: 50px !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
    }

    .badge-veg,
    .premium-vegworld-card .badge-veg,
    .vegworld-section .badge-veg,
    .premium-vegworld-section .badge-veg {
        background: #10B981 !important;
        color: white !important;
    }

    .badge-vegan,
    .premium-vegworld-card .badge-vegan,
    .vegworld-section .badge-vegan,
    .premium-vegworld-section .badge-vegan {
        background: #059669 !important;
        color: white !important;
    }

    .ryt-vegworld-card-title,
    .vegworld-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 12px;
        line-height: 1.3;
        font-family: var(--font-heading, 'Montserrat', sans-serif);
    }

    .ryt-vegworld-card-title a,
    .vegworld-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .ryt-vegworld-card-title a:hover,
    .vegworld-title a:hover {
        color: var(--vegworld-green, #10B981);
    }

    .ryt-vegworld-card-excerpt,
    .vegworld-excerpt {
        font-size: 0.9375rem;
        color: #4A5568;
        line-height: 1.6;
        margin-bottom: 16px;
        font-family: var(--font-body, 'Poppins', sans-serif);
    }

    .ryt-vegworld-card-footer,
    .vegworld-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.875rem;
        color: #6B7280;
        font-family: var(--font-body, 'Poppins', sans-serif);
    }

    .ryt-vegworld-card-link,
    .read-more {
        color: var(--vegworld-green, #10B981);
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .ryt-vegworld-card-link:hover,
    .read-more:hover {
        color: var(--vegworld-green-dark, #059669);
    }

    /* Responsive VegWorld Grid */
    @media (max-width: 1024px) {

        .vegworld-grid,
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {

        .vegworld-grid,
        .products-grid {
            grid-template-columns: 1fr;
        }

        .vegworld-hero .section-title {
            font-size: 2rem;
        }
    }

    /* Responsive Slider */
    @media (max-width: 768px) {
        .ryt-hero-slider {
            height: 500px;
        }

        .ryt-slide-title {
            font-size: clamp(1.5rem, 5vw, 2.5rem);
        }

        .ryt-slide-subtitle {
            font-size: var(--font-size-base);
        }

        .ryt-slider-prev,
        .ryt-slider-next {
            width: 40px;
            height: 40px;
        }

        .ryt-slider-prev {
            left: var(--spacing-2);
        }

        .ryt-slider-next {
            right: var(--spacing-2);
        }
    }

    /* ===================================================================
   LOADING STATES & SKELETON SCREENS - Phase 2
   =================================================================== */

    /* Skeleton screen base */
    .skeleton {
        background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
        background-size: 200% 100%;
        animation: skeleton-loading 1.5s ease-in-out infinite;
        border-radius: var(--radius-sm, 8px);
    }

    @keyframes skeleton-loading {
        0% {
            background-position: 200% 0;
        }

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

    /* Skeleton card for VegWorld */
    .skeleton-card {
        background: white;
        border-radius: var(--radius-md, 16px);
        padding: 0;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .skeleton-image {
        width: 100%;
        height: 200px;
        background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
        background-size: 200% 100%;
        animation: skeleton-loading 1.5s ease-in-out infinite;
    }

    /* Loading spinner */
    .loading-spinner {
        display: inline-block;
        width: 40px;
        height: 40px;
        border: 4px solid rgba(255, 160, 0, 0.2);
        border-top-color: var(--grab-primary, #FFA000);
        border-radius: 50%;
        animation: spinner-rotate 0.8s linear infinite;
    }

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

    /* Icon hover animations */
    .icon-hover {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .icon-hover:hover {
        transform: scale(1.15) rotate(5deg);
    }

    /* ===================================================================
   DARK MODE SUPPORT - Phase 3
   =================================================================== */

    @media (prefers-color-scheme: dark) {
        :root {
            /* Dark Mode Colors */
            --grab-go-bg: #1A1A1A;
            --grab-go-card: #2D2D2D;
            --grab-go-section: #242424;
            --grab-go-overlay: rgba(0, 0, 0, 0.8);

            /* Dark Mode Borders */
            --grab-go-border: #404040;
            --grab-go-border-light: #333333;
            --grab-go-border-dark: #4D4D4D;

            /* Dark Mode Text */
            --grab-go-text: #E5E5E5;
            --grab-go-text-light: #B3B3B3;
            --grab-go-text-muted: #808080;
            --grab-go-text-inverse: #1A1A1A;

            /* Dark Mode Interactive */
            --grab-go-hover: #333333;
            --grab-go-active: #404040;
            --grab-go-focus: rgba(255, 160, 0, 0.2);

            /* Adjust shadows for dark mode */
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
        }

        /* Dark mode body */
        body {
            background-color: var(--grab-go-bg);
            color: var(--grab-go-text);
        }

        /* Dark mode cards */
        .card-fusion,
        .ryt-vegworld-card,
        .vegworld-card {
            background: var(--grab-go-card);
            border-color: var(--grab-go-border);
        }

        /* Dark mode inputs */
        input,
        textarea,
        select {
            background: var(--grab-go-card);
            color: var(--grab-go-text);
            border-color: var(--grab-go-border);
        }

        /* Dark mode hero section */
        .premium-hero-section {
            background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
        }

        /* Dark mode images - reduce brightness */
        img {
            opacity: 0.9;
        }

        img:hover {
            opacity: 1;
        }
    }

    /* ===================================================================
   ENHANCED EMPTY STATES - Phase 3
   =================================================================== */

    .empty-state {
        text-align: center;
        padding: 80px 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .empty-state-icon {
        font-size: 4rem;
        margin-bottom: 24px;
        opacity: 0.5;
        animation: empty-state-float 3s ease-in-out infinite;
    }

    @keyframes empty-state-float {

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

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

    .empty-state-title {
        font-family: var(--font-heading);
        font-size: var(--font-size-h3);
        font-weight: var(--font-weight-bold);
        color: var(--grab-go-text);
        margin-bottom: 16px;
    }

    .empty-state-description {
        font-family: var(--font-body);
        font-size: var(--font-size-base);
        color: var(--grab-go-text-light);
        line-height: var(--line-height-relaxed);
        margin-bottom: 32px;
    }

    .empty-state-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 32px;
        background: var(--primary-gradient);
        color: #000;
        font-weight: 700;
        border-radius: var(--radius-pill);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .empty-state-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(255, 160, 0, 0.3);
    }

    /* ===================================================================
   RTL SUPPORT - Phase 3
   =================================================================== */

    [dir="rtl"] {
        direction: rtl;
    }

    /* RTL Navigation */
    [dir="rtl"] .nav-menu {
        flex-direction: row-reverse;
    }

    /* RTL Hero Slider */
    [dir="rtl"] .premium-slide-content {
        grid-template-columns: 1fr 1fr;
        direction: rtl;
    }

    [dir="rtl"] .premium-slider-prev {
        left: auto;
        right: 40px;
    }

    [dir="rtl"] .premium-slider-next {
        right: auto;
        left: 40px;
    }

    [dir="rtl"] .premium-slider-prev svg {
        transform: rotate(180deg);
    }

    [dir="rtl"] .premium-slider-next svg {
        transform: rotate(180deg);
    }

    /* RTL Button arrows */
    [dir="rtl"] .button-arrow {
        transform: rotate(180deg);
    }

    /* RTL Cards */
    [dir="rtl"] .card-fusion {
        text-align: right;
    }

    /* RTL Forms */
    [dir="rtl"] input,
    [dir="rtl"] textarea,
    [dir="rtl"] select {
        text-align: right;
    }

    /* RTL Badges */
    [dir="rtl"] .badge {
        flex-direction: row-reverse;
    }

    /* ===================================================================
   SCROLL-TRIGGERED ANIMATIONS - Phase 4
   =================================================================== */

    /* Fade in on scroll */
    .fade-in-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .fade-in-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Slide in from left */
    .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .slide-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Slide in from right */
    .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .slide-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Scale up on scroll */
    .scale-up-on-scroll {
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .scale-up-on-scroll.visible {
        opacity: 1;
        transform: scale(1);
    }

    /* ===================================================================
   SMOOTH SCROLL & ACCESSIBILITY - Phase 4
   =================================================================== */

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }

    /* Respect reduced motion preference */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }

        html {
            scroll-behavior: auto;
        }
    }

    /* ===================================================================
   PRINT STYLESHEET - Phase 4
   =================================================================== */

    @media print {

        /* Hide non-essential elements */
        .site-header,
        .site-footer,
        .premium-hero-ticker,
        .premium-slider-arrow,
        .premium-slider-dots,
        .whatsapp-button,
        .menu-toggle {
            display: none !important;
        }

        /* Optimize for print */
        body {
            background: white;
            color: black;
            font-size: 12pt;
        }

        /* Remove shadows and gradients */
        * {
            box-shadow: none !important;
            text-shadow: none !important;
            background-image: none !important;
        }

        /* Ensure links are visible */
        a[href]:after {
            content: " (" attr(href) ")";
            font-size: 10pt;
            color: #666;
        }

        /* Page breaks */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            page-break-after: avoid;
        }

        img {
            page-break-inside: avoid;
            max-width: 100% !important;
        }
    }

    /* ===================================================================
   PERFORMANCE OPTIMIZATIONS - Phase 4
   =================================================================== */

    /* GPU acceleration for animations */
    .gpu-accelerated {
        transform: translateZ(0);
        will-change: transform;
    }

    /* Optimize repaints */
    .optimize-repaint {
        backface-visibility: hidden;
        perspective: 1000px;
    }

    /* Contain layout shifts */
    .contain-layout {
        contain: layout;
    }

    .contain-paint {
        contain: paint;
    }

    .contain-strict {
        contain: strict;
    }