/* =============================================
   RRK Trading Co. — Ultra Modern Design v3
   Parallax + Glassmorphism + Floating Shapes
   Navy: #162F4C | Slate: #54728D | Red: #EC4D3C
   ============================================= */

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

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

:root {
    --navy: #162F4C;
    --navy-dark: #0b1929;
    --navy-mid: #112540;
    --navy-light: #1e3d5f;
    --slate: #54728D;
    --slate-light: #8ba4bb;
    --slate-pale: #c0cfdc;
    --white: #FFFFFF;
    --off-white: #f7f9fc;
    --light-gray: #e8edf3;
    --red: #EC4D3C;
    --red-hover: #d4382a;
    --red-glow: rgba(236, 77, 60, 0.35);
    --red-light: rgba(236, 77, 60, 0.08);
    --red-gradient: linear-gradient(135deg, #EC4D3C, #f47a6e);
    --navy-gradient: linear-gradient(135deg, #0b1929, #162F4C, #1e3d5f);

    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(22, 47, 76, 0.06);
    --shadow-md: 0 8px 30px rgba(22, 47, 76, 0.10);
    --shadow-lg: 0 20px 60px rgba(22, 47, 76, 0.14);
    --shadow-glow: 0 0 40px rgba(236, 77, 60, 0.12);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.2s ease;
    --max-width: 1200px;
}

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

body {
    font-family: var(--font);
    color: var(--navy);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

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

/* =============================================
   SPLASH SCREEN
   ============================================= */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.splash-logo {
    width: 280px;
    height: auto;
    animation: splashLogoIntro 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    filter: drop-shadow(0 0 30px rgba(236, 77, 60, 0.2));
}

.splash-loader {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.splash-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--red-gradient);
    animation: loaderProgress 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px var(--red-glow);
}

@keyframes splashLogoIntro {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes loaderProgress {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--red-gradient);
    z-index: 9999;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(236, 77, 60, 0.5);
}

/* =============================================
   CUSTOM CURSOR GLOW
   ============================================= */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 77, 60, 0.04), transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* =============================================
   BUTTONS — Modern Glow
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--red-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(236, 77, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(236, 77, 60, 0.45);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(22, 47, 76, 0.2);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.78rem;
}

/* =============================================
   NAVIGATION — Glassmorphic Floating Pill
   ============================================= */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: var(--max-width);
    z-index: 1000;
    background: rgba(11, 25, 41, 0.55);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 25, 41, 0.95);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
    top: 1rem;
    width: 90%;
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 1.25rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 70px;
    width: 90px;
    object-fit: cover;
    object-position: left center;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

.nav-logo:hover img {
    width: 280px;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.65rem 1.15rem;
    border-radius: 50px;
    transition: all var(--transition);
    position: relative;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-links a i {
    font-size: 0.9em;
    opacity: 0.6;
    transition: var(--transition);
}

.nav-links a:hover i,
.nav-links a.active i {
    opacity: 1;
    color: var(--white);
    transform: translateY(-1px);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nav-links a.active::after {
    /* Removing the bottom line since we are using pill badges */
    content: none;
}

.nav-cta { margin-left: 1rem; }
.nav-cta .btn { padding: 0.55rem 1.5rem; font-size: 0.78rem; }

/* Mobile Toggle */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
    width: 22px; height: 2px; background: var(--white);
    border-radius: 2px; transition: all var(--transition); transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO SECTION — Multi-Layer Parallax
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-dark);
    overflow: hidden;
}

/* Background image layer */
.hero-bg {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    bottom: -50px;
    z-index: 0;
    will-change: transform;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.07;
    filter: saturate(0.4) blur(1px);
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
}

/* Gradient overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(160deg, rgba(11, 25, 41, 0.95) 0%, rgba(22, 47, 76, 0.75) 50%, rgba(11, 25, 41, 0.88) 100%);
    z-index: 2;
}

/* =============================================
   FLOATING GEOMETRIC SHAPES
   ============================================= */
.floating-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

/* Glowing orbs */
.shape-1 {
    width: 500px; height: 500px;
    top: -15%; right: -8%;
    background: radial-gradient(circle, rgba(236, 77, 60, 0.12), transparent 65%);
    filter: blur(40px);
    animation: floatBlob1 18s ease-in-out infinite;
}

