:root {
    /* Corporate Palette - High Vibration */
    --primary-pink: #FF0066;
    /* Vibrant Pink */
    --secondary-teal: #1ABC9C;
    /* Tech Teal */
    --accent-navy: #2C3E50;
    /* Deep Navy */
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;
    /* Darker Slate for contrast */

    /* Gradients */
    --grad-power: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-teal) 100%);
    --grad-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Radii */
    --radius-full: 100px;
    --radius-lg: 32px;
    --radius-md: 16px;

    --shadow-soft: 0 10px 30px rgba(44, 62, 80, 0.05);
    --shadow-strong: 0 40px 100px rgba(44, 62, 80, 0.15);
}

/* Parallax Utility Classes */
.parallax-slow {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.parallax-fast {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html,
body {
    background-color: var(--bg-white);
    color: var(--accent-navy);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}


/* Custom Cursor - The Spotlight (Foco de Luz) */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
}

.top-glow-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00f2ff, #0066ff, #7a00ff, #ff0066, #ffcc00, #00f2ff);
    background-size: 300% 100%;
    z-index: 9999;
    animation: glowBar 12s linear infinite;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

@keyframes glowBar {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}


.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    box-shadow: 0 0 10px 2px var(--primary-pink);
    mix-blend-mode: normal;
    transition: transform 0.1s;
}

.cursor-outline {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 102, 0.15) 0%, rgba(255, 0, 102, 0) 50%, transparent 100%);
    border: none;
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: screen;
    /* Soften the overlay */
    pointer-events: none;
}

body.hovering .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: var(--secondary-teal);
    box-shadow: 0 0 15px var(--secondary-teal);
}

body.hovering .cursor-outline {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.25) 0%, rgba(26, 188, 156, 0) 60%, transparent 100%);
}


.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

.initial-logo-state .nav-container {
    justify-content: center;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo img {
    height: 98px;
    /* 3x larger for hero impact */
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.scrolled .logo img {
    height: 38px;
}



.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
    transition: all 0.3s;
    text-decoration: none;
}


.nav-links a:hover {
    opacity: 1;
    color: var(--secondary-teal);
}

.hero-floating-element {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 15vw;
    color: var(--accent-navy);
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

/* Epic Header Carousel */
.epic-header {
    position: relative;
    width: 100vw;
    height: 85vh;
    /* Balanced for quality */
    overflow: hidden;
    background: var(--bg-dark);
    z-index: 10;
}


.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 85vh;
    z-index: 0;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 12s cubic-bezier(0.1, 0, 0.1, 1);
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
    /* Gentle zoom for better clarity */
}

/* Responsive Image Classes - Added for better mobile framing */
.slide-1 {
    background-image: url('assets/images/header_1_desktop.png');
}

.slide-2 {
    background-image: url('assets/images/header_2_desktop.png');
}

.slide-3 {
    background-image: url('assets/images/header_3_desktop.png');
}

@media (max-width: 768px) {
    .slide-1 {
        background-image: url('assets/images/header_1_mobile.png');
        background-position: center top;
    }

    .slide-2 {
        background-image: url('assets/images/header_2_mobile.png');
        background-position: center top;
    }

    .slide-3 {
        background-image: url('assets/images/header_3_mobile.png');
        background-position: center top;
    }
}




.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0) 60%,
            var(--bg-white) 100%);
    z-index: 1;
}

.carousel-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}


.header-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

