@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Cairo:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* =============================================
   DESIGN TOKENS — Dark Premium Food Theme
   ============================================= */
:root {
    --primary: #F45A1F;
    --primary-hover: #d6440e;
    --primary-light: rgba(244, 90, 31, 0.15);
    --primary-glow: rgba(244, 90, 31, 0.25);
    --accent: #FFB547;
    --dark: #0F0F0F;
    --dark-2: #161616;
    --dark-3: #1E1E1E;
    --dark-4: #252525;
    --dark-5: #2E2E2E;
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-muted: #9A9A9A;
    --text-subtle: #606060;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(244, 90, 31, 0.4);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-primary: 0 8px 30px rgba(244, 90, 31, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s ease;

    /* Theme variables (dark by default now) */
    --bg-main: #0F0F0F;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --bg-overlay: rgba(15,15,15,0.8);
    --header-bg: rgba(10, 10, 10, 0.85);
    --hero-bg: #0F0F0F;
    --floating-bg: rgba(26, 26, 26, 0.9);
    --phone-bg: #1A1A1A;
}

[data-theme="light"] {
    --dark: #1D1D1D;
    --dark-2: #F8F8F8;
    --dark-3: #FFFFFF;
    --dark-4: #F0F0F0;
    --dark-5: #E8E8E8;
    --text-white: #1A1A1A;
    --text-light: #333333;
    --text-muted: #666666;
    --text-subtle: #999999;
    --border: rgba(0,0,0,0.08);
    --bg-main: #F7F4EF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFF8F5;
    --bg-overlay: rgba(247,244,239,0.9);
    --header-bg: rgba(255,255,255,0.92);
    --hero-bg: linear-gradient(135deg, #1A1A1A 0%, #2A1510 40%, #1A1A1A 100%);
    --floating-bg: rgba(255,255,255,0.92);
    --phone-bg: #F0EDE8;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: 'Fredoka', 'Cairo', 'Outfit', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', 'Cairo', sans-serif;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* =============================================
   UTILITIES
   ============================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.2s;
}
.btn:hover::after { opacity: 0.07; }

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(244, 90, 31, 0.55);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    border-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
header {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo img {
    height: 40px;
    object-fit: contain;
}
.logo > span {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.3px;
}
.logo > span > span { color: var(--primary); }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.nav-link:hover { color: var(--text-white); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--primary); font-weight: 700; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.theme-toggle, .cart-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-muted);
    font-size: 1rem;
}
.theme-toggle:hover, .cart-icon:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.cart-icon { position: relative; }
.cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A0A05 40%, #0F0F0F 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

/* Animated mesh grid background */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(244,90,31,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244,90,31,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Orange glow blob */
.hero-section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244,90,31,0.18) 0%, transparent 65%);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.6; transform: translateY(-50%) scale(0.95); }
    100% { opacity: 1; transform: translateY(-50%) scale(1.05); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ---- Hero Left ---- */
.hero-content { animation: fadeInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(244, 90, 31, 0.12);
    border: 1px solid rgba(244, 90, 31, 0.3);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.hero-badge i { animation: pulse-glow 2s infinite; }
@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: 'Fredoka', 'Cairo', sans-serif !important;
    font-size: 4.2rem;
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 22px;
}
.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.35;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Customer avatars strip */
.hero-customers {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
}
.avatar-strip {
    display: flex;
    align-items: center;
}
.avatar-strip .av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid var(--bg-main);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-left: -10px;
    flex-shrink: 0;
}
.avatar-strip .av:first-child { margin-left: 0; }
.hero-customers-text {
    display: flex;
    flex-direction: column;
}
.hero-customers-text strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
}
.hero-customers-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Social Proof Grid */
.hero-social-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.social-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.social-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}
.social-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.social-card:hover::before { opacity: 1; }
.social-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}
.social-card p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2px;
}
.social-card span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}