.shape-2 {
    width: 350px; height: 350px;
    bottom: -10%; left: -5%;
    background: radial-gradient(circle, rgba(30, 61, 95, 0.25), transparent 65%);
    filter: blur(35px);
    animation: floatBlob2 22s ease-in-out infinite;
}

.shape-3 {
    width: 200px; height: 200px;
    top: 30%; left: 15%;
    background: radial-gradient(circle, rgba(236, 77, 60, 0.06), transparent 65%);
    filter: blur(25px);
    animation: floatBlob3 15s ease-in-out infinite;
}

/* Geometric outlines */
.shape-4 {
    width: 120px; height: 120px;
    top: 20%; right: 15%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    transform: rotate(45deg);
    animation: spinSlow 30s linear infinite;
}

.shape-5 {
    width: 80px; height: 80px;
    bottom: 25%; right: 25%;
    border: 1px solid rgba(236, 77, 60, 0.06);
    border-radius: 50%;
    animation: floatBlob1 12s ease-in-out infinite reverse;
}

.shape-6 {
    width: 60px; height: 60px;
    top: 60%; left: 8%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    animation: spinSlow 25s linear infinite reverse;
}

/* Trust section shapes */
.shape-7 {
    width: 400px; height: 400px;
    top: -20%; right: -10%;
    background: radial-gradient(circle, rgba(236, 77, 60, 0.08), transparent 65%);
    filter: blur(50px);
    animation: floatBlob1 20s ease-in-out infinite;
}

.shape-8 {
    width: 300px; height: 300px;
    bottom: -15%; left: -8%;
    background: radial-gradient(circle, rgba(30, 61, 95, 0.15), transparent 65%);
    filter: blur(40px);
    animation: floatBlob2 18s ease-in-out infinite;
}

/* =============================================
   HERO CONTENT
   ============================================= */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10rem 2rem 8rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text { flex: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(236, 77, 60, 0.08);
    color: #f47a6e;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 2rem;
    border: 1px solid rgba(236, 77, 60, 0.12);
    backdrop-filter: blur(8px);
}

.hero-badge svg { animation: pulse-glow 2.5s ease-in-out infinite; }

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.75rem;
    letter-spacing: -0.04em;
    will-change: transform;
}

.hero-title .accent {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: var(--slate-light);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 300;
    will-change: transform;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Image with glow */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    will-change: transform;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    max-width: 480px;
    width: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(236, 77, 60, 0.15), transparent 60%);
    filter: blur(50px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@media (max-width: 992px) {
    .hero-image {
        display: none !important;
    }
}

/* Hero Stats — Glassmorphic */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    will-change: transform;
}

.hero-stat {
    position: relative;
}

.hero-stat-value {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-value .red,
.hero-stat-value.counter {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--slate);
    margin-top: 0.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* =============================================
   CURVED SECTION DIVIDERS
   ============================================= */
.section-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 6;
    line-height: 0;
}

.section-curve svg {
    width: 100%;
    height: 80px;
    display: block;
}

.section-curve-top {
    top: -2px;
    bottom: auto;
}

.section-curve-bottom {
    bottom: -2px;
    top: auto;
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 6rem 0; position: relative; }
.section-light { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red-light);
    color: var(--red);
    padding: 0.4rem 1.15rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

.section-badge-dark {
    background: rgba(236, 77, 60, 0.12);
    color: #f47a6e;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

/* =============================================
   BRAND SECTION / CAROUSEL
   ============================================= */
.brand-section { padding: 5rem 0; background: var(--white); position: relative; overflow: hidden; }
.brand-section + .brand-section,
.brand-section.section-light { background: var(--off-white); }

.brand-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.25rem;
}

.brand-header-left {
    display: flex; align-items: center; gap: 1.25rem;
}

.brand-icon {
    width: 80px; height: 80px;
    background: var(--red-gradient);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(236, 77, 60, 0.2);
    transition: transform var(--transition), box-shadow var(--transition);
}

.brand-icon:hover {
    transform: rotate(-8deg) scale(1.05);
}

.brand-icon svg { width: 24px; height: 24px; color: var(--white); }

.brand-name {
    font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em;
}

.brand-desc {
    font-size: 0.85rem; color: var(--slate); margin-top: 0.1rem;
}

.brand-link {
    color: var(--red); font-weight: 600; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: all var(--transition); letter-spacing: 0.02em;
}

