/* Design System */
:root {
    --color-bg: #FFFFFF;
    --color-text: #2D3436;
    --color-primary-cyan: #5FBFC9;
    /* Branding Color */

    /* New Airy Gradient */
    --gradient-airy: linear-gradient(180deg, #FFFFFF 0%, #E0F7FA 100%);

    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-btn: 50px;

    --shadow-soft: 0 10px 30px rgba(95, 191, 201, 0.15);
}

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

body {
    font-family: 'Fredoka', sans-serif;
    /* Rounded friendly font */
    color: var(--color-text);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Header */
/* Floating Glass Pill Header */
.clean-header {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    padding: 10px 30px;
    z-index: 1000;

    /* Glass Pill Base */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.clean-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    /* Stronger opaque glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(95, 191, 201, 0.15);
    /* Soft cyan shadow */
    padding: 8px 30px;
    /* Slightly more compact */
}

/* Update Nav Links for Glass Header */
.clean-header.scrolled .nav-links a {
    color: var(--color-text);
    /* Dark text on light glass */
}

.clean-header.scrolled .nav-links a:hover {
    color: var(--color-primary-cyan);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    flex-direction: column;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.clean-header.scrolled .logo-icon {
    height: 45px;
}

.clean-header.scrolled .logo-text {
    height: 30px;
}

.logo-container:hover .logo-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-icon {
        height: 45px;
    }

    .logo-text {
        height: 32px;
    }

    .logo-container {
        gap: 10px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.clean-header.scrolled .nav-links a:hover {
    background: rgba(95, 191, 201, 0.1);
    color: var(--color-primary-cyan);
}

.nav-links .nav-icon {
    stroke-width: 2.5px;
    transition: transform 0.3s ease;
}

.nav-links a:hover .nav-icon {
    transform: scale(1.2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: none;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Hamburger Bars */
.hamburger-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hamburger-bar:nth-child(1) {
    top: 12px;
}

.hamburger-bar:nth-child(2) {
    top: 20px;
}

.hamburger-bar:nth-child(3) {
    top: 28px;
}

/* Scrolled State - Darker bars for visibility */
.clean-header.scrolled .hamburger-bar {
    background: var(--color-primary-cyan);
}

.clean-header.scrolled .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(95, 191, 201, 0.3);
}

/* Active State - Transform to X */
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu-toggle.active .hamburger-bar {
    background: #000000;
}

.mobile-menu-toggle.active {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0;
    box-shadow: none;
}

.mobile-menu-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 90%;
    max-width: 400px;
    padding: 20px 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(95, 191, 201, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    background: var(--color-primary-cyan);
    color: white;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 6px 20px rgba(95, 191, 201, 0.3);
    border-color: var(--color-primary-cyan);
}

.mobile-nav-icon {
    flex-shrink: 0;
    stroke-width: 2.5px;
    transition: transform 0.3s ease;
}

.mobile-nav-item:hover .mobile-nav-icon {
    transform: scale(1.15);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}



/* Central Hero */
.hero-central {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fullscreen Background Video */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Optional: Add a subtle overlay for better text readability */
.hero-central::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.2); */
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-central.hero-active::before {
    opacity: 1;
}

.hero-central-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 20px;
}

/* Playful Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-central.hero-active .hero-central-content h1 {
    animation: bounceIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.hero-central.hero-active .hero-subtitle {
    animation: floatIn 1s ease-out 0.3s forwards;
}

.hero-central.hero-active .btn-pill {
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s forwards;
}

.hero-central-content h1 {
    opacity: 0;
    /* Hidden initially */
    font-family: 'Fredoka', sans-serif;
    font-size: 5rem;
    /* Increased slightly for better impact */
    color: var(--color-primary-cyan);
    margin-bottom: 10px;
    /* Soft white outline using multiple shadows */
    text-shadow:
        3px 3px 0px #fff,
        -3px -3px 0px #fff,
        3px -3px 0px #fff,
        -3px 3px 0px #fff,
        3px 0px 0px #fff,
        -3px 0px 0px #fff,
        0px 3px 0px #fff,
        0px -3px 0px #fff,
        0 0 15px rgba(255, 255, 255, 0.8);
    /* Glow */
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Quicksand', sans-serif;
    opacity: 0;
    font-weight: bold;
    /* Hidden initially */
}

.btn-pill {
    background-color: var(--color-primary-cyan);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    display: inline-block;
    opacity: 0;
    /* Hidden initially */
}

.btn-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(95, 191, 201, 0.25);
}

/* Sections */
.section {
    padding: 20px 0;
}

.bg-light-blue {
    background-color: #F0FBFC;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2D3436;
    text-align: center;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.icon-circle {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Trending - Horizontal Scrolling Carousel */
/* Trending - Horizontal Scrolling Carousel */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    /* Space for shadow */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--color-primary-cyan);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background: var(--color-primary-cyan);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Hide arrows on mobile touch interaction is primary */
@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.trend-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;

    /* Desktop: 4 cards visible */
    /* Total width = 100%, 3 gaps of 30px = 90px */
    flex: 0 0 calc((100% - 90px) / 4);
}

.trend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Tablet: 2 cards visible */
@media (max-width: 1024px) {
    .trend-card {
        /* Total width = 100%, 1 gap of 30px = 30px */
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

/* Mobile: 1 card visible */
@media (max-width: 600px) {
    .trend-card {
        flex: 0 0 100%;
    }
}

/* Clone card for mobile looping - Hidden by default */
.mobile-only-clone {
    display: none !important;
}

/* Only show clone on mobile where we need seamless looping */
@media (max-width: 600px) {
    .mobile-only-clone {
        display: flex !important;
    }
}

.card-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-details h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.btn-buy {
    display: inline-block;
    background-color: var(--color-primary-cyan);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(95, 191, 201, 0.3);
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(95, 191, 201, 0.4);
    background-color: #4db1bc;
}

/* Categories */
/* Categories Section Background for Glass Effect */
#categories {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F8FF 100%);
    /* AliceBlue tint */
    position: relative;
    overflow: hidden;
    /* For any potential decorative blobs if added later */
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 40px;
}

/* Glassmorphism Card */
/* Glassmorphism Card with Tint */
.cat-card {
    background: rgba(255, 255, 255, 0.35);
    /* Base frosted glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.3);
    /* Add inner glow */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    text-align: center;
    aspect-ratio: 1 / 1;
}

/* Specific Pastel Tints */
.cat-card:nth-child(1) {
    background: rgba(227, 242, 253, 0.4);
    /* Soft Blue Tint (Blocks) */
    border-color: rgba(187, 222, 251, 0.5);
}

.cat-card:nth-child(2) {
    background: rgba(252, 228, 236, 0.4);
    /* Soft Pink Tint (Dolls) */
    border-color: rgba(248, 187, 208, 0.5);
}

.cat-card:nth-child(3) {
    background: rgba(232, 245, 233, 0.4);
    /* Soft Green Tint (Learning) */
    border-color: rgba(200, 230, 201, 0.5);
}

.cat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(31, 38, 135, 0.15), inset 0 0 30px rgba(255, 255, 255, 0.5);
}

.cat-card:hover:nth-child(1) {
    background: rgba(227, 242, 253, 0.65);
    /* Intensified Blue */
    border-color: rgba(144, 202, 249, 0.8);
}

.cat-card:hover:nth-child(2) {
    background: rgba(252, 228, 236, 0.65);
    /* Intensified Pink */
    border-color: rgba(244, 143, 177, 0.8);
}

.cat-card:hover:nth-child(3) {
    background: rgba(232, 245, 233, 0.65);
    /* Intensified Green */
    border-color: rgba(165, 214, 167, 0.8);
}

.cat-image-wrapper {
    flex: 1;
    background: transparent;
    /* Fully transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.cat-image-wrapper img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    /* Deeper shadow for float effect */
}

.cat-card:hover .cat-image-wrapper img {
    transform: scale(1.1);
}

.cat-info {
    padding: 20px;
    background: transparent;
    /* Fully transparent */
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-active {
    opacity: 1;
    transform: translateY(0);
}

.cat-info h3 {
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    /* Improve readability on glass */
}

.cat-info p {
    font-size: 1rem;
    color: #636e72;
    /* Slightly darker for contrast */
    margin: 0;
    font-weight: 500;
}

/* Responsive Categories */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .cat-image-wrapper {
        height: 200px;
    }
}


/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.stars {
    display: flex;
    gap: 6px;
    /* Even spacing */
    margin-bottom: 20px;
    align-items: center;
}

.star-icon {
    width: 22px;
    height: 22px;
    color: #FFC107;
    /* Premium warm gold (Amber 500 equivalent) */
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
    /* Soft glow */
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.2s ease;
    opacity: 0;
    /* Initial state for animation */
    animation: starFadeIn 0.5s ease-out forwards;
}

/* Rounded edges logic is in the SVG path itself, but we ensure clean rendering */
.star-icon path {
    stroke-linejoin: round;
    stroke-linecap: round;
}

/* Hover Interaction: Subtle brightness and micro-scale */
.testimonial-card:hover .star-icon {
    filter: drop-shadow(0 3px 6px rgba(255, 193, 7, 0.5)) brightness(1.1);
}

.testimonial-card:hover .star-icon:nth-child(odd) {
    transform: scale(1.1);
}

.testimonial-card:hover .star-icon:nth-child(even) {
    transform: scale(1.05);
}

/* Staggered Animation for Stars */
@keyframes starFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.testimonial-card .star-icon:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card .star-icon:nth-child(2) {
    animation-delay: 0.15s;
}

.testimonial-card .star-icon:nth-child(3) {
    animation-delay: 0.2s;
}

.testimonial-card .star-icon:nth-child(4) {
    animation-delay: 0.25s;
}

.testimonial-card .star-icon:nth-child(5) {
    animation-delay: 0.3s;
}

/* Footer */
.cuddly-footer {
    background: var(--gradient-airy);
    padding: 80px 0 40px;
    border-radius: 50px 50px 0 0;
    margin-top: 50px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.cuddly-footer.footer-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--color-primary-cyan);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand Col */
.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    margin-bottom: 15px;
    font-family: 'Fredoka', sans-serif;
}

.brand-desc {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.trust-badge span {
    background: #e0f7fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-cyan);
    display: inline-block;
}

/* Store Items */
.store-item {
    margin-bottom: 20px;
}

.store-item .city {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
}

.store-item .area {
    display: block;
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.map-link {
    font-size: 0.85rem;
    color: var(--color-primary-cyan);
    font-weight: 600;
}

.map-link:hover {
    text-decoration: underline;
}

/* Contact List */
.contact-list li {
    margin-bottom: 15px;
}

.contact-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #636e72;
    font-weight: 500;
}

.contact-list .icon {
    font-size: 1.2rem;
}

.contact-list a:hover {
    color: var(--color-primary-cyan);
    transform: translateX(5px);
}

/* Newsletter & Social */
.newsletter-text {
    color: #636e72;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 25px;
    border: 2px solid #eee;
    font-family: inherit;
    transition: border-color 0.3s;
}

.footer-newsletter input:focus {
    border-color: var(--color-primary-cyan);
    outline: none;
}

.footer-newsletter button {
    background: var(--color-primary-cyan);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(95, 191, 201, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-cyan);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--color-primary-cyan);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(95, 191, 201, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #b2bec3;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .clean-header {
        width: 95%;
        top: 10px;
        padding: 5px 15px;
        border-radius: 40px;
    }

    .logo-icon {
        height: 35px;
    }

    .logo-text {
        height: 25px;
    }

    .logo-container {
        gap: 8px;
    }

    /* Hide desktop navigation on mobile */
    .nav-links {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-flex {
        justify-content: space-between;
    }


    .hero-scene-wrapper {
        margin-bottom: 0;
    }

    .hero-central-content h1 {
        font-size: 3rem;
    }

    .category-wrapper,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-list a {
        justify-content: center;
    }

    .social-links,
    .footer-newsletter {
        justify-content: center;
    }

    .footer-col h4::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background: var(--color-primary-cyan);
        margin: 10px auto 0;
        border-radius: 2px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: bounceIn 1s ease-out 1s backwards, gentle-pulse 3s infinite 2s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    animation-play-state: paused;
    /* Pause pulse on hover */
}

.whatsapp-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure clean edges */
}

@keyframes gentle-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Holographic Card Styles for Category Page */
#categoryGrid .trend-card {
    /* Base Card Base */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    border-radius: 20px;

    /* 3D Transform Basics */
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;

    /* Overlay for Holographic Coating */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Holographic Sheen Layer */
#categoryGrid .trend-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(115deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) var(--glow-x, 50%),
            transparent 100%),
        linear-gradient(var(--angle, 115deg),
            rgba(255, 0, 0, 0.1),
            rgba(0, 255, 0, 0.1),
            rgba(0, 0, 255, 0.1));
    background-blend-mode: overlay;
    opacity: 0.5;
    pointer-events: none;
    border-radius: 20px;
    mix-blend-mode: soft-light;
}

