/** Shopify CDN: Minification failed

Line 1261:11 Expected identifier but found whitespace
Line 1261:12 Unexpected "0"

**/
:root {
    /* Washido Samurai Palette - Slate & Gold */
    --clr-bg: #1A2126;           
    --clr-bg-deep: #12171A;
    --clr-surface: #263038;      
    --clr-surface-light: #323F49; 
    
    /* Logo Colors */
    --clr-primary: #F7C04A;       /* Golden Yellow (Moon/Sponge) */
    --clr-primary-bright: #FFE082;
    --clr-primary-deep: #D9A02A;
    
    --clr-secondary: #E07A3E;     /* Shiba Orange */
    --clr-secondary-bright: #FF9B63;
    
    --clr-accent: #6E4539;        /* Armor Brown */
    --clr-accent-bright: #8A5A4B;
    
    --clr-gold: #F7C04A;
    --clr-gold-bright: #FFE082;

    /* Glows */
    --clr-primary-glow: rgba(247, 192, 74, 0.3);
    --clr-secondary-glow: rgba(224, 122, 62, 0.3);
    --clr-accent-glow: rgba(110, 69, 57, 0.3);
    
    /* Universal Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-primary-deep) 0%, var(--clr-primary) 50%, var(--clr-primary-bright) 100%);
    --grad-secondary: linear-gradient(135deg, #E07A3E 0%, #D9A02A 100%);
    --grad-eco: linear-gradient(135deg, #F7C04A 0%, #E07A3E 100%);
    --grad-gold: linear-gradient(135deg, #E6B861, #FDE6A4, #CC983B, #FDE6A4, #B37D26);
    
    /* Mesh & Dark Backgrounds */
    --grad-dark: radial-gradient(circle at center, var(--clr-surface) 0%, var(--clr-bg) 100%);
    --grad-mesh: radial-gradient(at 0% 0%, rgba(247, 192, 74, 0.08) 0px, transparent 50%),
                 radial-gradient(at 100% 100%, rgba(224, 122, 62, 0.08) 0px, transparent 50%),
                 radial-gradient(at 100% 0%, rgba(110, 69, 57, 0.08) 0px, transparent 50%);

    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    
    --clr-text: #F0F4F8;
    --clr-text-muted: #A0AAB2;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Utilities */
    --border-radius: 20px;
    --transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    
    /* Animation Durations */
    --ani-fast: 0.3s;
    --ani-med: 0.6s;
    --ani-slow: 1.2s;
}

/* Theme Utilities - Dynamic Backgrounds for Sections */
.theme-tech {
    --clr-primary: #00f2fe;
    --clr-primary-glow: rgba(0, 242, 254, 0.4);
    background: radial-gradient(circle at 0% 0%, rgba(0, 242, 254, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 100% 100%, rgba(123, 47, 247, 0.15) 0%, transparent 40%),
                var(--clr-bg) !important;
}

.theme-eco {
    --clr-primary: var(--clr-accent);
    --clr-primary-glow: var(--clr-accent-glow);
    --grad-primary: var(--grad-eco);
    background: radial-gradient(circle at 100% 0%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
                var(--clr-bg) !important;
}

.theme-luxe {
    --clr-primary: var(--clr-gold);
    --clr-primary-glow: rgba(255, 209, 102, 0.3);
    --grad-primary: var(--grad-gold);
    background: radial-gradient(circle at 50% 50%, rgba(255, 209, 102, 0.08) 0%, transparent 60%),
                var(--clr-bg) !important;
}

/* Force Reset for Shopify Theme Wrappers */
#MainContent, .main-content, .shopify-section, main[role="main"] {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.glass {
    background: var(--grad-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- New Advanced Animations --- */

/* Floating Foam Particles */
.foam-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(2px);
    animation: float-up var(--duration) linear infinite;
    opacity: 0;
}

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}

/* Reveal Text Animation */
.reveal-text {
    overflow: hidden;
    display: block;
}

.reveal-text span {
    display: block;
    transform: translateY(100%);
    transition: transform var(--ani-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.observe.in-view .reveal-text span {
    transform: translateY(0);
}

/* Parallax Core Engine */
.parallax-wrap {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for movement */
    z-index: 0;
    pointer-events: none;
}

.parallax-bg {
    background-attachment: fixed; /* CSS Parallax - Much more reliable than JS for backgrounds */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Removed will-change to avoid fixed attachment conflicts */
}

.parallax-floating {
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Glass Highlight Hover */
.glass-hover {
    position: relative;
    overflow: hidden;
}

.glass-hover::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-hover:hover::after {
    opacity: 1;
}

/* Scanner Line Animation for Images */
.scanner-img {
    position: relative;
    overflow: hidden;
}

.scanner-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--grad-primary);
    box-shadow: 0 0 15px var(--clr-primary);
    z-index: 2;
    animation: scan 4s linear infinite;
    opacity: 0.6;
}

@keyframes scan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-text {
    background: linear-gradient(90deg, #fff 0%, var(--clr-primary) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg) !important;
    color: var(--clr-text) !important;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.global-parallax-bg {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: var(--grad-mesh);
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

.parallax-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    opacity: 0.4;
}

.orb-1 {
    top: 10%; left: 5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--clr-primary) 0%, transparent 70%);
}

.orb-2 {
    top: 40%; right: 5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--clr-secondary) 0%, transparent 70%);
}