.brand-link:hover { gap: 0.8rem; color: var(--red-hover); }
.brand-link svg { width: 18px; height: 18px; transition: transform var(--transition); }
.brand-link:hover svg { transform: translateX(5px); }

/* Carousel */
.carousel-wrapper { position: relative; overflow: hidden; }

.carousel-track {
    display: flex; gap: 1.25rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
    padding: 1rem 0 2rem;
}

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

.carousel-card {
    flex: 0 0 270px; scroll-snap-align: start;
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; border: 1px solid rgba(22, 47, 76, 0.05);
    transition: all var(--transition); cursor: pointer;
    position: relative; box-shadow: var(--shadow-sm);
}

.section-light .carousel-card { background: var(--white); }

.carousel-card::after {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius);
    opacity: 0; transition: opacity var(--transition);
    background: linear-gradient(135deg, rgba(236, 77, 60, 0.02), rgba(236, 77, 60, 0.06));
    pointer-events: none;
}

.carousel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(236, 77, 60, 0.08);
}

.carousel-card:hover::after { opacity: 1; }

.carousel-card-img {
    width: 100%; height: 200px; overflow: hidden;
    background: var(--off-white); position: relative;
}

.carousel-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-card:hover .carousel-card-img img { transform: scale(1.1); }

.carousel-card-body { padding: 1.25rem; }

.carousel-card-title {
    font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.2rem;
}

.carousel-card-sku { font-size: 0.78rem; color: var(--slate); }

/* Carousel Nav */
.carousel-nav { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.25rem; }

.carousel-btn {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid var(--light-gray); background: var(--white);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--navy); color: var(--white); border-color: var(--navy);
    transform: scale(1.1); box-shadow: 0 6px 20px rgba(22, 47, 76, 0.25);
}

.carousel-btn svg { width: 18px; height: 18px; }

/* =============================================
   PRODUCT GRID
   ============================================= */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}

.product-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(22, 47, 76, 0.05); transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(22, 47, 76, 0.05); position: relative;
    display: flex; flex-direction: column;
}

.product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--red-gradient); transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); z-index: 2;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card::after {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 2px transparent; transition: all var(--transition);
    pointer-events: none; z-index: 3;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(22, 47, 76, 0.12);
    border-color: transparent;
}

.product-card:hover::after {
    box-shadow: inset 0 0 0 1px var(--red);
}

.product-card-img {
    width: 100%; height: 240px; overflow: hidden; background: var(--off-white);
    position: relative;
}

.product-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11, 25, 41, 0.05), transparent); z-index: 1;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
    transition: transform 0.5s ease;
}

/* Multi-image Hover Cycle Styles */
.product-card-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    background: #ffffff;
    overflow: hidden;
}

.p-img-cycle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.p-img-cycle.active {
    opacity: 1;
}

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

.product-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }

.product-card-name {
    font-size: 1.05rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--navy);
    letter-spacing: -0.01em;
}

.product-card-meta {
    font-size: 0.85rem; color: var(--slate); margin-bottom: 1.5rem; font-weight: 500;
}

.product-card .btn-sm { margin-top: auto; width: 100%; justify-content: center; border-radius: 8px; padding: 0.75rem; font-size: 0.8rem; }

/* Category Cards */
.category-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.5rem;
}

.category-card {
    background: var(--white); border-radius: var(--radius);
    padding: 2.5rem 1.5rem 2rem; text-align: center;
    border: 1px solid rgba(22, 47, 76, 0.03); transition: all var(--transition);
    cursor: pointer; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}

.category-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(236, 77, 60, 0.02), rgba(236, 77, 60, 0.08));
    opacity: 0; transition: opacity var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(236, 77, 60, 0.1);
}

.category-card:hover::before { opacity: 1; }

.category-card-img {
    width: 72px; height: 72px; margin: 0 auto 1.25rem;
    border-radius: 50%; overflow: hidden; background: var(--off-white);
    border: 2px solid var(--light-gray); transition: all var(--transition); position: relative;
}

.category-card:hover .category-card-img {
    border-color: var(--red);
    box-shadow: 0 0 0 6px rgba(236, 77, 60, 0.08);
    transform: scale(1.08);
}

.category-card-img img { width: 100%; height: 100%; object-fit: cover; }

.category-card-name {
    font-size: 0.9rem; font-weight: 700; color: var(--navy); position: relative;
}

/* =============================================
   TRUST SECTION — Parallax Enabled
   ============================================= */