body.scrolled .header-scroll-indicator {
    opacity: 0;
    pointer-events: none;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
    margin-bottom: 15px;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* Revealed Hero Section */
.hero-reveal-section {
    padding: 15rem 0 12rem;
    background: var(--bg-white);
    position: relative;
    z-index: 10;
    min-height: 90vh;
    display: flex;
    align-items: center;
}


.reveal-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-reveal-section .hero-title {
    font-size: clamp(3.5rem, 15vw, 10rem);
    line-height: 1.2;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.hero-label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5rem;
    color: var(--primary-pink);
    margin-bottom: 3rem;
    text-transform: uppercase;
    display: block;
}

.hero-subtitle {
    font-size: 1.6rem;
    max-width: 800px;
    margin: 4rem auto;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.8;
}




/* Glass Nav - Modern Floating & Transformation */
.glass-nav {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-max);
    height: 160px;
    /* Taller for big logo */
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-radius: var(--radius-lg);
    z-index: 9990;
    display: flex;
    align-items: center;
    padding: 0 60px;
    border: 1px solid transparent;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Initial center logo */
    align-items: center;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.scrolled .nav-container {
    justify-content: space-between;
}



/* Hide links and actions initially */
.nav-links,
.nav-actions {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

/* Centered Logo initially */
.logo {
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}


body.scrolled .glass-nav {
    top: 10px;
    background: var(--primary-pink);
    height: 60px;
    width: 95%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 80%
}

body.scrolled .glass-nav:hover {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.scrolled .nav-links,
body.scrolled .nav-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.scrolled .logo {
    left: 0;
    transform: translateX(0);
    font-size: 1.5rem;
}




/* Interactive EXPLORAR Button */
.btn-primary {
    position: relative;
    background: var(--primary-pink);
    color: white;
    padding: 1.5rem 4rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(255, 0, 102, 0.3);
}

.btn-primary .btn-icon-circle {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    transition: transform 0.5s;
}

.btn-primary:hover {
    transform: scale(1.1) rotate(-3deg);
    background: var(--accent-navy);
    box-shadow: 0 30px 60px rgba(44, 62, 80, 0.4);
}

.btn-primary:hover .btn-icon-circle {
    transform: rotate(360deg);
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 1rem 1.5rem;
        /* Significantly reduced padding */
        font-size: 0.85rem;
        gap: 0.8rem;
        width: 100%;
        /* Ensure it doesn't overflow container */
        max-width: 320px;
        /* Max readable width */
        justify-content: center;
    }
}

/* Slanted Marquee - Disruptive */
.brand-marquee {
    background: var(--secondary-teal);
    padding: 1.5rem 0;
    transform: rotate(-2deg) scale(1.1);
    margin: 8rem 0;
    z-index: 20;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-family: var(--font-heading);
    color: white;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin: 0;
    padding-right: 2rem;
    display: block;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Product Spotlight Section - Overlap Layout */
.product-spotlight-section {
    padding: 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.spotlight-banner {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
}


.spotlight-banner-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url('assets/images/banner_products_desktop.png');
    opacity: 0.9;
    transition: background-image 0.3s ease;
}

@media (max-width: 768px) {
    .spotlight-banner-img {
        background-image: url('assets/images/banner_products_mobile.png');
        background-position: center top;
    }
}

.spotlight-main-container {
    padding: 0 5%;
    display: grid;
    grid-template-columns: 35% 65%;
    /* Clear separation */
    gap: 4rem;
    max-width: var(--container-max);
    margin: -10vh auto 0;
    /* Tightened overlap */
    align-items: center;
    position: relative;
    z-index: 9;
}



.line-tag {
    color: var(--primary-pink);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 1.5rem;
}

.line-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2.5rem;
    color: var(--accent-navy);
}

.line-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 450px;
}

.btn-outline-dark {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--accent-navy);
    color: var(--accent-navy);
    font-weight: 800;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--accent-navy);
    color: white;
}

.spotlight-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Prevent native scrollbars and bouncy effects */
}

.spotlight-track {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem 0;
    cursor: grab;
    user-select: none;
    will-change: transform;
    /* Performance optimization */
    width: max-content;
    /* Ensure items don't wrap */
}

.spotlight-track:active {
    cursor: grabbing;
}




.spotlight-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.spotlight-item {
    flex: 0 0 320px;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}


.spotlight-item.highlighted {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 0, 102, 0.2);
}

.spotlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.item-img-box {
    margin-bottom: 2rem;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.item-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.spotlight-item:hover .item-img-box img {
    transform: scale(1.08);
}


.brand-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.item-details h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--accent-navy);
    min-height: 3rem;
}

.item-rating {
    color: #e67e22;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.item-rating span {
    color: var(--text-muted);
    font-weight: 700;
}

