/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors extracted from the Aquilux Logo */
    --aq-blue-dark: #124d8b;
    --aq-blue-light: #3a97d8;
    --aq-gold: #dca73b;
    --aq-bg-light: #fafafb;
    --aq-product-bg: #f4f5f7;
    --text-dark: #1a1a1a;
    
    /* Font Families */
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-logo: 'Michroma', sans-serif;
    --smooth-fast: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --smooth-medium: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    --smooth-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--aq-bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- Apply Logo Font to Headers & Brand Elements --- */
h1, h2, h3{
    font-family: var(--font-logo);
}
h4, h5, h6,
.aiko-title, 
.aiko-dark-title, 
.mega-column-title, 
.footer-heading,
.navbar-brand {
    --font-body: 'Plus Jakarta Sans', sans-serif;
}
.btn-gradient, 
.btn-gold, 
.btn-outline-pill,
.hover-lift, 
.product-nav-btn, 
.navbar-nav .nav-link, 
.footer-list a, 
.footer-legal-links a, 
.social-circles a {
    transition: var(--smooth-fast) !important;
}
.product-card, 
.product-image-box img, 
.product-add-cart,
.btn-icon {
    transition: var(--smooth-medium) !important;
}
.product-actions {
    transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important; 
}
.product-image-box .img-main { transition: opacity 0.5s ease-in-out !important; }
.product-image-box .img-hover { transition: opacity 0.5s ease-in-out !important; }
.category-squircle, 
.category-squircle img, 
.category-name, 
.category-link {
    transition: var(--smooth-medium) !important;
}
.category-link:hover .category-squircle {
    transform: translateY(-8px) scale(1.03); 
}
.aiko-feature-card, 
.aiko-dark-card, 
.aiko-dark-img-wrapper img {
    transition: var(--smooth-medium) !important;
}
.banner-img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.partner-logo {
    transition: var(--smooth-fast) !important;
}

/* Tweak the hero titles slightly since the new font is naturally wider */
.display-2 {
    font-size: 3.5rem;
    line-height: 1.3;
}
.display-5 {
    line-height: 1.3;
}

/* --- Background Blobs --- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.3;
}
.blob-blue {
    top: -5%; right: -5%;
    width: 600px; height: 600px;
    background: var(--aq-blue-light);
}
.blob-gold {
    top: 25%; left: -10%;
    width: 450px; height: 450px;
    background: var(--aq-gold);
}

/* --- Gradients --- */
.btn-gradient {
    background: linear-gradient(90deg, var(--aq-blue-light), var(--aq-blue-dark));
    border: none;
    transition: 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, var(--aq-blue-dark), var(--aq-blue-light));
    box-shadow: 0 10px 20px rgba(58, 151, 216, 0.3);
}
.text-gradient {
    background: linear-gradient(90deg, var(--aq-blue-dark), var(--aq-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Header / Navigation --- */
.header-wrapper {
    padding-top: 20px;
    transition: all 0.3s ease;
}
#main-nav {
    border-radius: 50px;
    padding: 10px 20px;
}
.header-wrapper.sticky {
    padding-top: 0;
}
.header-wrapper.sticky #main-nav {
    border-radius: 0;
    max-width: 100%;
}
/* --- Main Menu Typography --- */
.navbar-nav .nav-link {
    font-size: 0.75rem !important;
    letter-spacing: 1.2px;
    font-weight: 700;
    color: #333 !important;
    padding: 25px 12px !important;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--aq-blue-dark) !important;
}
.dropdown > a::after {
    display: none !important;
}

/* --- Full-Width Mega Menu Logic --- */
.mega-dropdown {
    position: static !important; 
}
.mega-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0;
    margin-top: 10px !important;
    border-top: 1px solid #f0f0f0 !important;
    transform: none !important;
}
.mega-dropdown:hover .mega-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

/* --- Mega Menu Columns & Typography --- */
.mega-column-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #000;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    letter-spacing: 0.5px;
}
.mega-link-list li {
    margin-bottom: 18px;
}
.mega-link-list a {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #777;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    text-transform: uppercase;
}
.mega-link-list a:hover {
    color: var(--aq-blue-light);
}
.mega-promo-img {
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    object-position: center right;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 80vh;
    padding-top: 150px;
}
.max-w-700 { max-width: 700px; }