.trust-section {
    background: var(--navy-dark); color: var(--white);
    padding: 9rem 0 8rem; position: relative; overflow: hidden;
}

.trust-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: center; position: relative; z-index: 3;
}

.trust-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
    line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.03em;
}

.trust-text h2 .accent {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-text p {
    color: var(--slate-light); font-size: 1.05rem;
    line-height: 1.85; font-weight: 300; margin-bottom: 1rem;
}

.trust-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.25rem;
}

.trust-feature {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.8rem; border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.trust-feature:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}

.trust-feature-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(236, 77, 60, 0.1); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
}

.trust-feature-icon svg { width: 20px; height: 20px; color: #f47a6e; }

.trust-feature span {
    font-size: 0.88rem; font-weight: 500; color: rgba(255, 255, 255, 0.85);
}

/* Trust Stats — Glassmorphic */
.trust-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}

.trust-stat {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 2.5rem;
    text-align: center; backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition); position: relative; overflow: hidden;
}

.trust-stat::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--red-gradient); transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-stat:hover::before { transform: scaleX(1); }

.trust-stat:hover {
    background: var(--glass-hover); transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.trust-stat-value {
    font-size: 3rem; font-weight: 900;
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em;
}

.trust-stat-label {
    font-size: 0.82rem; color: var(--slate-light); font-weight: 400; letter-spacing: 0.02em;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--off-white); padding: 5rem 0; }

.cta-box {
    background: var(--navy-dark); border-radius: var(--radius-xl);
    padding: 5.5rem 3rem; text-align: center; position: relative; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

/* Animated CTA shapes */
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }

.cta-shape {
    position: absolute; border-radius: 50%; filter: blur(40px);
}

.cta-shape-1 {
    width: 350px; height: 350px; top: -100px; right: -80px;
    background: radial-gradient(circle, rgba(236, 77, 60, 0.12), transparent 65%);
    animation: floatBlob1 16s ease-in-out infinite;
}

.cta-shape-2 {
    width: 250px; height: 250px; bottom: -80px; left: -60px;
    background: radial-gradient(circle, rgba(30, 61, 95, 0.15), transparent 65%);
    animation: floatBlob2 14s ease-in-out infinite;
}

.cta-shape-3 {
    width: 150px; height: 150px; top: 30%; left: 30%;
    background: radial-gradient(circle, rgba(236, 77, 60, 0.06), transparent 65%);
    animation: floatBlob3 10s ease-in-out infinite;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white);
    font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 1; letter-spacing: -0.02em;
}

.cta-box p {
    color: var(--slate-light); font-size: 1.05rem; margin-bottom: 2.25rem;
    position: relative; z-index: 1; font-weight: 300;
}

.cta-box .btn { position: relative; z-index: 1; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--navy-dark); color: var(--white);
    padding: 5rem 0 0; position: relative;
}

.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 77, 60, 0.25), transparent);
}

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem; padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand p {
    color: #ffffff; font-size: 1rem; line-height: 1.8;
    margin-top: 1.25rem; font-weight: 400;
}

.footer-logo {
    height: 100px;
    width: 130px;
    margin-bottom: 0.75rem;
    object-fit: cover;
    object-position: left center;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

.footer-logo:hover {
    width: 400px;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.footer-heading {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.14em; margin-bottom: 1.5rem; color: var(--white);
    position: relative; display: inline-block;
}

.footer-heading::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 24px; height: 2px; background: var(--red-gradient); border-radius: 2px;
}

.footer-links a { display: flex; align-items: center; gap: 0.5rem; color: #ffffff; font-size: 0.95rem; font-weight: 500; transition: all var(--transition); letter-spacing: 0.02em; }

.footer-links a:hover { color: #ffffff; padding-left: 0.5rem; }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem;
}

.footer-contact-item svg {
    width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a { color: #ffffff; font-size: 0.95rem; line-height: 1.6; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
    padding: 2rem 0; display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}

.footer-copy { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); }

.footer-socials { display: flex; gap: 0.65rem; }

.footer-socials a {
    width: 40px; height: 40px; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05); display: flex;
    align-items: center; justify-content: center; color: var(--slate);
    transition: all var(--transition); background: rgba(255, 255, 255, 0.02);
}

.footer-socials a:hover {
    background: var(--red-gradient); border-color: transparent; color: var(--white);
    transform: translateY(-4px) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(236, 77, 60, 0.3);
}

.footer-socials a svg { width: 16px; height: 16px; }

/* =============================================
   PAGE HEADER (Inner Pages)
   ============================================= */
.page-header {
    background: var(--navy-dark); padding: 9rem 0 5rem;
    text-align: center; position: relative; overflow: hidden;
}

.page-header::before {
    content: ''; position: absolute; top: -30%; right: -15%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 77, 60, 0.08), transparent 70%);
    filter: blur(60px);
}