.btn-buy-now {
    width: 100%;
    padding: 1.2rem;
    background: black;
    color: white;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-buy-now:hover {
    background: var(--primary-pink);
}



@media (max-width: 1024px) {
    .spotlight-main-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .line-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Value Props Grid - Fixed Layout */
.value-props-section {
    padding: 5rem 0 10rem;
    background: var(--bg-white);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.prop-card {
    background: var(--bg-light);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid transparent;
}

.prop-card:hover {
    background: white;
    transform: translateY(-15px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-pink);
}

.prop-icon {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 2rem;
    display: block;
}

.prop-title {
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.2rem;
    color: var(--accent-navy);
    letter-spacing: -0.03em;
}


.prop-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* Manifesto Section - High Impact */
.manifesto-section {
    padding: 15rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
    background: var(--bg-white);
}

.manifesto-head {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.85;
    font-weight: 900;
    text-transform: uppercase;
}

.manifesto-body {
    font-size: 1.5rem;
    color: var(--text-main);
    line-height: 1.6;
    position: relative;
}

.manifesto-body::before {
    content: '10+';
    position: absolute;
    top: -50px;
    left: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--secondary-teal);
    opacity: 0.1;
    z-index: -1;
}

/* REVISION */
/* Horizontal Categories Carousel - MiBimbo Inspired */
.horizontal-carousel-section {
    position: relative;
    /* Desktop relies on JS height, no hard min-height */
    background: var(--bg-white);
    margin: 0;
    padding: 0;
    overflow: visible;
}


.carousel-sticky {
    position: relative;
    /* JS will toggle to Fixed/Absolute */
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

/* Manual Pinning Classes controlled by JS */
.carousel-sticky.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.carousel-sticky.is-bottom {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
}



.carousel-header {
    margin-bottom: 2rem;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease-out;
}

.carousel-header h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
    font-weight: 900;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 5rem;
    /* Space for scrollbar/shadow */
}

.carousel-track {
    display: flex;
    gap: 5vw;
    padding: 0 5%;
    will-change: transform;
    width: max-content;
    /* Ensure it extends horizontally */
}

.category-card {
    flex: 0 0 25vw;
    height: 60vh;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s ease;
    scroll-snap-align: center;
}



.card-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.parallax-bg-img {
    width: 120%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s linear;
    will-change: transform;
}


.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    z-index: 2;
    color: white;
}

.cat-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: white;
    opacity: 0.1;
    line-height: 1;
    position: absolute;
    top: -2rem;
    right: 2rem;
}

.category-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.category-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.btn-cat-explore {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 800;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cat-explore:hover {
    background: white;
    color: var(--accent-navy);
}

@media (max-width: 768px) {

    /* NATIVE MOBILE SCROLL OVERRIDE - ROBUST FIX */
    .horizontal-carousel-section {
        min-height: 0 !important;
        height: auto !important;
        padding-bottom: 5rem;
    }

    .carousel-sticky {
        position: relative !important;
        height: auto !important;
        top: auto !important;
        display: block;
    }

    .carousel-header {
        margin-bottom: 2rem;
    }

    .carousel-track-container {
        padding-bottom: 2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* smooth scroll iOS */
        scroll-snap-type: x mandatory;
        padding-left: 5%;
        padding-right: 5%;
    }

    .carousel-track {
        transform: none !important;
        /* Disable JS transform */
        width: max-content;
        gap: 1rem;
        padding: 0;
    }

    .category-card {
        flex: 0 0 85vw;
        height: 60vh;
        scroll-snap-align: center;
        margin-right: 1rem;
    }

    .category-info {
        padding: 2rem;
    }

    .category-info h3 {
        font-size: 2.5rem;
    }
}


/* Trust & Guarantees Detailed - spectacular mode */
.trust-detailed-section {
    padding: 15rem 5%;
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-detailed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(26, 188, 156, 0.1), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 102, 0.1), transparent 40%);
    pointer-events: none;
}