/* --- Product Cards --- */
.product-card {
    background: transparent;
    border: none;
    cursor: pointer;
}
.product-image-box {
    background-color: var(--aq-product-bg);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-box img {
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease-in-out;
}
.img-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

/* Right Side Actions */
.product-actions {
    position: absolute;
    right: -60px;
    bottom: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: right 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.product-actions a {
    color: #666;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.product-actions a:hover { color: var(--aq-blue-light); }
.product-actions a:not(:last-child) { border-bottom: 1px solid #f0f0f0; }

.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .product-actions { right: 20px; }

.product-info {
    padding-top: 20px;
    text-align: left;
}
.product-title {
    font-size: 1rem;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden; 
    text-overflow: ellipsis;
}
.product-price-row { display: block; }
.product-add-cart {
    display: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}
.product-add-cart:hover { color: var(--aq-blue-light) !important; }
.product-card:hover .product-price-row { display: none; }
.product-card:hover .product-add-cart { display: inline-block; }

/* =========================================
   FLOATING MOBILE BOTTOM NAVIGATION (PILL)
========================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 65px;
    z-index: 1050;
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-bottom-nav .nav-item {
    color: #4a4a4a;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 10px;
}
.mobile-bottom-nav .nav-item.active {
    color: var(--aq-blue-dark);
}
.mobile-bottom-nav .nav-item.active::after {
    display: none; 
}
.cart-icon {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: 5px;
    right: 2px;
    background: var(--aq-blue-dark);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-radius: 50%;
    height: 16px;
    min-width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1.5px solid #ffffff;
}

@media (max-width: 768px) {
    .product-image-box { height: 200px; padding: 15px; }
    .product-title { font-size: 0.85rem; }
    .hero-section { min-height: 60vh; padding-top: 120px; }
}

/* --- Modern Slider Hero --- */
.hero-slider-wrapper {
    height: 90vh;
    min-height: 750px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    overflow: hidden;
    background-color: var(--aq-bg-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center right;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(255,255,255,0.1) 40%, rgba(0,0,0,0.3) 100%);
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.25, 1, 0.3, 1);
}
.carousel-item.active .slide-bg {
    transform: scale(1);
}
.carousel-caption {
    position: absolute;
    right: 15%; left: 10%;
    bottom: auto; top: 0;
    z-index: 10;
    padding-bottom: 120px; 
}

/* Button with Gold Gradient */
.btn-gold {
    background: linear-gradient(90deg, var(--aq-gold), #e8ba4c);
    color: #fff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(220, 167, 59, 0.4) !important;
    color: #fff;
}

.custom-indicators {
    bottom: 150px;
    justify-content: flex-start;
    left: 10%;
    margin: 0;
    z-index: 15;
}
.custom-indicators button {
    width: 25px !important;
    height: 4px !important;
    border-radius: 2px;
    background-color: var(--aq-blue-dark) !important;
    opacity: 0.2 !important;
    border: none !important;
    margin-right: 8px !important;
    transition: all 0.3s ease;
}
.custom-indicators button.active {
    opacity: 1 !important;
    width: 45px !important;
    background-color: var(--aq-gold) !important;
}

.hero-partner-strip {
    position: absolute;
    bottom: 0; left: 0;
    z-index: 20;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    padding-top: 50px;
}
.partner-divider {
    width: 80%;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 1;
}
.fs-7 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;}
.letter-spacing-1 { letter-spacing: 1px; }

.partner-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s;
    cursor: default;
}
.partner-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-slider-wrapper { 
        height: 90svh;
        min-height: 600px; 
        border-bottom-left-radius: 40px; 
        border-bottom-right-radius: 40px; 
    }
    .carousel-caption { 
        left: 5%; 
        right: 5%; 
        top: 50px;
        bottom: 170px; 
        padding-bottom: 0 !important; 
        align-items: center !important; 
        text-align: center !important; 
        justify-content: center !important;
    }
    .carousel-caption .display-2 {
        font-size: 2.2rem !important; 
        line-height: 1.2;
        margin-bottom: 1rem !important;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.6);
    }
    .carousel-caption .lead {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        color: #111 !important;
        font-weight: 700 !important;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    .carousel-caption .badge {
        font-size: 0.65rem !important;
    }
    .carousel-caption .btn {
        font-size: 0.8rem;
        padding: 12px 25px !important;
    }
    .custom-indicators { 
        left: 0; 
        justify-content: center; 
        width: 100%; 
        bottom: 130px; 
    }
    .hero-partner-strip {
        padding-top: 30px;
        padding-bottom: 25px !important;
    }
    
    .hero-partner-strip p {
        font-size: 0.6rem !important;
        margin-bottom: 10px !important;
    }
    .hero-partner-strip .gap-md-5 { gap: 0.8rem !important; }
    .hero-partner-strip .gap-4 { gap: 1rem !important; }
    .partner-logo i { font-size: 1.5rem !important; }
    .partner-logo span { font-size: 0.6rem !important; }
}
/* =========================================
   YOUTUBE BACKGROUND VIDEO STYLES
========================================= */

.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none; /* Prevents users from clicking/pausing the video */
    background-color: #000;
}