.page-header::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--off-white) 50%);
}

.page-header-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800;
    color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.03em;
    position: relative; z-index: 1;
}

.page-header-sub {
    color: var(--slate-light); font-size: 1.05rem; font-weight: 300;
    position: relative; z-index: 1;
}

.page-header .section-badge { position: relative; z-index: 1; }

.page-header .breadcrumb {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-top: 1.25rem; font-size: 0.82rem; position: relative; z-index: 1;
}

.page-header .breadcrumb a { color: var(--slate); }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb span { color: #f47a6e; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
}

.about-text h2 {
    font-size: 2.2rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--navy); letter-spacing: -0.02em;
}

.about-text p { color: var(--slate); font-size: 1rem; line-height: 1.85; margin-bottom: 1rem; font-weight: 300; }

.about-image {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg); position: relative;
}

.about-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11, 25, 41, 0.3));
    z-index: 1; border-radius: var(--radius-xl);
}

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

.about-brands {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem;
}

.about-brand-card {
    padding: 2.75rem; background: var(--white); border-radius: var(--radius);
    border: 1px solid rgba(22, 47, 76, 0.03); transition: all var(--transition);
    box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}

.about-brand-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--red-gradient); transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-brand-card:hover {
    box-shadow: var(--shadow-lg); transform: translateY(-8px); border-color: rgba(236, 77, 60, 0.06);
}

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

.about-brand-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.about-brand-card p { color: var(--slate); font-size: 0.95rem; line-height: 1.75; font-weight: 300; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

.contact-form {
    background: var(--white); padding: 2.75rem; border-radius: var(--radius-lg);
    border: 1px solid rgba(22, 47, 76, 0.03); box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 1.35rem; }

.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.5rem; letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%; padding: 0.9rem 1.15rem; font-family: var(--font);
    font-size: 0.9rem; color: var(--navy); border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-sm); background: var(--off-white);
    transition: all var(--transition); outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red); background: var(--white);
    box-shadow: 0 0 0 4px rgba(236, 77, 60, 0.06);
}

.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-pale); font-weight: 300; }

.contact-info {
    padding: 2.75rem; background: var(--navy-dark); border-radius: var(--radius-lg);
    color: var(--white); position: relative; overflow: hidden;
}

.contact-info::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 77, 60, 0.08), transparent 70%);
    filter: blur(40px);
}

.contact-info h3 {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 2rem; position: relative;
}

.contact-info-item {
    display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; position: relative;
}

.contact-info-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: rgba(236, 77, 60, 0.1); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; color: #f47a6e; }

.contact-info-item h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-item p,
.contact-info-item a { color: var(--slate-light); font-size: 0.9rem; line-height: 1.6; font-weight: 300; }
.contact-info-item a:hover { color: var(--white); }

.whatsapp-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    margin-top: 2rem; padding: 1rem 2rem; background: #25D366;
    color: var(--white); border-radius: 50px; font-weight: 600; font-size: 0.88rem;
    transition: all var(--transition); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    background: #1da851; transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg { width: 22px; height: 22px; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes floatBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20px, 30px) scale(1.05); }
    50% { transform: translate(15px, -20px) scale(0.97); }
    75% { transform: translate(-10px, -30px) scale(1.02); }
}

@keyframes floatBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.04); }
    66% { transform: translate(-15px, 20px) scale(0.96); }
}

@keyframes floatBlob3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}

