/* =========================================
   ECOMANIAS - PREMIUM SECTIONS v2
   High-Conversion Page Layouts
   ========================================= */

/* === CHRISTMAS LIGHTS ELEGANT === */
.christmas-lights-bar {
    position: relative;
    z-index: 50;
    height: 2.8rem;
    background: linear-gradient(180deg, #0d1f17 0%, #1a3d2d 100%);
    overflow: visible;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.christmas-lights-container {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 100%;
    position: relative;
}

/* Wire that runs across */
.christmas-lights-wire {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    padding: 0 var(--space-4);
    position: relative;
}

.christmas-lights-wire::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            #1f1f1f 0%,
            #2d2d2d 25%,
            #1f1f1f 50%,
            #2d2d2d 75%,
            #1f1f1f 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Individual light bulb */
.christmas-light {
    width: 0.9rem;
    height: 1.4rem;
    border-radius: 50% 50% 45% 45%;
    position: relative;
    margin-top: 6px;
    animation: glow var(--duration, 2s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    box-shadow: 0 0 6px 2px var(--glow-color, rgba(255, 255, 255, 0.4));
}

/* Bulb socket */
.christmas-light::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: linear-gradient(180deg, #555, #333);
    border-radius: 2px 2px 1px 1px;
}

/* Highlight reflection */
.christmas-light::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

/* Bulb colors with glow */
.christmas-light--red {
    background: radial-gradient(ellipse at 30% 20%, #ff6b6b, #dc2626, #991b1b);
    --glow-color: rgba(220, 38, 38, 0.8);
}

.christmas-light--yellow {
    background: radial-gradient(ellipse at 30% 20%, #fef08a, #facc15, #ca8a04);
    --glow-color: rgba(250, 204, 21, 0.8);
}

.christmas-light--green {
    background: radial-gradient(ellipse at 30% 20%, #86efac, #22c55e, #15803d);
    --glow-color: rgba(34, 197, 94, 0.8);
}

.christmas-light--blue {
    background: radial-gradient(ellipse at 30% 20%, #93c5fd, #3b82f6, #1d4ed8);
    --glow-color: rgba(59, 130, 246, 0.8);
}

.christmas-light--orange {
    background: radial-gradient(ellipse at 30% 20%, #fed7aa, #f97316, #c2410c);
    --glow-color: rgba(249, 115, 22, 0.8);
}

.christmas-light--pink {
    background: radial-gradient(ellipse at 30% 20%, #fbcfe8, #ec4899, #be185d);
    --glow-color: rgba(236, 72, 153, 0.8);
}

.christmas-light--cyan {
    background: radial-gradient(ellipse at 30% 20%, #a5f3fc, #06b6d4, #0891b2);
    --glow-color: rgba(6, 182, 212, 0.8);
}

.christmas-light--white {
    background: radial-gradient(ellipse at 30% 20%, #ffffff, #e5e7eb, #d1d5db);
    --glow-color: rgba(255, 255, 255, 0.9);
}

/* Glow animation - more realistic */
@keyframes glow {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px var(--glow-color, rgba(255, 255, 255, 0.8))) drop-shadow(0 0 20px var(--glow-color, rgba(255, 255, 255, 0.4)));
    }

    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 4px var(--glow-color, rgba(255, 255, 255, 0.3))) drop-shadow(0 0 8px var(--glow-color, rgba(255, 255, 255, 0.2)));
    }
}

/* === HEADER - PROFESSIONAL PREMIUM === */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #f0fdf4 100%);
    border-bottom: 2px solid var(--green-100);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.08);
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 253, 245, 0.95) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
    border-color: var(--green-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    padding: var(--space-4) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    height: var(--header-height);
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img,
.header-logo svg {
    height: 4.4rem;
    width: auto;
    transition: transform var(--duration-normal) var(--ease-out);
}

.header-logo:hover img,
.header-logo:hover svg {
    transform: scale(1.02);
}

/* Navigation */
.header-nav {
    display: none;
}

@media (min-width: 990px) {
    .header-nav {
        display: flex;
        align-items: center;
        gap: var(--space-8);
    }
}

.nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    padding: var(--space-2) var(--space-3);
    position: relative;
    transition: all var(--duration-fast) var(--ease-out);
    border-radius: var(--radius-md);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-400), var(--green-600));
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--green-50);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Search */
.header-search {
    flex: 1;
    max-width: 44rem;
    display: none;
}

@media (min-width: 990px) {
    .header-search {
        display: block;
    }
}

.search-form {
    display: flex;
    background: linear-gradient(135deg, var(--white) 0%, var(--green-50) 100%);
    border-radius: var(--radius-full);
    border: 2px solid var(--green-100);
    transition: all var(--duration-fast) var(--ease-out);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.search-form:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--ring-brand), 0 4px 12px rgba(5, 150, 105, 0.1);
}

.search-input {
    flex: 1;
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    padding: 1rem 1.4rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-out);
}

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

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.header-icon {
    position: relative;
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.header-icon:hover {
    background: var(--green-50);
    color: var(--primary);
}

.header-icon svg {
    width: 2.2rem;
    height: 2.2rem;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;
    background: var(--red-500);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.menu-toggle {
    display: flex;
}

@media (min-width: 990px) {
    .menu-toggle {
        display: none;
    }
}

/* === BANNER CAROUSEL - FULL WIDTH === */
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Fixed height range ensures consistent banner size regardless of image dimensions */
    height: clamp(300px, 50vh, 550px);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-4);
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    pointer-events: auto;
    width: 4.8rem;
    height: 4.8rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.carousel-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 2rem;
    height: 2rem;
}

.carousel-btn--prev svg {
    transform: rotate(180deg);
}

.carousel-dots {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    z-index: 10;
}

.carousel-dot {
    width: 1rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: var(--white);
    width: 2.8rem;
}

/* === SECTION HEADERS - PREMIUM DESIGN === */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: linear-gradient(135deg, var(--eco-mint-100) 0%, var(--eco-forest-100) 100%);
    color: var(--eco-forest-700);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.section-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--eco-forest-900);
    margin-bottom: var(--space-4);
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--eco-mint-400), var(--primary), var(--eco-forest-500));
    border-radius: var(--radius-full);
}