.section-title-alt {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.8;
    font-weight: 900;
    margin-bottom: 8rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.section-title-alt .accent-text {
    display: block;
    background: linear-gradient(90deg, var(--secondary-teal), var(--primary-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.guarantee-item {
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.guarantee-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.guarantee-item:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 0, 102, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.guarantee-item:hover::after {
    opacity: 1;
}

.g-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    display: block;
    margin-bottom: 2rem;
}

.guarantee-item:hover .g-icon {
    transform: rotate(15deg) scale(1.2);
}

.guarantee-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.guarantee-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.btn-market {
    position: relative;
    z-index: 5;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-market:hover {
    background: white;
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: white;
}

@media (max-width: 1024px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

/* Shipping Section */
.shipping-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.shipping-banner {
    background: var(--grad-power);
    margin: 5rem 5% 0;
    /* Changed margin to allow integration */
    border-radius: var(--radius-lg);
    padding: 8rem 8%;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* For absolute children */
    overflow: hidden;
    /* Crucial for image "popping" */
}


.shipping-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}


.shipping-text {
    font-size: 1.25rem;
    max-width: 500px;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.shipping-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.shipping-img {
    flex: 1;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 2rem;
}

/* Glass UI Panel Background */
.shipping-img::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 85%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    transform: perspective(1200px) rotateY(-15deg) rotateX(4deg);
    z-index: -1;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.shipping-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: perspective(1200px) rotateY(-8deg) translateY(-30px);
    /* Natural Floating */
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shipping-img:hover img {
    transform: perspective(1200px) rotateY(0deg) translateY(-45px) scale(1.05);
}

.shipping-img:hover::before {
    background: rgba(255, 255, 255, 0.12);
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}




@media (max-width: 1024px) {
    .shipping-section {
        padding-top: 15rem;
        /* Force clearance for header */
    }

    .shipping-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .shipping-banner {
        flex-direction: column;
        padding: 4rem 2rem;
        margin-top: 0;
        /* limitation removed, using padding on parent */
    }
}

@media (max-width: 600px) {
    .shipping-section {
        padding-top: 20rem;
        /* DEFINITIVE SAFETY GAP for Header */
    }

    .shipping-stats {
        grid-template-columns: 1fr;
    }

    .stat-num {
        font-size: 2rem !important;
    }

    .shipping-banner {
        flex-direction: column-reverse;
        /* Image on top, Text below */
        margin: 5rem 0rem;
        /* Restore margins */
        width: auto;
        /* Restore auto width */
        border-radius: var(--radius-lg);
        /* Restore radius */
        padding: 3rem 1rem;
        align-items: center;
        text-align: center;
        overflow: visible;
    }

    .shipping-info {
        margin: 0px auto;
        width: 100%;
    }

    .shipping-title {
        font-size: 1.6rem;
        /* Significantly reduced for safety */
        word-break: break-word;
        line-height: 1.2;
        width: 100%;
        margin-bottom: 1rem;
    }

    .shipping-text {
        font-size: 1.3rem;
        /* Slightly smaller body text */
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* Make image large and visible but contained nicely */
    .shipping-img {
        width: 130%;
        max-width: none;
        margin: -3rem auto 1rem;
        /* Pull up */
        transform: none;
        padding: 0;
        z-index: 10;
        pointer-events: none;
    }

    .shipping-img img {
        transform: none;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    }

    .shipping-img::before {
        display: none;
        /* Hide glass effect on mobile to simplify */
    }
}


.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

/* Wholesale Section */
.wholesale-section {
    padding: 5rem 5% 0;
    /* Minimized bottom gap before categories */
}



.wholesale-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.wholesale-card {
    background: white;
    padding: 5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wholesale-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}


.w-label {
    color: var(--primary-pink);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
}

.w-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.w-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.btn-secondary-alt {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--accent-navy);
    color: var(--accent-navy);
    font-weight: 900;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-alt:hover {
    background: var(--accent-navy);
    color: white;
}

.wholesale-image-placeholder {
    height: 600px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wholesale-image-placeholder:hover {
    transform: scale(1.02);
}

.background-parallax-overlay {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: inherit;
    z-index: 0;
}


.wholesale-image-placeholder::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 60%);
    opacity: 0.2;
    animation: rotate 10s infinite linear;
}

.floating-box {
    background: white;
    padding: 2rem 3rem;
    font-weight: 900;
    font-size: 1.5rem;
    text-align: center;
    transform: rotate(-5deg);
    box-shadow: 20px 20px 0 var(--secondary-teal);
    z-index: 10;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Product Section - Premium Grid */
.product-section {
    padding: 15rem 5%;
    background: var(--bg-light);
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    transition: all 0.5s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-20px);
}

/* Philosophy - The "Wow" Moment */
.philosophy-section {
    padding: 20rem 5%;
    background: var(--primary-pink);
    text-align: center;
    color: white;
    position: relative;
}

.philosophy-container h3 {
    font-size: clamp(4rem, 15vw, 12rem);
    color: white;
    line-height: 0.8;
    letter-spacing: -0.08em;
}

/* Contact Section - Spectacular Reform */
.contact-section {
    padding: 15rem 5%;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 0, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 9;
}

.contact-header {
    text-align: left;
    margin-bottom: 8rem;
}

.contact-header h2 {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    color: white;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.contact-header p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.info-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--secondary-teal);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--grad-power);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(255, 0, 102, 0.2);
}

.info-text h4 {
    font-size: 1.2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-text p,
.info-text a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--secondary-teal);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: white;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-teal);
    background: rgba(255, 255, 255, 0.05);
}

.btn-send {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0 15px 30px rgba(255, 0, 102, 0.3);
}

.btn-send:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 0, 102, 0.5);
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 3rem 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}