.youtube-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* This forces the 16:9 video to scale and act like object-fit: cover */
    width: 100vw;
    height: 56.25vw; 
    min-height: 100%;
    min-width: 177.77vh; 
}

/* Overlay gradient to ensure the bottom partner logos are visible over bright videos */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}
/* --- Category Squircle Carousel --- */
.category-link {
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    transition: all 0.3s ease;
}
.category-squircle {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: var(--aq-product-bg);
    border-radius: 38%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 20px;
    border: 2px solid transparent;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border 0.3s ease;
}
.category-squircle img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}
.category-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.category-link:hover .category-squircle {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(58, 151, 216, 0.15);
    border-color: var(--aq-blue-light);
    background-color: #fff;
}
.category-link:hover .category-squircle img { transform: scale(1.15); }
.category-link:hover .category-name { color: var(--aq-blue-dark); }

/* --- Minimal Product Carousel Navigation --- */
.product-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.product-nav-btn:hover {
    background-color: var(--aq-blue-dark);
    border-color: var(--aq-blue-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 77, 139, 0.2);
}
.product-nav-btn:active { transform: translateY(0); }
.productSwiper .swiper-slide { height: auto; }

/* --- Creative Banner Section --- */
.creative-banner {
    background: linear-gradient(135deg, var(--aq-blue-dark) 0%, #0a294b 100%);
    border-radius: 40px;
    overflow: hidden;
}
.banner-glow-orb {
    position: absolute;
    top: -20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--aq-blue-light);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
}
.text-white-75 { color: rgba(255, 255, 255, 0.75); }
.tracking-wide { letter-spacing: 1px; }
.banner-img {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
}
.creative-banner:hover .banner-img {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    animation: floating float 6s ease-in-out infinite;
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.05);
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}
.text-primary-blue { color: var(--aq-blue-dark) !important; }

@media (max-width: 991px) {
    .creative-banner { text-align: center; border-radius: 30px; }
    .banner-feature-list li { justify-content: center; }
    .floating-badge { left: 20px; bottom: -20px; }
    .banner-img { transform: perspective(1000px) rotateY(0deg); }
}

/* =========================================
   AQUILLUX THEMED COMPOUND SECTION
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500&display=swap');

.aiko-replica-section {
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050505;
}

/* --- LIGHT TOP HALF --- */
.aiko-light-wrapper {
    background-color: #ffffff;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    position: relative;
    z-index: 2;
    padding-bottom: 0; 
}
.aiko-subtitle {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.aiko-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -1px;
}

/* Feature Cards Grid (UPDATED TO BLUE/GOLD BRANDING) */
.aiko-feature-card {
    background-color: #f7f8fa;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.aiko-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    background-color: #ffffff;
}
.aiko-icon-gradient {
    width: 48px;
    height: 48px;
    /* Replaced neon pink with Aquilux Brand Gradient */
    background: linear-gradient(135deg, var(--aq-blue-light) 0%, var(--aq-blue-dark) 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(58, 151, 216, 0.25);
}
.aiko-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin: 0;
}
.aiko-feature-card-accent::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    /* Replaced with Blue to Gold transition */
    background: linear-gradient(90deg, var(--aq-blue-dark) 0%, var(--aq-gold) 100%);
}

.aiko-brand-logo { color: #000; }
.aiko-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
}
.aiko-author {
    font-size: 0.8rem;
    font-weight: 800;
    color: #000;
}