.section-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--eco-mint-500) 50%, var(--eco-forest-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.7rem;
    color: var(--gray-500);
    max-width: 64rem;
    margin: var(--space-6) auto 0;
    line-height: 1.75;
    font-weight: 400;
}

/* Dark Section Headers */
.section-brand .section-eyebrow,
.section-premium .section-eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-brand .section-title,
.section-brand .section-subtitle,
.section-premium .section-title,
.section-premium .section-subtitle {
    color: var(--white);
}

.section-brand .section-subtitle,
.section-premium .section-subtitle {
    opacity: 0.9;
}

/* === GRIDS === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-5);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 989px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-5);
}

@media (max-width: 989px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

@media (max-width: 989px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Product Placeholder - Elegant emoji container styling */
.product-placeholder {
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}

.product-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

/* Category Placeholder - Circle with gradient */
.category-placeholder {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.category-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

.highlight-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid var(--gray-100);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}

.highlight-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.highlight-card .icon-circle {
    margin: 0 auto var(--space-5);
    transition: transform var(--duration-normal) var(--ease-out);
}

.highlight-card h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.highlight-card p {
    font-size: 1.4rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-5);
    line-height: 1.6;
}

/* === BENEFITS === */
.benefits-section {
    background: var(--gradient-subtle);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

@media (max-width: 989px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--duration-normal) var(--ease-out);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}

.benefit-card:hover .icon-circle {
    transform: scale(1.1);
}

.benefit-icon {
    margin: 0 auto var(--space-5);
    transition: transform var(--duration-normal) var(--ease-out);
}

.benefit-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.benefit-text {
    font-size: 1.4rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--white);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
}

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

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-top: var(--space-1);
}