/* Experience Section - MiBimbo Inspiration */
.experience-section {
    padding: 8rem 5%;
    background: var(--bg-white);
    overflow: hidden;
}


.experience-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.exp-badge {
    margin-bottom: 4rem;
}

.badge-label {
    background: var(--primary-pink);
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    display: inline-block;
}

.badge-main {
    background: var(--primary-pink);
    color: white;
    padding: 1.5rem 2rem;
    font-weight: 900;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: -1px;
    border-radius: 0 16px 16px 16px;
    box-shadow: 0 15px 30px rgba(255, 0, 102, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.badge-main:hover {
    transform: scale(1.05);
}

.badge-main a:link,
a:visited {
    color: white;
    text-decoration: none;
}


.badge-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white;
}

.exp-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent-navy);
    margin-bottom: 8rem;
}

.exp-title .accent {
    color: var(--secondary-teal);
}

.exp-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-navy);
}

.exp-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.exp-list-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.exp-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.exp-icon-circle {
    min-width: 60px;
    height: 60px;
    background: var(--secondary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.2);
}

.exp-item p {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-navy);
    line-height: 1.3;
}

.exp-image-center {
    width: 100%;
}

.exp-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
}

.exp-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.exp-img-frame:hover img {
    transform: scale(1.1);
}

.exp-text-side {
    align-self: flex-end;
}

.exp-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .exp-grid-v3 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .exp-text-side {
        align-self: center;
        text-align: center;
    }
}

/* Group Experience Section - Re-imagined */
.group-experience-section {
    padding: 10rem 5%;
    background: var(--bg-white);
}

.group-card-wide {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 70vh;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.group-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.group-card-bg img {
    width: 120%;
    /* Extra width for parallax */
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.group-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(44, 62, 80, 0.9) 0%,
            rgba(44, 62, 80, 0.4) 50%,
            rgba(44, 62, 80, 0.9) 100%);
    z-index: 1;
}

.group-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.group-left {
    max-width: 50%;
}

.group-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.group-title .outline {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.group-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 450px;
}

.group-right {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 500px;
}

