﻿/* ========================================
   CRAVEO - Premium FMCG Snack Brand
   Global Styles & Design System
   ======================================== */

:root {
    --black: #111111;
    --orange: #FF6A00;
    --gold: #D4AF37;
    --green: #2ECC71;
    --purple: #7E57C2;
    --red: #E53935;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #1A1A1A;
    --card-bg: #1E1E1E;
    --glass-bg: rgba(30, 30, 30, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow-orange: 0 0 40px rgba(255, 106, 0, 0.3);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Font Families */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-hero: 'Outfit', sans-serif;
    --font-product: 'League Spartan', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-btn: 'Poppins', sans-serif;

    /* Font Sizes */
    --fs-hero: 72px;
    --fs-section: 48px;
    --fs-product: 34px;
    --fs-body: 18px;
    --fs-btn-nav: 17px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    background-color: var(--black);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--orange);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

.section-padding {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 12px;
    display: block;
    margin-bottom: 20px;
    animation: pulseText 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 10px;
    animation: fillBar 1.5s ease-in-out forwards;
}

@keyframes fillBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   TEXT UTILITIES
   ======================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-btn);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-section);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* ========================================
   HEADER
   ======================================== */
/* ========================================
   HEADER — Cheetos.com Premium Style
   ======================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#main-header.scrolled .header-inner {
    padding: 10px 0;
    background: rgba(17, 17, 17, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    margin: 0 auto;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    z-index: 10;
    flex-shrink: 0;
}

.logo-img {
    height: 85px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

#main-header.scrolled .logo-img {
    height: 65px;
}

/* Toggler */
.navbar-toggler {
    border: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Nav */
.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-btn);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* CTA Button */
.btn-header-distributor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), #E55A00);
    color: var(--white) !important;
    font-family: var(--font-btn);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 100px;
    border: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    margin-left: 16px;
    letter-spacing: 0.2px;
    text-decoration: none;
}

.btn-header-distributor:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.35);
    background: linear-gradient(135deg, #E55A00, var(--orange));
}

/* Search */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.2rem;
    font-family: var(--font-body);
    padding: 10px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-bottom-color: var(--orange);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 8px;
}

.search-close:hover {
    color: var(--orange);
}

/* ── Tablet (max 991px) ── */
@media (max-width: 991px) {
    .header-inner {
        padding: 14px 0;
    }

    #main-header.scrolled .header-inner {
        padding: 10px 0;
    }

    .logo-img {
        height: 70px;
    }

    #main-header.scrolled .logo-img {
        height: 55px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(17, 17, 17, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 32px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        padding: 14px 20px !important;
        font-size: 0.95rem;
        width: 100%;
        border-radius: 10px;
    }

    .btn-header-distributor {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .navbar-toggler.active .toggler-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .navbar-toggler.active .toggler-bar:nth-child(2) { opacity: 0; }
    .navbar-toggler.active .toggler-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ── Mobile (max 575px) ── */
@media (max-width: 575px) {
    .header-inner {
        padding: 12px 0;
    }

    #main-header.scrolled .header-inner {
        padding: 8px 0;
    }

    .logo-img {
        height: 55px;
    }

    #main-header.scrolled .logo-img {
        height: 45px;
    }

    .navbar-collapse {
        width: 85%;
        padding: 90px 24px 32px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 12px 16px !important;
    }
}
/* ========================================
   HERO SECTION — Cinematic Slideshow
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Background Layer ── */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
    animation: kenBurnsOut 22s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenBurnsOut {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.6) 50%, rgba(17,17,17,0.75) 100%),
        linear-gradient(to right, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.4) 40%, rgba(17,17,17,0.3) 60%, rgba(17,17,17,0.5) 100%);
}