@keyframes spinSlow {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SCROLL ANIMATIONS — Multi-directional
   ============================================= */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Default up */
.animate-on-scroll { transform: translateY(50px); }
.animate-on-scroll[data-animation="fade-right"] { transform: translateX(-50px); }
.animate-on-scroll[data-animation="fade-left"] { transform: translateX(50px); }
.animate-on-scroll[data-animation="scale-up"] { transform: scale(0.92); }
.animate-on-scroll[data-animation="stagger-up"] { transform: translateY(30px); }

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Reveal text animation */
.reveal-text {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Staggered */
.animate-on-scroll.visible .category-card,
.animate-on-scroll.visible .product-card,
.animate-on-scroll.visible .trust-stat {
    animation: fadeSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-on-scroll.visible .category-card:nth-child(1),
.animate-on-scroll.visible .product-card:nth-child(1),
.animate-on-scroll.visible .trust-stat:nth-child(1) { animation-delay: 0s; }
.animate-on-scroll.visible .category-card:nth-child(2),
.animate-on-scroll.visible .product-card:nth-child(2),
.animate-on-scroll.visible .trust-stat:nth-child(2) { animation-delay: 0.1s; }
.animate-on-scroll.visible .category-card:nth-child(3),
.animate-on-scroll.visible .product-card:nth-child(3),
.animate-on-scroll.visible .trust-stat:nth-child(3) { animation-delay: 0.2s; }
.animate-on-scroll.visible .category-card:nth-child(4),
.animate-on-scroll.visible .product-card:nth-child(4),
.animate-on-scroll.visible .trust-stat:nth-child(4) { animation-delay: 0.3s; }
.animate-on-scroll.visible .category-card:nth-child(5),
.animate-on-scroll.visible .product-card:nth-child(5) { animation-delay: 0.4s; }
.animate-on-scroll.visible .category-card:nth-child(6),
.animate-on-scroll.visible .product-card:nth-child(6) { animation-delay: 0.5s; }

/* =============================================
   VERTICAL CATEGORY + HORIZONTAL PRODUCTS
   ============================================= */
.category-products-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.category-products-row {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: center;
    min-height: 280px;
    position: relative;
}

.mobile-scroll-hint {
    display: none;
    position: absolute;
    right: 1rem;
    bottom: 25%;
    transform: translateY(-50%);
    background: rgba(11, 25, 41, 0.8);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: hintPulse 2s infinite;
}

@keyframes hintPulse {
    0% { transform: translateY(-50%) translateX(0); opacity: 0.6; }
    50% { transform: translateY(-50%) translateX(5px); opacity: 1; }
    100% { transform: translateY(-50%) translateX(0); opacity: 0.6; }
}

.category-side-box {
    flex: 0 0 280px;
    background: var(--navy-dark);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-side-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.category-side-box img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.4s ease, transform 0.6s ease;
    z-index: 0;
}

.category-side-box:hover img {
    opacity: 0.45;
    transform: scale(1.05);
}

.category-side-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(11,25,41, 0.95) 0%, rgba(11,25,41, 0.2) 100%);
    z-index: 1;
}

.category-side-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
}

.category-side-content h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.category-products-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--slate) transparent;
    flex: 1;
}

.category-products-scroll::-webkit-scrollbar { height: 8px; }
.category-products-scroll::-webkit-scrollbar-track { background: transparent; }
.category-products-scroll::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 4px; }
.category-products-scroll::-webkit-scrollbar-thumb:hover { background: var(--red); }

.category-scroll-card {
    flex: 1;
    min-width: 0; /* Allow shrinking below content size */
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    box-shadow: none;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.category-scroll-card .product-card-img {
    height: 100% !important;
    border-radius: var(--radius-lg);
    background: #ffffff;
}

.category-scroll-card .product-card-img-container {
    height: 100% !important;
    background: #ffffff;
}

.category-scroll-card .product-card-img::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 25%, transparent 60%);
    border-radius: var(--radius-lg);
}

.category-scroll-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
    color: var(--white);
    transform: translateY(0);
    transition: transform var(--transition);
}