.stat-stars {
    display: flex;
    justify-content: center;
    color: var(--amber-500);
    margin-bottom: var(--space-1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

@media (max-width: 989px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--duration-normal) var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.testimonial-location {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: var(--amber-500);
}

.testimonial-rating svg {
    width: 1.6rem;
    height: 1.6rem;
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.testimonial-text {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.testimonial-date {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* === NEWSLETTER === */
.newsletter-section {
    background: var(--gradient-brand);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-form {
    max-width: 56rem;
    margin: var(--space-8) auto 0;
    position: relative;
}

.newsletter-form .input-group {
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.newsletter-form .form-input {
    padding: 1.6rem 2rem;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    min-width: 0;
    flex: 1;
}

.newsletter-form .form-input::placeholder {
    color: var(--gray-400);
}

.newsletter-form .form-input:focus {
    outline: none;
}

.newsletter-form .btn {
    padding: 1.6rem 2.8rem;
    font-weight: 700;
    white-space: nowrap;
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

@media (max-width: 989px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-brand {
    max-width: 30rem;
}

.footer-logo {
    height: 4rem;
    margin-bottom: var(--space-5);
}

.footer-description {
    font-size: 1.4rem;
    color: var(--gray-400);
    margin-bottom: var(--space-5);
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-5);
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: 1.4rem;
    color: var(--gray-400);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
    color: var(--green-400);
}

.social-icons {
    display: flex;
    gap: var(--space-2);
}

.social-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    transition: all var(--duration-fast) var(--ease-out);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.footer-copyright {
    font-size: 1.3rem;
    color: var(--gray-500);
}

/* === WHATSAPP BUTTON === */
.whatsapp-btn {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all var(--duration-normal) var(--ease-out);
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 3rem;
    height: 3rem;
    color: var(--white);
}

@keyframes whatsapp-pulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* === SCROLL REVEAL === */
/* Content always visible - smooth reveal animations handled by JS */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

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

[data-cascade]>* {
    --cascade-delay: 0.08s;
}

[data-cascade]>*:nth-child(1) {
    transition-delay: calc(var(--cascade-delay) * 1);
}

[data-cascade]>*:nth-child(2) {
    transition-delay: calc(var(--cascade-delay) * 2);
}

[data-cascade]>*:nth-child(3) {
    transition-delay: calc(var(--cascade-delay) * 3);
}

[data-cascade]>*:nth-child(4) {
    transition-delay: calc(var(--cascade-delay) * 4);
}

[data-cascade]>*:nth-child(5) {
    transition-delay: calc(var(--cascade-delay) * 5);
}

[data-cascade]>*:nth-child(6) {
    transition-delay: calc(var(--cascade-delay) * 6);
}

[data-cascade]>*:nth-child(7) {
    transition-delay: calc(var(--cascade-delay) * 7);
}

[data-cascade]>*:nth-child(8) {
    transition-delay: calc(var(--cascade-delay) * 8);
}

[data-cascade]>*:nth-child(9) {
    transition-delay: calc(var(--cascade-delay) * 9);
}

[data-cascade]>*:nth-child(10) {
    transition-delay: calc(var(--cascade-delay) * 10);
}

/* =========================================
   VISUAL FIXES - December 2024
   ========================================= */

/* === TRUST BAR MOBILE FIX === */
@media (max-width: 768px) {
    .trust-bar {
        padding: var(--space-2) var(--space-3);
        font-size: 1.1rem;
    }

    .trust-bar .flex {
        gap: var(--space-3);
    }

    .trust-bar-item {
        flex: 1 1 45%;
        justify-content: center;
        text-align: center;
    }

    .trust-bar-item svg {
        width: 1.4rem;
        height: 1.4rem;
    }
}

@media (max-width: 480px) {
    .trust-bar-item {
        flex: 1 1 100%;
    }

    .trust-bar .flex {
        gap: var(--space-2);
    }
}

/* === HEADER SCROLL FIX === */
.header {
    will-change: transform, box-shadow;
}

/* === PRODUCT CARD IMAGE FIX === */
.product-card .card-image {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .card-image img {
    object-fit: contain;
    padding: var(--space-2);
    background: white;
}

/* === CATEGORY CARD IMAGE FIX === */
.category-card .card-image {
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
}

.category-card .card-image img {
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* === FOOTER RESPONSIVE FIX === */
@media (max-width: 989px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* === BANNER IMAGE FIXES === */
.carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    object-fit: cover;
    object-position: center;
}

/* === CHRISTMAS LIGHTS MOBILE FIX === */
@media (max-width: 768px) {
    .christmas-lights-bar {
        height: 2.4rem;
    }

    .christmas-light {
        width: 0.8rem;
        height: 1.1rem;
    }
}

/* === SECTION SPACING FIX === */
.section:first-of-type {
    padding-top: 0;
}

/* === PRICE DISPLAY FIX === */
.price {
    flex-direction: column;
    gap: var(--space-1);
}

.price-compare {
    order: -1;
    font-size: 1.3rem;
}

.price-current {
    font-size: 2rem;
}

.price-savings {
    margin-top: var(--space-2);
    width: 100%;
}

/* === HIGHLIGHT CARDS FIX === */
.highlight-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-card .btn {
    margin-top: auto;
}

/* === BUTTON HOVER IMPROVEMENTS === */
.btn:active {
    transform: scale(0.98);
}

/* === CARD ANIMATION FIX === */
.card {
    will-change: transform, box-shadow;
}

/* === CHIPS MOBILE FIX === */
@media (max-width: 600px) {
    .chip {
        padding: var(--space-2) var(--space-3);
        font-size: 1.2rem;
    }
}

/* === FORM INPUT MOBILE FIX === */
@media (max-width: 600px) {
    .form-input {
        font-size: 1.6rem;
        padding: var(--space-4);
    }

    select.form-input {
        padding: var(--space-3) var(--space-4);
    }
}

/* === WHATSAPP BUTTON FIX === */
.whatsapp-btn {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 6rem;
    height: 6rem;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-fast) var(--ease-out);
    z-index: 999;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 5.4rem;
        height: 5.4rem;
        bottom: var(--space-4);
        right: var(--space-4);
    }

    .whatsapp-btn svg {
        width: 2.6rem;
        height: 2.6rem;
    }
}