.hero-bg-spotlight {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 10% 10%, rgba(255,106,0,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 80% 70%, rgba(212,175,55,0.05) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 50% 90%, rgba(126,87,194,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

/* ── Particles Canvas ── */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* ── Smoke Layer ── */
.hero-smoke-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* ── Slides ── */
.hero-slides-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out, visibility 0s 0.9s;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out, visibility 0s 0s;
    pointer-events: auto;
}

.hero-slide.exiting {
    opacity: 0;
    transform: scale(0.92);
    visibility: hidden;
}

.hero-slide-content {
    width: 100%;
    max-width: 780px;
    padding: 0 40px;
    text-align: center;
}

/* ── Badge Pill ── */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-btn);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 8px 20px;
    background: rgba(255,106,0,0.06);
    border: 1px solid rgba(255,106,0,0.12);
    border-radius: 100px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.hero-slide.active .hero-badge-pill {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255,106,0,0.4); }
    50% { transform: scale(1.3); opacity: 0.6; box-shadow: 0 0 0 5px rgba(255,106,0,0); }
}

/* ── Title ── */
.hero-slide-title {
    font-family: var(--font-hero);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.hero-slide-title span {
    display: block;
    overflow: hidden;
}

.hero-slide-title span {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active .hero-slide-title span:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.hero-slide.active .hero-slide-title span:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-text-glow {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 50%, var(--orange) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255,106,0,0.25));
}

@keyframes glowShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ── Description ── */
.hero-slide-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    line-height: 1.75;
    margin: 0 auto 32px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.hero-slide.active .hero-slide-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ── CTA Buttons ── */
.hero-slide-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease 0.55s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
}

.hero-slide.active .hero-slide-ctas {
    opacity: 1;
    transform: scale(1);
}

.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), #E55A00);
    color: var(--white) !important;
    font-family: var(--font-btn);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 15px 34px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(255,106,0,0.35);
    color: var(--white) !important;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-btn);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 100px;
    border: 2px solid rgba(255,255,255,0.12);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-hero-ghost:hover {
    border-color: var(--orange);
    color: var(--orange) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,106,0,0.12);
}

/* ── Slide Nav Dots ── */
.hero-slide-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slide-dot {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    border: none;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-slide-dot:hover {
    background: rgba(255,255,255,0.3);
}

.hero-slide-dot.active {
    width: 52px;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255,106,0,0.4);
}

/* ── Scroll Cue ── */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hero-scroll-cue span {
    font-family: var(--font-btn);
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.hero-scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--orange);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}
/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 106, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.15), transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.about-main-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    width: 100%;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.03);
}

.about-badge-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    animation: floatProduct 4s ease-in-out infinite;
}

.about-badge-float i {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-badge-float span {
    font-weight: 600;
    font-size: 0.85rem;
}

.about-text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--orange), #E55A00);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-feature h4 {
    font-family: var(--font-product);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.about-feature p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   WHY CHOOSE CRAVEO
   ======================================== */
.why-section {
    background: var(--black);
    position: relative;
}

.why-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: var(--shadow-lg);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 24px;
    transition: var(--transition-normal);
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-family: var(--font-product);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-secondary);
    line-height: 1.7;
}

.why-card-glow {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.why-card:hover .why-card-glow {
    opacity: 1;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    background: var(--dark-gray);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(126, 87, 194, 0.05), transparent 50%);
    pointer-events: none;
}

.product-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
    z-index: 0;
}

.product-card-green .product-card-glow { background: radial-gradient(circle at 50% 30%, rgba(46, 204, 113, 0.1), transparent 70%); }
.product-card-purple .product-card-glow { background: radial-gradient(circle at 50% 30%, rgba(126, 87, 194, 0.1), transparent 70%); }
.product-card-orange .product-card-glow { background: radial-gradient(circle at 50% 30%, rgba(255, 106, 0, 0.1), transparent 70%); }
.product-card-red .product-card-glow { background: radial-gradient(circle at 50% 30%, rgba(229, 57, 53, 0.1), transparent 70%); }

.product-card:hover .product-card-glow {
    opacity: 1;
}

.product-card-green:hover { border-color: rgba(46, 204, 113, 0.3); }
.product-card-purple:hover { border-color: rgba(126, 87, 194, 0.3); }
.product-card-orange:hover { border-color: rgba(255, 106, 0, 0.3); }
.product-card-red:hover { border-color: rgba(229, 57, 53, 0.3); }

.product-card-img-wrapper {
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    overflow: hidden;
}

.product-card-img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-img {
    transform: scale(1.08) rotate(2deg);
}