.aiko-portrait-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: -5px;
    max-width: 600px;
}
.aiko-portrait-img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); 
}
.aiko-float-item {
    position: absolute;
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #555;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: aikoFloat 6s ease-in-out infinite;
    z-index: 5;
}
.float-shape-1 { top: 10%; left: -15%; animation-delay: 0s; }
.float-shape-2 { top: 35%; right: -10%; animation-delay: 2s; border-radius: 50%; }
.float-shape-3 { bottom: 25%; left: -5%; animation-delay: 4s; }

@keyframes aikoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

/* --- DARK BOTTOM HALF --- */
.aiko-dark-wrapper {
    background-color: #080808;
    margin-top: -60px;
    padding-top: 140px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Replaced Neon Pink/Purple with Aquilux Glow */
.aiko-neon-background {
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 100%;
    background: 
        radial-gradient(circle at 20% 120%, rgba(58, 151, 216, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 80% 120%, rgba(220, 167, 59, 0.2) 0%, transparent 60%),
        repeating-linear-gradient(90deg, transparent, transparent 10%, rgba(255,255,255,0.02) 10%, rgba(255,255,255,0.02) 20%);
    z-index: 0;
    pointer-events: none;
}
.aiko-dark-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.aiko-dark-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.aiko-dark-card {
    background-color: #141414;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.aiko-dark-card:hover {
    transform: translateY(-8px);
    /* Changed hover glow to Brand Blue */
    border-color: var(--aq-blue-light); 
}
.aiko-dark-img-wrapper {
    width: 100%;
    height: 200px;
    background: #222;
    overflow: hidden;
}
.aiko-dark-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.aiko-dark-card:hover .aiko-dark-img-wrapper img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}
.aiko-dark-card-body { padding: 30px; }
.aiko-dark-card-body h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.aiko-dark-card-body p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .aiko-title { font-size: 2rem; }
    .aiko-quote { font-size: 1.5rem; }
    .aiko-float-item { display: none; } 
    .aiko-light-wrapper { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; }
    .aiko-dark-wrapper { margin-top: -40px; padding-top: 100px; }
}

/* =========================================
   BOTTOM TABBED S-CURVE CUTOUTS
========================================= */
.aiko-bottom-cutout-left {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 70px;
    height: 45px;
    background-color: #ffffff;
    border-top-right-radius: 25px;
    z-index: 10;
}
.aiko-bottom-cutout-left::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at top right, transparent 25px, #ffffff 25.5px);
}
.aiko-bottom-cutout-right {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 70px;
    height: 45px;
    background-color: #ffffff;
    border-top-left-radius: 25px;
    z-index: 10;
}
.aiko-bottom-cutout-right::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at top left, transparent 25px, #ffffff 25.5px);
}
@media (max-width: 768px) {
    .aiko-bottom-cutout-left, .aiko-bottom-cutout-right {
        width: 40px;
        height: 30px;
        border-radius: 15px;
    }
    .aiko-bottom-cutout-left::before {
        width: 15px; height: 15px;
        background: radial-gradient(circle at top right, transparent 15px, #ffffff 15.5px);
    }
    .aiko-bottom-cutout-right::before {
        width: 15px; height: 15px;
        background: radial-gradient(circle at top left, transparent 15px, #ffffff 15.5px);
    }
}

/* =========================================
   FINAL PRODUCT SECTION & FOOTER
========================================= */
.final-products-section {
    background-color: #ffffff;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    position: relative;
    z-index: 2;
}

.aquilux-footer {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: -80px; 
    padding-top: 140px; 
    position: relative;
    z-index: 1;
}
.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}
.text-white-75 { color: rgba(255, 255, 255, 0.75); }
.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}
.footer-email {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-email:hover { color: var(--aq-gold); }

.footer-list li { margin-bottom: 12px; }
.footer-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-circles a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-circles a:hover {
    background-color: var(--aq-blue-light);
    border-color: var(--aq-blue-light);
    color: #ffffff;
    transform: translateY(-3px);
}
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0;
    opacity: 1;
}
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}
.footer-legal-links a:hover { color: #ffffff; }

@media (max-width: 768px) {
    .final-products-section {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    .aquilux-footer {
        margin-top: -40px;
        padding-top: 100px;
    }
}
.add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}