.orb-3 {
    top: 70%; left: 20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--clr-accent) 0%, transparent 70%);
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(3, 3, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    display: flex;
    align-items: baseline;
    text-transform: uppercase;
}

.logo-dot {
    color: var(--clr-primary);
    font-size: 2.5rem;
    line-height: 0;
    margin-left: 2px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 101;
}

.header-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0px 10px 15px rgba(247, 192, 74, 0.2));
}

.navbar.scrolled .header-logo {
    width: 90px;
    filter: drop-shadow(0px 5px 10px rgba(247, 192, 74, 0.15));
}

.footer-logo {
    width: 220px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0px 15px 25px rgba(247, 192, 74, 0.15));
}

/* Logo Animations */
.logo-animated {
    animation: gentle-float 6s ease-in-out infinite;
}

.logo-animated:hover {
    transform: scale(1.05) rotate(5deg) translateY(-5px);
    filter: drop-shadow(0px 15px 25px rgba(247, 192, 74, 0.4));
    animation-play-state: paused;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.logo-text { display: none; }
.logo-dot { display: none; }

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--clr-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-btn {
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-btn:hover {
    color: var(--clr-primary);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Buttons and Hovers */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::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: all 0.5s ease;
}

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

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 15px var(--clr-primary-glow);
    border: none;
}

.btn-primary:hover {
    background: var(--grad-primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--clr-primary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--clr-primary);
}

.btn-secondary:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--clr-primary-glow);
}

/* Animations (Intersection Observer) */
.observe {
    opacity: 0;
    will-change: transform, opacity;
}

.fade-up { transform: translateY(40px); }
.fade-down { transform: translateY(-40px); }
.fade-left { transform: translateX(40px); }
.fade-right { transform: translateX(-40px); }
.zoom-in { transform: scale(0.9); }

.observe.in-view {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%; /* for parallax */
    z-index: -1;
    overflow: hidden;
    transform: translateZ(0); 
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #07070b 0%, rgba(7,7,11,0.92) 50%, rgba(7,7,11,0.6) 100%);
}

.hero-content {
    max-width: 650px;
    padding: 0 5%;
}

.hero-pretitle {
    color: var(--clr-primary);
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff; /* Forced white for contrast */
    margin-bottom: 2.5rem;
    max-width: 550px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background: var(--grad-bg-main);
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--grad-surface);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border-top: 3px solid var(--clr-primary);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: var(--clr-surface-light);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Banner section */
.banner-cta {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 130%;
    z-index: -1;
}

.banner-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.banner-content p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}


/* Catalog Pages Details */
.page-header {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(7, 7, 11, 0.75), rgba(7, 7, 11, 0.75)), url("//washido.com.mx/cdn/shop/t/23/assets/beading_hood_black.png?v=163067895129637087351778120044");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(transparent, var(--clr-bg));
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--clr-text-muted);
    font-size: 1.2rem;
}

.catalog-section {
    padding: 5rem 0 8rem;
    background-image: linear-gradient(rgba(7, 7, 11, 0.96), rgba(7, 7, 11, 0.96)), url("//washido.com.mx/cdn/shop/t/23/assets/luxury_car_clean.png?v=43187052797522865041778120044");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
    padding: 4rem;
    background: var(--grad-surface);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.product-showcase.reverse {
    flex-direction: row-reverse;
}

.product-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--clr-primary-glow) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(50px);
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    z-index: 2;
    position: relative;
    max-height: 450px;
    object-fit: contain;
}