.product-card-content {
    padding: 0 24px 28px;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-flavour-tag {
    display: inline-block;
    font-family: var(--font-btn);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    margin-bottom: 10px;
    width: fit-content;
}

.product-card-green .product-flavour-tag { background: rgba(46, 204, 113, 0.15); color: var(--green); }
.product-card-purple .product-flavour-tag { background: rgba(126, 87, 194, 0.15); color: var(--purple); }
.product-card-orange .product-flavour-tag { background: rgba(255, 106, 0, 0.15); color: var(--orange); }
.product-card-red .product-flavour-tag { background: rgba(229, 57, 53, 0.15); color: var(--red); }

.product-card-title {
    font-family: var(--font-product);
    font-size: var(--fs-product);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
}

.product-card-desc {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.btn-product-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-btn);
    font-size: var(--fs-btn-nav);
    font-weight: 600;
    color: var(--orange);
    padding: 10px 0;
    border: none;
    background: none;
    transition: var(--transition-normal);
    width: fit-content;
}

.btn-product-learn:hover {
    gap: 12px;
    color: var(--gold);
}

/* ========================================
   SHOWCASE SECTION
   ======================================== */
.showcase-section {
    background: var(--black);
    overflow: hidden;
}

.showcase-swiper {
    padding: 40px 60px 80px;
}