.group-feature-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.feature-icon-sm {
    min-width: 65px;
    height: 65px;
    background: var(--secondary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
    color: white;
}

.feature-icon-sm svg {
    width: 32px;
    height: 32px;
}

.group-feature-item p {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: white;
}



@media (max-width: 1024px) {
    .group-content {
        flex-direction: column;
        gap: 4rem;
        padding: 5rem 8%;
        text-align: center;
    }

    .group-left {
        max-width: 100%;
    }

    .group-card-wide {
        height: auto;
        min-height: 80vh;
    }

    .group-card-overlay {
        background: rgba(44, 62, 80, 0.85);
    }
}

/* Beautiful & Bold Footer - V2 (Horizontal Layout) */


footer {
    padding: 10rem 5% 5rem;
    background: var(--accent-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-bg-text {
    position: absolute;
    bottom: -5%;
    left: -5%;
    font-size: 25vw;
    font-family: var(--font-heading);
    font-weight: 900;
    color: white;
    opacity: 0.03;
    line-height: 0.8;
    pointer-events: none;
    text-transform: uppercase;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.footer-brand-side {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand-side .slogan {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    font-weight: 600;
}


.footer-nav-center {
    display: flex;
    gap: 3rem;
}

.footer-nav-center a {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-nav-center a:hover {
    color: var(--secondary-teal);
}

.footer-nav-center a:visited {
    color: var(--secondary-teal);
}

.footer-socials-right {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    max-width: var(--container-max);
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy a,
a:link,
a:hover {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.footer-legal-links {
    display: flex;
    gap: 4rem;
    /* Increased gap for tilted links */
    align-items: center;
}

.footer-legal-links a {
    display: inline-block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    transform: rotate(-45deg);
    /* Avant-garde tilt */
    transform-origin: center;
}

.footer-legal-links a:hover {
    color: var(--primary-pink);
    transform: rotate(-45deg) scale(1.1);
}


@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav-center {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* Mobile Adjustments - High Fidelity Optimization */
@media (max-width: 768px) {
    :root {
        --container-max: 100%;
    }

    /* Typography & Hierarchy */
    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 1.1;
        margin-bottom: 2rem;
    }

    .line-title,
    .w-title,
    .group-title,
    .exp-title,
    .contact-header h2 {
        font-size: clamp(2.2rem, 10vw, 3rem) !important;
        line-height: 1;
        margin-bottom: 1.5rem;
    }

    .manifesto-section {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }

    .manifesto-left,
    .manifesto-right {
        max-width: 100% !important;
    }

    .manifesto-body {
        font-size: 1.1rem !important;
        text-align: center;
    }

    section {
        padding: 5rem 5% !important;
    }


    /* Navigation Adjustment */
    .glass-nav {
        width: 92%;
        padding: 0 15px;
        height: 60px;
        top: 10px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .logo {
        font-size: 1.6rem !important;
    }

    /* Product Spotlight - Smooth Carousel Fix */
    .spotlight-banner {
        height: 45vh;
    }

    .spotlight-main-container {
        grid-template-columns: 1fr;
        min-width: 0;
        /* Critical for horizontal scroll in grids */
        gap: 4rem;
        margin: -8vh auto 6rem;
        text-align: center;
        padding: 100px;
    }

    .spotlight-info {
        padding: 0 8%;
    }

    .spotlight-carousel-wrapper {
        margin-top: 2rem;
        width: 100%;
        overflow: visible;
        /* Don't clip shadows */
        min-width: 0;
    }

    .spotlight-track {
        padding: 2rem 5% !important;
        gap: 1.5rem;
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: hidden !important;
        scroll-snap-type: none !important;
        /* Disable snap for smooth auto-scroll */
    }


    .spotlight-item {

        flex: 0 0 280px !important;
        flex-shrink: 0 !important;
        /* Don't let items shrink */
        scroll-snap-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background: white;
    }


    .line-desc {
        margin: 0 auto 2.5rem;
        font-size: 1rem;
    }



    .carousel-sticky {
        position: relative !important;
        height: auto !important;
        top: 0 !important;
    }

    .carousel-track-container {
        padding: 2rem 5% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide mobile scrollbar */
    }

    .carousel-track-container::-webkit-scrollbar {
        display: none;
    }

    .parallax-bg-img {
        transform: scale(1.3);
        /* Removed !important to allow JS parallax movement */
    }



    .carousel-track {
        transform: none !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        gap: 1.5rem !important;
    }

    .category-card {
        width: 280px !important;
        flex-shrink: 0 !important;
    }

    .carousel-header {
        text-align: center;
        margin-bottom: 2rem;
    }



    /* Value Props (Image 3 Fix) */
    .props-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .prop-card {
        padding: 2.5rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    /* Shipping Section Mobile */
    .shipping-banner {
        flex-direction: column;
        padding: 5rem 2rem;
        text-align: center;
        gap: 4rem;
    }

    .shipping-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .shipping-img {
        width: 100%;
        max-width: 350px;
        order: -1;
        /* Image first on mobile if desired, or keep default */
    }

    .shipping-title {
        font-size: 2.5rem !important;
    }

    /* Wholesale Section Mobile */
    .wholesale-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .wholesale-card {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .wholesale-image-placeholder {
        height: 300px;
    }

    .floating-box {
        font-size: 1.1rem;
        padding: 1.2rem;
        width: 90%;
        transform: rotate(-2deg);
    }

    /* Experience Grid */

    .exp-grid-v3 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Group Experience - Visibility & "Shine" Fix */
    .group-experience-section {
        padding: 4rem 5% !important;
    }

    .group-card-wide {
        height: auto;
        min-height: 600px;
    }

    .group-card-overlay {
        background: rgba(26, 37, 47, 0.95) !important;
        /* Darker for better contrast */
    }

    .group-content {
        flex-direction: column;
        padding: 6rem 1.5rem;
        text-align: center;
        z-index: 20;
    }

    .group-title {
        font-size: clamp(2.2rem, 10vw, 3rem) !important;
        line-height: 1.1;
        color: #ffffff !important;
        font-weight: 900 !important;
    }

    .group-title .outline {
        color: #ffffff !important;
        -webkit-text-stroke: 0px transparent !important;
        display: inline-block;
        margin-top: 0.5rem;
    }

    .group-desc {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1rem;
        margin-top: 2rem;
    }

    .group-right {
        max-width: 100%;
        gap: 2.5rem;
        margin-top: 4rem;
    }


    .feature-icon-sm {
        min-width: 55px;
        height: 55px;
        background: var(--primary-pink);
        /* Make icons "shine" more */
    }

    .group-feature-item p {
        font-size: 1.1rem;
    }


    /* Footer Refinement */
    .footer-top {
        flex-direction: column;
        gap: 3.5rem;
        text-align: center;
    }

    .footer-nav-center {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    /* Disable Parallax & Floating Elements selectively */
    /* 
    .parallax-slow,
    .parallax-fast,
    .parallax-img-bg:not(.category-card .parallax-bg-img) {
        transform: none !important;
        transition: none !important;
        position: relative;
        top: 0 !important;
        left: 0 !important;
    }
    */


    /* Allow categories parallax on mobile */
    .category-card .parallax-bg-img {
        transform: scale(1.4);
        /* Removed !important */
    }



    .footer-bg-text {
        transform: none !important;
        position: relative !important;
        opacity: 0.05 !important;
        /* Keep only background text subtle */
    }


    .hero-floating-element {
        display: none !important;
    }

    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}



/* Global Animations & Utilities */
.fade-up-target {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Floating WhatsApp Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bubbleGlow 2s infinite;
}

@keyframes bubbleGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-bubble:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #128c7e;
}

/* Footer Social Icons Refinement */
.footer-socials-right {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: translateY(-8px) rotate(8deg);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 0, 102, 0.3);
}

.social-icon svg {
    transition: transform 0.4s;
}

.social-icon:hover svg {
    transform: scale(1.2);
}

/* Captcha styling for FormSubmit (it adds an overlay) */
#formsubmit-captcha {
    margin-top: 1rem;
}

/* Swipe Hint Styles */
.mobile-swipe-hint {
    display: none;
    /* Hidden on Desktop */
}

@media (max-width: 768px) {
    .mobile-swipe-hint {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        color: var(--text-muted);
        opacity: 0.8;
    }

    .hand-icon {
        width: 40px;
        height: 40px;
        color: var(--primary-pink);
        animation: swipeAnim 2s infinite ease-in-out;
    }

    .hand-icon svg {
        width: 100%;
        height: 100%;
    }

    .hint-text {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--secondary-teal);
    }

    @keyframes swipeAnim {
        0% {
            transform: translateX(-10px);
            opacity: 0.5;
        }

        50% {
            transform: translateX(10px);
            opacity: 1;
        }

        100% {
            transform: translateX(-10px);
            opacity: 0.5;
        }
    }
}