/* Border Glow */
#categoryGrid .trend-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%),
            rgba(255, 255, 255, 0.8),
            transparent 60%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
}

#categoryGrid .trend-card:hover {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(95, 191, 201, 0.2);
    /* Slight lift is handled by JS tilt usually, but we keep this consistent */
}

#categoryGrid .trend-card:hover::after {
    opacity: 1;
}

/* Internal Content Depth */
#categoryGrid .trend-card .card-image,
#categoryGrid .trend-card .card-details {
    transform: translateZ(20px);
    /* Puts content smoothly "above" the card */
    position: relative;
    z-index: 5;
}

/* Image specific polish */
#categoryGrid .trend-card .card-image img {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

#categoryGrid .trend-card:hover .card-image img {
    transform: scale(1.05) translateZ(10px);
}

/* Button Glow on Holographic Card */
#categoryGrid .trend-card .btn-buy {
    background: rgba(95, 191, 201, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(95, 191, 201, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#categoryGrid .trend-card .btn-buy:hover {
    background: #5FBFC9;
    box-shadow: 0 0 20px rgba(95, 191, 201, 0.6);
}

/* Entry Animation */
@keyframes holoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#categoryGrid .trend-card {
    animation: holoFadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    /* Starts invisible */
}

/* Staggered delay for grid items */
#categoryGrid .trend-card:nth-child(1) {
    animation-delay: 0.1s;
}

#categoryGrid .trend-card:nth-child(2) {
    animation-delay: 0.2s;
}

#categoryGrid .trend-card:nth-child(3) {
    animation-delay: 0.3s;
}

#categoryGrid .trend-card:nth-child(4) {
    animation-delay: 0.4s;
}

#categoryGrid .trend-card:nth-child(5) {
    animation-delay: 0.5s;
}

#categoryGrid .trend-card:nth-child(6) {
    animation-delay: 0.6s;
}