/* Product Specific Background Patterns */
.bg-insignia {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(247, 37, 133, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(4, 13, 26, 0.8), rgba(4, 13, 26, 0.8)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f72585' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 30V15a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v25a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V30zM5 20v15H1V20h4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-wax {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 209, 102, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(4, 13, 26, 0.8), rgba(4, 13, 26, 0.8)),
        url("data:image/svg+xml,%3Csvg width='42' height='48' viewBox='0 0 42 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 0l21 12v24L21 48 0 36V12L21 0zm0 1.15L1.1 12.53v22.94L21 46.85l19.9-11.38V12.53L21 1.15z' fill='%23ffd166' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.bg-clean {
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(4, 13, 26, 0.8), rgba(4, 13, 26, 0.8)),
        url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300f2fe' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.benefit-visual {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.benefit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-visual:hover img {
    transform: scale(1.1);
}

.benefit-visual-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Results Gallery */
.results-gallery {
    padding: 6rem 0;
    background: var(--clr-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
}

.product-details {
    flex: 1;
}

.badge {
    background: var(--clr-surface-light);
    color: var(--clr-primary);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.product-name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.product-variants {
    margin-bottom: 2rem;
}

.product-variants h4 {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.variant-chips {
    display: flex;
    gap: 0.8rem;
}

.chip {
    background: var(--clr-surface);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.chip:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
}

.chip.active {
    background: white;
    color: var(--clr-bg);
    border-color: white;
    font-weight: 600;
}

.add-to-cart-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}


/* Footer */
.footer {
    background: #020810;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--clr-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--clr-primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: white;
    margin-left: 10px;
}


/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--clr-surface-light);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transform: translateX(150%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    width: 28px;
    height: 28px;
    background: #00ca51;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.toast-message {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.toast-link {
    color: var(--clr-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: auto;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .product-showcase, .product-showcase.reverse {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-content {
        padding: 0 2rem;
    }
}

/* --- Tech Page Enhancements --- */
.tech-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Molecular Animation */
.molecule-viz {
    width: 100%;
    height: 300px;
    background: var(--clr-surface);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.core {
    width: 60px;
    height: 60px;
    background: #555;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.shield-ring {
    position: absolute;
    border: 2px solid var(--clr-primary);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
    opacity: 0;
}

@keyframes pulse-ring {
    0% { width: 60px; height: 60px; opacity: 1; }
    100% { width: 250px; height: 250px; opacity: 0; }
}

.agent {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--clr-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--clr-primary);
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    flex: 1;
    background: var(--grad-surface);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--clr-primary);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-heading);
    box-shadow: 0 5px 15px var(--clr-primary-glow);
}

.process-step h4 {
    margin: 1rem 0;
    color: var(--clr-primary);
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }
}
    margin: 0 auto;
}
.pitch-text strong {
    color: #ffffff;
    font-weight: 700;
}

.pillars-section {
    padding: 6rem 0;
    background: var(--clr-bg);
}
.table-container {
    overflow-x: auto;
    background: var(--clr-surface);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.tech-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.tech-table th, .tech-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tech-table th {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    font-size: 1.2rem;
    text-transform: uppercase;
}
.tech-table td {
    color: var(--clr-text-muted);
}
.tech-table td strong {
    color: white;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Page Specifics --- */
.contact-section, .b2b-section {
    padding: 5rem 0;
    background: var(--clr-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
}

.contact-info p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--clr-primary);
}

.info-item h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin: 2rem 0;
}

/* Forms CSS */
.premium-form {
    background: var(--clr-surface);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.5rem;
}

.form-group input, 
.form-group textarea,
.premium-select {
    width: 100%;
    background: rgba(4, 13, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus,
.premium-select:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 10px var(--clr-primary-glow);
    background: rgba(4, 13, 26, 0.9);
}

.premium-select {
    cursor: pointer;
    appearance: none;
}
.premium-select option {
    background: var(--clr-bg);
    color: white;
}

/* B2B Sections */
.b2b-header {
    margin-bottom: 4rem;
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.b2b-card {
    background: var(--grad-surface);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 254, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.b2b-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.b2b-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: var(--clr-primary);
}

.b2b-form-inner {
    background: rgba(0, 106, 255, 0.03);
    border: 1px solid rgba(0, 106, 255, 0.2);
    padding: 3rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-grid, .b2b-grid {
        grid-template-columns: 1fr;
    }
    .premium-form {
        padding: 2rem;
    }
}
@media (max-width: 600px) {
    .b2b-form-inner form div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
}

/* --- Eco-Refill Specifics (Expanded) --- */
.eco-expanded-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--clr-bg) 0%, rgba(4, 30, 20, 0.6) 100%);
    border-bottom: 3px solid #00d26a;
}
.eco-header {
    margin-bottom: 5rem;
}
.eco-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}
.eco-stat-card {
    background: rgba(0, 210, 106, 0.05);
    border: 1px solid rgba(0, 210, 106, 0.2);
    border-top: 3px solid #00d26a;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}
.eco-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 210, 106, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.eco-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.eco-stat-number {
    font-size: 4rem;
    color: #00d26a;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1rem;
}
.eco-cta-box {
    background: var(--clr-surface);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.eco-cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.eco-cta-content p {
    color: var(--clr-text-muted);
}

.chip.eco-chip {
    border-color: #00d26a;
    color: #00d26a;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.chip.eco-chip:hover {
    background: rgba(0, 210, 106, 0.1);
}
.chip.eco-chip.active {
    background: #00d26a;
    color: var(--clr-bg);
    border-color: #00d26a;
    font-weight: 700;
}
.eco-banner {
    background: rgba(0, 210, 106, 0.1);
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 210, 106, 0.3);
}

@media (max-width: 900px) {
    .eco-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}