.showcase-slide {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.showcase-slide:hover {
    transform: scale(1.02);
}

.showcase-green { background: linear-gradient(135deg, #1a3a2a, #0d1f17); }
.showcase-purple { background: linear-gradient(135deg, #2a1a3a, #170d1f); }
.showcase-orange { background: linear-gradient(135deg, #3a2a1a, #1f170d); }
.showcase-red { background: linear-gradient(135deg, #3a1a1a, #1f0d0d); }

.showcase-slide img {
    max-height: 350px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 1;
}

.showcase-slide:hover img {
    transform: scale(1.05);
}

.showcase-slide-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.showcase-slide-content span {
    font-family: var(--font-btn);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.showcase-slide-content h3 {
    font-family: var(--font-product);
    font-size: 1.8rem;
    font-weight: 700;
}

.showcase-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.showcase-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
    width: 30px;
    border-radius: 6px;
}

.showcase-swiper .swiper-button-next,
.showcase-swiper .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.showcase-swiper .swiper-button-next::after,
.showcase-swiper .swiper-button-prev::after {
    font-size: 1rem;
}

.showcase-swiper .swiper-button-next:hover,
.showcase-swiper .swiper-button-prev:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* ========================================
   QUALITY SECTION
   ======================================== */
.quality-section {
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.03), transparent 60%);
    pointer-events: none;
}

.quality-badge {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.quality-badge:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.quality-badge-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 106, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0 auto 16px;
    transition: var(--transition-normal);
}

.quality-badge:hover .quality-badge-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
}

.quality-badge h4 {
    font-family: var(--font-product);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

/* ========================================
   MOMENTS SECTION
   ======================================== */
.moments-section {
    background: var(--black);
}

.moment-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 30px 16px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: default;
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.moment-card i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    opacity: 0.8;
}

.moment-card h5 {
    font-family: var(--font-product);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: var(--dark-gray);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* ========================================
   DISTRIBUTOR SECTION
   ======================================== */
.distributor-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.distributor-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(255, 106, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.distributor-text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
}

.distributor-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.distributor-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.distributor-perk i {
    color: var(--green);
    font-size: 0.85rem;
}

.distributor-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.distributor-form-wrapper h3 {
    font-family: var(--font-product);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.form-floating .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--fs-body);
}

.form-floating .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-floating label {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
    color: var(--orange);
}

.btn-distributor-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), #E55A00);
    color: var(--white);
    font-family: var(--font-btn);
    font-size: var(--fs-btn-nav);
    font-weight: 600;
    padding: 16px;
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-distributor-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    background: var(--dark-gray);
    overflow: hidden;
}

.reviews-swiper {
    padding: 40px 60px 80px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    transition: var(--transition-normal);
}

.review-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.review-text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.review-author h5 {
    font-family: var(--font-product);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.review-author span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--black);
}

.accordion {
    border: none;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item:hover {
    border-color: rgba(255, 106, 0, 0.3);
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-primary);
    font-family: var(--font-product);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 24px;
    border: none;
    box-shadow: none;
    transition: var(--transition-normal);
}

.accordion-button:not(.collapsed) {
    background: var(--card-bg);
    color: var(--orange);
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button::after {
    width: 20px;
    height: 20px;
    background-size: 16px;
    transition: var(--transition-normal);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6A00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    padding: 0 24px 20px;
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--dark-gray);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--orange), #E55A00);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-info-card h5 {
    font-family: var(--font-product);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.contact-social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.contact-map-wrapper {
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-map-placeholder i {
    font-size: 3rem;
    color: var(--orange);
    opacity: 0.5;
}

.contact-map-placeholder p {
    font-family: var(--font-product);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.contact-map-placeholder span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--black);
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.footer-socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-product);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-newsletter p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.newsletter-form .input-group {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 14px 16px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .form-control::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn {
    background: linear-gradient(135deg, var(--orange), #E55A00);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 0;
    transition: var(--transition-normal);
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, #E55A00, var(--orange));
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), #E55A00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow-orange);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--white);
}

/* ========================================
   RESPONSIVE - Complete System
   Breakpoints: 1200, 992, 768, 576
   ======================================== */

/* ---------- LARGE LAPTOPS (max 1199px) ---------- */
@media (max-width: 1199px) {
    :root {
        --fs-hero: 62px;
        --fs-section: 44px;
        --fs-product: 30px;
    }

    .container {
        max-width: 960px;
    }

    .section-padding {
        padding: 80px 0;
    }

/* ---------- LAPTOPS (max 991px) ---------- */
@media (max-width: 991px) {
    :root {
        --fs-hero: 52px;
        --fs-section: 40px;
        --fs-product: 28px;
        --fs-body: 16px;
        --fs-btn-nav: 15px;
    }

    .container {
        max-width: 720px;
    }

    .section-padding {
        padding: 64px 0;
    }

    /* Header */
    .logo-img { height: 70px; }
    #main-header.scrolled .logo-img { height: 55px; }

    /* Hero */
    .hero-slide-content {
        padding: 0 40px;
        text-align: center;
        max-width: 100%;
    }

    .hero-slide-title {
        font-size: clamp(28px, 5vw, 48px);
    }

    .hero-slide-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slide-ctas {
        justify-content: center;
    }

    .hero-badge-pill {
        margin: 0 auto 20px;
    }

    .hero-slide-nav {
        left: 50%;
        transform: translateX(-50%);
        bottom: 70px;
    }

    .hero-scroll-cue { display: none; }

    /* About */
    .about-section .row { gap: 40px !important; }
    .about-main-img { border-radius: var(--radius-md); }

    /* Products */
    .products-section .row { gap: 20px !important; }
    .product-card-img-wrapper { min-height: 200px; padding: 20px; }
    .product-card-img { max-height: 180px; }

    /* Showcase */
    .showcase-swiper { padding: 30px 40px 70px; }
    .showcase-slide { height: 380px; }

    /* Quality */
    .quality-badge { padding: 28px 16px; }
    .quality-badge-icon { width: 56px; height: 56px; font-size: 1.1rem; }

    /* Moments */
    .moment-card { padding: 24px 12px; }
    .moment-card i { font-size: 1.6rem; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }

    /* Distributor */
    .distributor-perks { grid-template-columns: 1fr; }
    .distributor-form-wrapper { padding: 32px; }

    /* Reviews */
    .reviews-swiper { padding: 30px 40px 70px; }

    /* FAQ */
    .accordion-button { font-size: 0.95rem; padding: 16px 20px; }
    .accordion-body { font-size: 0.9rem; padding: 0 20px 16px; }

    /* Contact */
    .contact-info-card { padding: 16px 20px; }
    .contact-map-wrapper { min-height: 300px; }

    /* Footer */
    .footer-top { padding: 60px 0 30px; }
    .footer-logo { height: 40px; }
}

/* ---------- TABLETS (max 767px) ---------- */
@media (max-width: 767px) {
    :root {
        --fs-hero: 42px;
        --fs-section: 34px;
        --fs-product: 24px;
        --fs-body: 15px;
        --fs-btn-nav: 14px;
    }

    .container {
        max-width: 540px;
    }

    .section-padding {
        padding: 52px 0;
    }

    /* Header */
    .navbar-nav { gap: 0 !important; }
    .nav-link { font-size: 0.88rem; padding: 10px 14px !important; }
    .logo-img { height: 65px; }

    /* Hero */
    .hero-slide-content { padding: 0 28px; }
    .hero-slide-title { font-size: clamp(26px, 5vw, 42px); line-height: 1.1; margin-bottom: 16px; }
    .hero-badge-pill { font-size: 0.65rem; padding: 6px 14px; letter-spacing: 2px; margin-bottom: 16px; }
    .hero-slide-desc { font-size: 0.88rem; margin-bottom: 28px; }
    .hero-slide-ctas { flex-direction: column; align-items: center; gap: 12px; }
    .hero-slide-ctas .btn { width: 100%; max-width: 280px; justify-content: center; padding: 14px 28px; font-size: 0.85rem; }
    .hero-slide-nav { bottom: 60px; gap: 8px; }
    .hero-slide-dot { width: 26px; }
    .hero-slide-dot.active { width: 42px; }

    /* Section Titles */
    .section-tag { font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 8px; }
    .section-subtitle { font-size: 0.9rem; }

    /* About */
    .about-section .row { gap: 32px !important; }
    .about-text { font-size: 0.9rem; margin-bottom: 24px; }
    .about-feature h4 { font-size: 0.95rem; }
    .about-feature p { font-size: 0.8rem; }

    /* Why Cards */
    .why-card { padding: 28px 20px; }
    .why-card-icon { width: 56px; height: 56px; font-size: 1.2rem; margin-bottom: 16px; }
    .why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
    .why-card p { font-size: 0.85rem; line-height: 1.6; }

    /* Products */
    .product-card-img-wrapper { min-height: 180px; padding: 16px; }
    .product-card-img { max-height: 160px; }
    .product-card-content { padding: 0 16px 20px; }
    .product-flavour-tag { font-size: 0.6rem; padding: 3px 10px; }
    .product-card-desc { font-size: 0.8rem; margin-bottom: 12px; }
    .btn-product-learn { font-size: 0.8rem; }

    /* Showcase */
    .showcase-swiper { padding: 20px 16px 60px; }
    .showcase-slide { height: 300px; border-radius: var(--radius-md); }
    .showcase-slide-content h3 { font-size: 1.3rem; }
    .showcase-slide-content span { font-size: 0.65rem; }
    .showcase-swiper .swiper-button-next,
    .showcase-swiper .swiper-button-prev { width: 36px; height: 36px; }
    .showcase-swiper .swiper-button-next::after,
    .showcase-swiper .swiper-button-prev::after { font-size: 0.8rem; }

    /* Quality */
    .quality-badge { padding: 20px 12px; }
    .quality-badge-icon { width: 48px; height: 48px; font-size: 1rem; margin-bottom: 12px; }
    .quality-badge h4 { font-size: 0.8rem; }

    /* Moments */
    .moment-card { padding: 20px 10px; border-radius: var(--radius-sm); }
    .moment-card i { font-size: 1.4rem; margin-bottom: 8px; }
    .moment-card h5 { font-size: 0.8rem; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }

    /* Distributor */
    .distributor-text { font-size: 0.9rem; }
    .distributor-perk { font-size: 0.8rem; gap: 8px; }
    .distributor-form-wrapper { padding: 24px; border-radius: var(--radius-md); }
    .distributor-form-wrapper h3 { font-size: 1.15rem; margin-bottom: 20px; }
    .form-floating .form-control { font-size: 0.85rem; padding: 12px; }
    .btn-distributor-submit { padding: 14px; font-size: 0.9rem; }

    /* Reviews */
    .reviews-swiper { padding: 20px 16px 60px; }
    .review-card { padding: 24px; }
    .review-text { font-size: 0.85rem; margin-bottom: 16px; }
    .review-avatar { width: 36px; height: 36px; font-size: 0.8rem; }
    .review-author h5 { font-size: 0.85rem; }
    .review-stars { margin-bottom: 12px; font-size: 0.8rem; }

    /* FAQ */
    .accordion-button { font-size: 0.88rem; padding: 14px 18px; }
    .accordion-body { font-size: 0.85rem; padding: 0 18px 14px; }

    /* Contact */
    .contact-info-card { padding: 14px 16px; gap: 12px; }
    .contact-info-icon { width: 40px; height: 40px; min-width: 40px; font-size: 0.95rem; }
    .contact-info-card h5 { font-size: 0.8rem; }
    .contact-info-card p { font-size: 0.8rem; }
    .contact-social-link { width: 38px; height: 38px; font-size: 0.8rem; }
    .contact-map-wrapper { min-height: 250px; }
    .contact-map-placeholder i { font-size: 2rem; }
    .contact-map-placeholder p { font-size: 0.95rem; }

    /* Footer */
    .footer-top { padding: 48px 0 24px; }
    .footer-logo { height: 36px; margin-bottom: 12px; }
    .footer-brand p { font-size: 0.8rem; line-height: 1.6; }
    .footer-links h4,
    .footer-newsletter h4 { font-size: 0.9rem; margin-bottom: 14px; }
    .footer-links a { font-size: 0.8rem; }
    .footer-links li { margin-bottom: 8px; }
    .footer-newsletter p { font-size: 0.8rem; margin-bottom: 12px; }
    .newsletter-form .form-control { font-size: 0.8rem; padding: 12px; }
    .footer-bottom p { font-size: 0.75rem; }
    .footer-bottom-links a { font-size: 0.75rem; }

    .footer-bottom .d-flex {
        justify-content: center !important;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Back to top */
    .back-to-top { bottom: 20px; right: 16px; width: 40px; height: 40px; font-size: 0.85rem; }
}

/* ---------- MOBILE (max 575px) ---------- */
@media (max-width: 575px) {
    :root {
        --fs-hero: 36px;
        --fs-section: 28px;
        --fs-product: 22px;
        --fs-body: 14px;
        --fs-btn-nav: 13px;
    }

    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-padding {
        padding: 40px 0;
    }

    /* Header */
    .navbar-brand { margin-right: auto; }
    .logo-img { height: 55px; }

    .navbar-collapse {
        padding: 16px;
        margin-top: 10px;
    }

    .nav-link { font-size: 0.82rem; padding: 8px 14px !important; }

    .btn-header-distributor {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    /* Hero */
    .hero-slide-content { padding: 0 20px; }
    .hero-slide-title { font-size: clamp(24px, 7vw, 34px); line-height: 1.1; margin-bottom: 14px; letter-spacing: 1px; }
    .hero-badge-pill { font-size: 0.58rem; padding: 5px 12px; letter-spacing: 1.5px; margin-bottom: 12px; }
    .hero-slide-desc { font-size: 0.8rem; margin-bottom: 24px; line-height: 1.65; }
    .hero-slide-ctas { gap: 10px; }
    .hero-slide-ctas .btn { max-width: 240px; padding: 12px 24px; font-size: 0.78rem; }
    .hero-slide-nav { bottom: 50px; gap: 6px; }
    .hero-slide-dot { width: 22px; height: 3px; }
    .hero-slide-dot.active { width: 36px; }
    .hero-scroll-cue { display: none; }
    /* Section Titles */
    .section-tag { font-size: 0.68rem; letter-spacing: 1.5px; }
    .section-subtitle { font-size: 0.82rem; max-width: 100%; }

    /* About */
    .about-feature { gap: 12px; }
    .about-feature-icon { width: 40px; height: 40px; min-width: 40px; font-size: 0.9rem; }
    .about-feature h4 { font-size: 0.85rem; }
    .about-feature p { font-size: 0.75rem; }

    /* Why Cards */
    .why-card { padding: 24px 16px; }
    .why-card-icon { width: 48px; height: 48px; font-size: 1rem; margin-bottom: 12px; }
    .why-card h3 { font-size: 0.95rem; }
    .why-card p { font-size: 0.78rem; }

    /* Products */
    .product-card-img-wrapper { min-height: 160px; padding: 14px; }
    .product-card-img { max-height: 140px; }
    .product-card-content { padding: 0 14px 16px; }
    .product-flavour-tag { font-size: 0.55rem; padding: 3px 8px; }
    .product-card-title { margin-bottom: 6px; }
    .product-card-desc { font-size: 0.75rem; margin-bottom: 10px; }
    .btn-product-learn { font-size: 0.75rem; padding: 8px 0; }

    /* Showcase */
    .showcase-swiper { padding: 16px 12px 50px; }
    .showcase-slide { height: 240px; }
    .showcase-slide-content { bottom: 16px; left: 16px; }
    .showcase-slide-content h3 { font-size: 1.1rem; }
    .showcase-slide-content span { font-size: 0.6rem; }

    /* Quality */
    .quality-section .row { gap: 10px !important; }
    .quality-badge { padding: 16px 8px; }
    .quality-badge-icon { width: 42px; height: 42px; font-size: 0.9rem; margin-bottom: 10px; }
    .quality-badge h4 { font-size: 0.72rem; }

    /* Moments */
    .moments-section .row { gap: 8px !important; }
    .moment-card { padding: 16px 8px; }
    .moment-card i { font-size: 1.2rem; margin-bottom: 6px; }
    .moment-card h5 { font-size: 0.72rem; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 8px;
    }

    /* Distributor */
    .distributor-form-wrapper { padding: 20px 16px; }
    .distributor-form-wrapper h3 { font-size: 1rem; }
    .form-floating { margin-bottom: 0; }
    .form-floating .form-control { font-size: 0.8rem; padding: 10px 12px; min-height: 48px; }
    .form-floating label { font-size: 0.75rem; }
    .btn-distributor-submit { padding: 12px; font-size: 0.85rem; border-radius: var(--radius-sm); }

    /* Reviews */
    .review-card { padding: 20px 16px; }
    .review-text { font-size: 0.8rem; line-height: 1.65; margin-bottom: 12px; }
    .review-avatar { width: 32px; height: 32px; font-size: 0.7rem; }
    .review-author h5 { font-size: 0.8rem; }
    .review-author span { font-size: 0.7rem; }

    /* FAQ */
    .accordion-button { font-size: 0.82rem; padding: 12px 14px; }
    .accordion-button::after { width: 16px; height: 16px; }
    .accordion-body { font-size: 0.8rem; padding: 0 14px 12px; }

    /* Contact */
    .contact-info-cards { gap: 10px; margin-bottom: 16px; }
    .contact-info-card { padding: 12px 14px; gap: 10px; border-radius: var(--radius-sm); }
    .contact-info-icon { width: 36px; height: 36px; min-width: 36px; font-size: 0.85rem; border-radius: 8px; }
    .contact-info-card h5 { font-size: 0.75rem; margin-bottom: 1px; }
    .contact-info-card p { font-size: 0.75rem; }
    .contact-socials { gap: 8px; }
    .contact-social-link { width: 34px; height: 34px; font-size: 0.75rem; }
    .contact-map-wrapper { min-height: 200px; border-radius: var(--radius-md); }

    /* Footer */
    .footer-top { padding: 36px 0 20px; }
    .footer-links { margin-bottom: 20px; }
    .footer-links h4,
    .footer-newsletter h4 { font-size: 0.8rem; margin-bottom: 10px; }
    .footer-links a { font-size: 0.75rem; }
    .footer-links li { margin-bottom: 6px; }
    .newsletter-form .input-group { border-radius: var(--radius-sm); }
    .newsletter-form .form-control { padding: 10px 12px; font-size: 0.75rem; }
    .newsletter-form .btn { padding: 10px 14px; }
    .footer-socials a { width: 34px; height: 34px; font-size: 0.75rem; }
    .footer-bottom { padding: 16px 0; }
    .footer-bottom p { font-size: 0.7rem; }

    .back-to-top { bottom: 16px; right: 12px; width: 36px; height: 36px; font-size: 0.75rem; }
}

/* ---------- VERY SMALL MOBILE (max 374px) ---------- */
@media (max-width: 374px) {
    :root {
        --fs-hero: 30px;
        --fs-section: 24px;
        --fs-product: 20px;
    }

        .hero-title { font-size: 32px; line-height: 0.95; margin-bottom: 12px; letter-spacing: 2px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .gallery-item-tall { grid-row: span 1; }
}

/* ========================================
   AOS OVERRIDES
   ======================================== */
[data-aos] {
    pointer-events: auto !important;
}

/* ========================================
   FORM SUCCESS STATE
   ======================================== */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-product);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-secondary);
}