.category-scroll-card .product-card-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.category-scroll-card .product-card-meta {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.category-scroll-card:hover .category-scroll-card-content {
    transform: translateY(-5px);
}

.category-scroll-card:hover {
    box-shadow: 0 15px 35px rgba(22, 47, 76, 0.15);
    transform: translateY(-8px);
}


@media (max-width: 992px) {
    .mobile-scroll-hint {
        display: flex;
    }
    .category-products-row {
        flex-direction: column;
        min-height: auto;
    }
    .category-side-box {
        flex: 0 0 120px;
        padding: 1.5rem;
    }
    .category-side-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    .category-products-scroll {
        gap: 1rem;
        max-width: 100%;
        padding-bottom: 0.5rem;
    }
    .category-scroll-card {
        flex: 0 0 160px;
        height: 200px;
    }
    .category-scroll-card .product-card-img {
        height: 200px;
    }
}

/* =============================================
   FORM SUCCESS
   ============================================= */
.form-success { display: none; text-align: center; padding: 2.5rem; }
.form-success.show { display: block; animation: fadeSlideUp 0.5s ease; }
.form-success svg { width: 64px; height: 64px; color: #4ade80; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); }
.form-success p { color: var(--slate); font-weight: 300; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column; text-align: center; padding-top: 8rem;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image-wrapper img { max-width: 380px; }
    .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .navbar { top: 0.5rem; left: 0.5rem; right: 0.5rem; width: auto; transform: none; border-radius: var(--radius-lg); }
    .navbar.scrolled { top: 0.5rem; left: 0.5rem; right: 0.5rem; width: auto; transform: none; }
    .nav-container { padding: 0 1rem; height: 60px; }
    .nav-links {
        display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
        background: rgba(11, 25, 41, 0.95);
        backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        flex-direction: column; padding: 1.25rem 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 0.85rem 1rem; font-size: 0.9rem; border-radius: 12px; }
    .nav-cta { margin-left: 0; width: 100%; margin-top: 0.5rem; }
    .nav-cta .btn { width: 100%; justify-content: center; }
    .nav-toggle { display: flex; transform: scale(0.9); }
    .section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
    .trust-features { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-brands { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .brand-header { flex-direction: column; align-items: flex-start; }
    .cta-box { padding: 3.5rem 2rem; }
    .section-curve svg { height: 50px; }
    .cursor-glow { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-content { padding-top: 6.5rem; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
    .trust-stats { grid-template-columns: 1fr; }
    
    .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .product-card-body { padding: 1rem 0.75rem; }
    .product-card-name { font-size: 0.9rem; margin-bottom: 0.25rem; line-height: 1.3; }
    .product-card-meta { font-size: 0.75rem; margin-bottom: 1rem; }
    .product-card .btn-sm { padding: 0.6rem 0.5rem; font-size: 0.7rem; letter-spacing: 0.05em; }

    .category-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .carousel-card { flex: 0 0 230px; }
    .contact-form, .contact-info { padding: 2rem 1.5rem; }
    .trust-section { padding: 7rem 0 6rem; }
}

@media (max-width: 400px) {
    .product-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-card-body { padding: 1.5rem; }
    .product-card-name { font-size: 1.05rem; }
    .product-card-meta { font-size: 0.85rem; }
    .product-card .btn-sm { font-size: 0.8rem; }
}

.brand-hero-logo { height: 90px !important; }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(236, 77, 60, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 9999;
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(236, 77, 60, 0.5);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 9998;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Product Card WhatsApp Button */
.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
}

.btn-whatsapp-inline {
    background: transparent;
    border: 1.5px solid #25D366 !important;
    color: #25D366 !important;
    flex: 0 0 50px !important;
    padding: 0 !important;
    font-size: 1.2rem !important;
}

.btn-whatsapp-inline:hover {
    background: #25D366 !important;
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .floating-whatsapp { bottom: 5.5rem; right: 1.25rem; width: 48px; height: 48px; }
    .back-to-top { bottom: 1.5rem; right: 1.25rem; }
}

/* =============================================
   PRODUCT DETAIL MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 25, 41, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 1.5rem;
}

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

.modal-lg {
    max-width: 900px;
}

.modal {
    background: var(--white);
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.modal-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--light-gray);
}

.modal-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--slate);
    transition: color 0.3s;
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.m-image-side {
    background: #f8fbff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-right: 1px solid var(--light-gray);
}

.m-slider-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.m-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    height: 100%;
}

.m-slider img {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.m-thumbnails {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.m-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: white;
}

.m-thumb.active {
    border-color: var(--red);
    box-shadow: 0 4px 12px rgba(236, 77, 60, 0.2);
}

.m-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-info-side {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.m-sku {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.m-detail-item {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.6;
}

.m-detail-item strong {
    color: var(--slate);
    font-weight: 600;
}

.btn-whatsapp-inline-lg {
    background: #25D366;
    color: white !important;
    border: none !important;
    font-size: 0.82rem !important;
    padding: 0.9rem 2.25rem !important;
    border-radius: 50px !important;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.btn-whatsapp-inline-lg:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.m-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.m-actions .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .m-image-side {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        padding: 1.5rem;
    }
    .modal {
        max-height: 90vh;
        overflow-y: auto;
    }
}