/* ---- Hero Right ---- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
    animation: fadeInRight 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-glow {
    position: absolute;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(244,90,31,0.2) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(30px);
    animation: hero-glow-pulse 6s ease-in-out infinite alternate;
}
@keyframes hero-glow-pulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-image {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(244,90,31,0.2)) drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    animation: float-main 7s ease-in-out infinite;
}
@keyframes float-main {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(1.5deg); }
}

/* Floating Glass Cards */
.floating-glass-card {
    position: absolute;
    background: rgba(26,26,26,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    transition: var(--transition);
    min-width: 160px;
}
.floating-glass-card:hover {
    transform: scale(1.06) translateY(-2px);
    border-color: rgba(244,90,31,0.4);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(244,90,31,0.2);
}
.floating-card-1 { top: 6%; left: -12%; animation: float-c1 8s ease-in-out infinite; }
.floating-card-2 { bottom: 10%; left: -8%; animation: float-c2 7s ease-in-out infinite; }
.floating-card-3 { top: 18%; right: -12%; animation: float-c3 9s ease-in-out infinite; }
.floating-card-4 { bottom: 20%; right: -8%; animation: float-c4 8s ease-in-out infinite; }

@keyframes float-c1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float-c2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float-c3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float-c4 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

.floating-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.floating-details h5 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}
.floating-details p { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.floating-details span { color: var(--primary); font-weight: 700; }

/* =============================================
   FEATURES BAR
   ============================================= */
.features-bar {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
}

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

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244,90,31,0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-6px); }
.feature-card:hover::after { opacity: 1; }

.feature-icon-wrapper {
    width: 58px; height: 58px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    border: 1px solid rgba(244,90,31,0.2);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
    transform: scale(1.08);
}

.feature-info { position: relative; z-index: 1; }
.feature-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}
.feature-info p { font-size: 0.875rem; line-height: 1.55; color: var(--text-muted); }

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}
.feature-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(244,90,31,0.2);
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}
.section-title {
    font-family: 'Fredoka', 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}
.section-title span { color: var(--primary); }

.view-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(244,90,31,0.3);
}
.view-all:hover { background: var(--primary-light); gap: 10px; }

/* =============================================
   CATEGORIES SECTION
   ============================================= */
.categories-section { padding: 80px 0 40px; }

.slider-controls { display: flex; gap: 10px; }
.control-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.control-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(244,90,31,0.4);
}

.categories-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 0 12px;
    scrollbar-width: none;
}
.categories-container::-webkit-scrollbar { display: none; }

.category-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
}
.category-pill img { width: 26px; height: 26px; object-fit: contain; }
.category-pill span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}
.category-pill:hover { border-color: rgba(244,90,31,0.3); background: rgba(244,90,31,0.06); }
.category-pill:hover span { color: var(--text-white); }
.category-pill.active { background: var(--primary); border-color: var(--primary); box-shadow: var(--shadow-primary); }
.category-pill.active span { color: white; }

/* =============================================
   POPULAR SECTION / PRODUCT CARDS
   ============================================= */
.popular-section { padding: 40px 0 90px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244,90,31,0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(244,90,31,0.2); }
.product-card:hover::before { opacity: 1; }

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-white);
    background: rgba(255,255,255,0.06);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.card-rating i { color: #F5A800; }
.card-fav {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}
.card-fav:hover { background: rgba(244,90,31,0.15); color: var(--primary); }

.product-image-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    margin-bottom: 16px;
    position: relative;
}
.product-image-container img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-image-container img { transform: scale(1.06); }

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}
.product-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}
.add-to-cart-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(244,90,31,0.4);
}
.add-to-cart-btn:hover { background: var(--primary-hover); transform: scale(1.12) rotate(90deg); }

/* =============================================
   APP DOWNLOAD SECTION
   ============================================= */
.app-section { padding: 80px 0; }

.app-banner {
    background: linear-gradient(135deg, #1A0A05 0%, #1E1209 50%, #0F0F0F 100%);
    border: 1px solid rgba(244,90,31,0.2);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.app-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(244,90,31,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.app-badge { margin-bottom: 20px; }
.app-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.app-title span { color: var(--primary); }
.app-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 460px; line-height: 1.65; }

.download-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.download-buttons img { height: 46px; border-radius: 10px; }
.download-buttons a { transition: transform 0.2s; }
.download-buttons a:hover { transform: translateY(-3px); }

.app-qr-section {
    display: flex;
    align-items: center;
    gap: 16px;
}
.qr-box {
    width: 70px; height: 70px;
    background: white;
    border-radius: 12px;
    padding: 6px;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}
.qr-box svg { width: 100%; height: 100%; }
.qr-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.qr-text span { color: var(--primary); font-weight: 700; }

.app-visual { position: relative; z-index: 1; }
.mockup-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
}

.phone-mockup {
    width: 190px; height: 370px;
    background: #0A0A0A;
    border-radius: 32px;
    padding: 8px;
    border: 3px solid #2A2A2A;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
}
.phone-screen {
    width: 100%; height: 100%;
    background: var(--phone-bg);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-mockup-2 { height: 320px; transform: translateY(20px); }
.phone-screen-2 {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 24px;
    background: #141414;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: var(--dark-2);
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.stat-item:hover { border-color: var(--border-hover); background: var(--primary-light); }
.stat-item i { font-size: 1.8rem; color: var(--primary); }
.stat-number { font-family: 'Fredoka', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--text-white); }
.stat-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: #0A0A0A;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 18px 0 24px;
    max-width: 240px;
}

.social-links { display: flex; gap: 10px; }
.social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
    font-size: 0.85rem;
}
.social-icon:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); }

.footer-col h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-info { font-size: 0.88rem; color: var(--text-muted); }
.footer-contact-info p { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }

.footer-newsletter p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.55; }

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-input {
    padding: 12px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
    font-family: 'Fredoka', sans-serif;
}
.newsletter-input::placeholder { color: var(--text-subtle); }
.newsletter-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.08); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-subtle); }
.payment-methods { display: flex; gap: 12px; align-items: center; }
.payment-methods img { height: 22px; object-fit: contain; opacity: 0.7; transition: opacity 0.2s; }
.payment-methods img:hover { opacity: 1; }

/* =============================================
   LIGHT THEME OVERRIDES
   ============================================= */
[data-theme="light"] body { background-color: #F7F4EF; }
[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C1208 40%, #1A1A1A 100%);
}
[data-theme="light"] .features-bar,
[data-theme="light"] .stats-bar { background: #EDEBE6; }
[data-theme="light"] .feature-card,
[data-theme="light"] .product-card { background: #FFFFFF; }
[data-theme="light"] .feature-info h3,
[data-theme="light"] .product-title,
[data-theme="light"] .social-card p,
[data-theme="light"] .stat-number,
[data-theme="light"] .section-title { color: #1A1A1A; }
[data-theme="light"] .feature-info p,
[data-theme="light"] .product-desc,
[data-theme="light"] .stat-label { color: #666; }
[data-theme="light"] .category-pill span { color: #555; }
[data-theme="light"] .category-pill { background: #F0EDE8; border-color: #DDD; }
[data-theme="light"] .nav-link { color: #666; }
[data-theme="light"] .nav-link:hover { color: #1A1A1A; }
[data-theme="light"] .logo > span { color: #1A1A1A; }
[data-theme="light"] .theme-toggle, [data-theme="light"] .cart-icon { color: #666; background: rgba(0,0,0,0.05); border-color: #DDD; }
[data-theme="light"] .footer-col h3 { color: #1A1A1A; }
[data-theme="light"] footer { background: #EDEBE6; }
[data-theme="light"] .newsletter-input { background: #FFF; color: #1A1A1A; border-color: #CCC; }
[data-theme="light"] .app-banner { background: linear-gradient(135deg, #1A0A05, #2A1208, #1A1A1A); }
[data-theme="light"] .card-rating { background: #F0EDE8; color: #333; }
[data-theme="light"] .floating-glass-card { background: rgba(255,255,255,0.92); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .floating-details h5 { color: #1A1A1A; }
[data-theme="light"] .social-card { background: #FFF; border-color: #E0DDD8; }

/* =============================================
   THEME TOGGLE ICON ANIMATION
   ============================================= */
.theme-toggle i { transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.theme-toggle:hover i { transform: rotate(360deg); }

/* =============================================
   MOBILE MENU
   ============================================= */
.nav-menu { transition: background-color 0.3s, border-color 0.3s; }
.nav-link { transition: color 0.3s; }

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .hero-title { font-size: 3.4rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-newsletter { grid-column: span 3; }
    .app-banner { padding: 48px; gap: 40px; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { padding: 0 16px; }
    .hero-title { font-size: 2.8rem; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-customers { justify-content: center; }
    .hero-social-proof { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { height: 320px; margin-top: 20px; }
    .hero-image { max-width: 300px; }
    .app-banner { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
    .app-desc { margin: 0 auto 36px; }
    .download-buttons { justify-content: center; }
    .app-qr-section { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-title { font-size: 2.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-newsletter { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .app-banner { padding: 32px 20px; }
    .app-title { font-size: 1.9rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-social-proof { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    .section-title { font-size: 1.6rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-badge { font-size: 0.75rem; }
}

/* Premium Navigation Link Styles */
.nav-link-premium {
    position: relative;
    color: #9CA3AF !important;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 9999px;
}
.nav-link-premium:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="light"] .nav-link-premium {
    color: #4B5563 !important;
}
[data-theme="light"] .nav-link-premium:hover {
    color: #111827 !important;
    background: rgba(0, 0, 0, 0.05) !important;
}
.nav-link-premium.active {
    color: #F45A1F !important;
    font-weight: 700;
}

 / *   G o o g l e   T r a n s l a t e   C u s t o m   S t y l i n g   * / 
 . g o o g - t e - g a d g e t - s i m p l e   { 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 5 )   ! i m p o r t a n t ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 )   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   9 9 9 9 p x   ! i m p o r t a n t ; 
         p a d d i n g :   6 p x   1 2 p x   ! i m p o r t a n t ; 
         f o n t - f a m i l y :   ' F r e d o k a ' ,   s a n s - s e r i f   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 2 p x   ! i m p o r t a n t ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         c u r s o r :   p o i n t e r   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - g a d g e t - s i m p l e : h o v e r   { 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 4 4 , 9 0 , 3 1 , 0 . 1 )   ! i m p o r t a n t ; 
         b o r d e r - c o l o r :   r g b a ( 2 4 4 , 9 0 , 3 1 , 0 . 3 )   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - g a d g e t - s i m p l e   s p a n   { 
         c o l o r :   # F 8 F A F C   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - g a d g e t - s i m p l e   i m g   { 
         d i s p l a y :   n o n e   ! i m p o r t a n t ;   / *   H i d e   G o o g l e   i c o n   * / 
 } 
 . g o o g - t e - m e n u - v a l u e   { 
         c o l o r :   # F 8 F A F C   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   5 0 0   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - m e n u - v a l u e   s p a n   { 
         c o l o r :   # F 8 F A F C   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - m e n u - v a l u e   s p a n : n t h - c h i l d ( 5 )   { 
         c o l o r :   # F 4 5 A 1 F   ! i m p o r t a n t ; 
         m a r g i n - l e f t :   5 p x   ! i m p o r t a n t ; 
 } 
 / *   H i d e   t h e   t o p   G o o g l e   T r a n s l a t e   b a n n e r   * / 
 . g o o g - t e - b a n n e r - f r a m e . s k i p t r a n s l a t e   { 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 } 
 b o d y   { 
         t o p :   0 p x   ! i m p o r t a n t ;   
 } 
 # g o o g - g t - t t ,   . g o o g - t e - b a l l o o n - f r a m e   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   }   
 . g o o g - t e x t - h i g h l i g h t   {   b a c k g r o u n d - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ;   b o x - s h a d o w :   n o n e   ! i m p o r t a n t ;   } 
 / *   D r o p d o w n   s t y l e   * / 
 . g o o g - t e - m e n u 2   { 
         b a c k g r o u n d - c o l o r :   # 1 8 1 8 1 c   ! i m p o r t a n t ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 )   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   1 2 p x   ! i m p o r t a n t ; 
         p a d d i n g :   8 p x   0   ! i m p o r t a n t ; 
         f o n t - f a m i l y :   ' F r e d o k a ' ,   s a n s - s e r i f   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - m e n u 2 - i t e m   { 
         c o l o r :   # F 8 F A F C   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - m e n u 2 - i t e m   d i v ,   . g o o g - t e - m e n u 2 - i t e m : l i n k   d i v ,   . g o o g - t e - m e n u 2 - i t e m : v i s i t e d   d i v ,   . g o o g - t e - m e n u 2 - i t e m : a c t i v e   d i v   { 
         c o l o r :   # F 8 F A F C   ! i m p o r t a n t ; 
         p a d d i n g :   6 p x   1 6 p x   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - m e n u 2 - i t e m : h o v e r   d i v   { 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 4 4 , 9 0 , 3 1 , 0 . 1 5 )   ! i m p o r t a n t ; 
         c o l o r :   # F 4 5 A 1 F   ! i m p o r t a n t ; 
 } 
  
 
