/* 
   CREMA HELADOS - COMPLETE PREMIUM EDITION
   Font: Montserrat
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #d72c8a;
    --secondary-color: #94c11f;
    --primary-glow: rgba(215, 44, 138, 0.4);
    --secondary-glow: rgba(148, 193, 31, 0.4);
    --dark-color: #1a1a1a;
    --light-color: #fcf5e4;
    --white: #ffffff;
    --gray-dark: #666666;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --normal: 0.3s;
    --slow: 0.6s;
    --elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Premium Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Custom cursor logic handled in JS for better UX */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.text-center {
    text-align: center;
}

/* Custom Cursor Elements */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(215, 44, 138, 0.2) !important;
}

.custom-cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--primary-color);
}

/* Background Decorations */
.background-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.blob {
    position: absolute;
    z-index: -1;
    filter: blur(60px);
    opacity: 0.3;
    border-radius: 50%;
    animation: blob-float 15s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: 50%;
    left: -100px;
    animation-delay: -5s;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 20px) scale(1);
    }
}

/* Header */
#main-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    height: 120px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: 90px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#main-header.scrolled #header-logo {
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

#header-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--normal);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.08));
}

#header-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    padding: 10px 0;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-actions .icon-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    color: var(--dark-color);
    transition: var(--normal);
}

.header-actions .icon-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    /* box-shadow: 0 10px 20px var(--primary-glow); */
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    /* box-shadow: 0 10px 20px var(--secondary-glow); */
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    animation-play-state: paused;
}

.btn-impact {
    padding: 18px 45px;
    /* font-size: 1.2rem; */
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color), #ff4d9d);
    box-shadow: 0 15px 35px var(--primary-glow);
    animation: pulse-impact 2s infinite;
    justify-content: center;
}

/* Wow Effect Header Button */
.btn-header-wow {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4fa1 100%) !important;
    padding: 12px 25px !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    /* box-shadow: 0 10px 25px var(--primary-glow); */
    animation: pulse-impact 3s infinite ease-in-out;
}

.btn-header-wow i {
    /* animation: bounce-icon 2s infinite; */
}



.btn-header-wow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 25%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: sweep-light 4s infinite linear;
}

@keyframes sweep-light {
    0% {
        left: -70%;
    }

    20% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

@keyframes bounce-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes pulse-impact {
    0% {
        box-shadow: 0 0 0 0 rgba(215, 44, 138, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(215, 44, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(215, 44, 138, 0);
    }
}

.mt-5 {
    margin-top: 50px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    padding-top: 210px;
    padding-bottom: 150px;
    background: radial-gradient(circle at 10% 20%, rgba(215, 44, 138, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.hero-content {
    flex: 1.2;
    z-index: 5;
}

.vital-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(215, 44, 138, 0.1), rgba(148, 193, 31, 0.1));
    border: 1px solid rgba(215, 44, 138, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(215, 44, 138, 0.05);
}

.dot-live {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--secondary-color);
}

.dot-live::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.hero-content h1 {
    font-size: 4.8rem;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.highlight-pink {
    background: linear-gradient(120deg, var(--primary-color), #ff6fc2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-green {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 5;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.hero-brand-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
    /* Sombras mínimas para profundidad */
    animation: floating 6s infinite ease-in-out;
    display: block !important;
}

.transparent-visual {
    background: transparent !important;
    box-shadow: none !important;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-badge {
    position: absolute;
    padding: 12px 25px;
    background: var(--white);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.top-right {
    top: -40px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--white);
}

.bottom-left {
    bottom: -30px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
}

/* Wave Decoration */
.wave-decoration {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
    /* Encima del fondo pero bajo el contenido */
    pointer-events: none;
    background-color: #fcf5e4;
}

.wave-decoration svg {
    width: 100%;
    height: 100px;
}

.wave-decoration .shape-fill {
    fill: var(--white);
}

.favorites-section {
    background-color: #fcf5e4 !important;
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Category Filter Styles (Interactive) */
.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 10px;
    padding: 0 20px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    min-height: 44px;
    background: var(--white);
    color: var(--gray-dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--elastic);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    white-space: nowrap;
}

.filter-pill:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
    border-color: rgba(215, 44, 138, 0.3);
    box-shadow: 0 8px 20px rgba(215, 44, 138, 0.1);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--primary-color), #ff4d9d);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* Reverted Card Styles */
.product-card {
    background: var(--white);
    border-radius: 30px;
    padding: 0;
    /* Remove padding to let link cover the area */
    transition: transform 0.15s ease-out, box-shadow 0.4s ease, border-radius 0.4s ease;
    box-shadow: var(--card-shadow);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
}

.product-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 15px;
    /* Add padding here instead */
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-glow {
    background: radial-gradient(circle, rgba(215, 44, 138, 0.05) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Wow Header Effect for Favorites */
.section-header-wow {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header-wow .decorative-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(215, 44, 138, 0.1), rgba(148, 193, 31, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border: 1px solid rgba(215, 44, 138, 0.2);
}

.section-header-wow h2 {
    font-size: 3.8rem;
    color: var(--gray-dark);
    margin-bottom: 20px;
    display: block;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-header-wow h2 span.highlight-pink {
    background: linear-gradient(120deg, var(--primary-color), #ff6fc2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header-wow p {
    font-size: 1.3rem;
    max-width: 850px;
    margin: 0 auto;
    color: var(--gray-dark);
    opacity: 0.9;
}

.card-img{
    background-image: url(assets/bg_productos.png);
    height: 450px;
    background-size: 250px;
    background-repeat: no-repeat;
    /* border: 1px solid; */
    background-position: center center;
}

.card-img img {
    max-height: 450px !important;
    /* Fixed height for consistency */
    width: auto;
    object-fit: contain;
    transition: var(--slow);
}

.product-card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px 10px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-body p {
    height: 60px;
    line-height: 1.3rem;
}

.rating {
    color: #ffb800;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-glow {
    /* background: radial-gradient(circle, rgba(215, 44, 138, 0.05) 0%, transparent 70%); */
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
}

.product-glow img {
    max-height: 550px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.add-to-cart {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--normal);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.add-to-cart:hover {
    transform: rotate(5deg);
    background: var(--secondary-color);
}

.brand-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.brand-section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.category-item {
    position: relative;
    border-radius: 25px;
    /* height: 200px; */
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* --- FOOTER WOW EDITION --- */
.footer-wow {
    background: var(--secondary-color);
    color: var(--dark-color);
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    left: 0;
}

.footer-wave {
    position: absolute;
    top: -3px;
    left: 50%;
    width: 105%;
    /* More than enough to cover margins */
    transform: translateX(-50%);
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 85px;
    /* Slightly taller for safety */
}

.footer-wave .shape-fill {
    fill: var(--white);
}

.footer-content {
    padding: 140px 0 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
}

/* Brand Column */
.footer-brand-column .footer-logo {
    height: 75px;
    margin-bottom: 25px;
}

.brand-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 35px;
}

.social-wrapper h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.social-icons-wow {
    display: flex;
    gap: 15px;
}

.social-icons-wow a {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s var(--elastic);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icons-wow a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* Links Columns */
.footer-links-column h3,
.footer-info-column h3,
.footer-contact-column h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3::after,
.footer-info-column h3::after,
.footer-contact-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links-column ul li,
.footer-info-column ul li {
    margin-bottom: 15px;
}

.footer-links-column ul li a,
.footer-info-column ul li a {
    color: rgba(0, 0, 0, 0.6);
    transition: var(--normal);
    font-size: 1rem;
    font-weight: 500;
}

.footer-links-column ul li a:hover,
.footer-info-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contact Column */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom-wow {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--normal);
}

.legal-links a:hover {
    color: var(--white);
}

/* Scroll Top Refined */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--elastic);
    transform: scale(0.5);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#scroll-top:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-8px) scale(1.1);
}

/* About Detailed Section */
.about-detailed {
    background: var(--white);
    position: relative;
}

.about-main-text {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 500;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: var(--normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--card-shadow);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.values-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
}

.values-bar h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.values-list span {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--normal);
}

.values-list span i {
    color: var(--secondary-color);
}

.values-list span:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* Distributors Section */
.distributors-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.map-wrapper-wow {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
}

.map-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.distributor-card-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: var(--light-color);
    border-radius: 20px;
    transition: var(--normal);
    border: 1px solid transparent;
}

.distributor-card-mini:hover {
    /* transform: translateY(-5px); */
    background: var(--white);
    border-color: var(--primary-color);
    /* box-shadow: 0 10px 20px rgba(215, 44, 138, 0.1); */
}

.icon-pin {
    width: 45px;
    height: 45px;
    background: var(--primary-glow);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.dist-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--gray-dark);
}

.dist-info p {
    font-size: 0.85rem;
    color: #777;
    /* margin-bottom: 8px; */
    line-height: 1.3;
}

.badge-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(148, 193, 31, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
}

#distributors-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 250px; /* Un poco más de altura para mostrar mejor la lista */
    overflow-y: auto;
    padding-right: 10px; /* Espacio para el scrollbar */
}

/* Scrollbar Personalizado Premium */
#distributors-list::-webkit-scrollbar {
    width: 5px;
}

#distributors-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}

#distributors-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    opacity: 0.5;
}

#distributors-list::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.form-select-wow {
    width: 100%;
    padding: 12px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--light-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d72c8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    transition: var(--normal);
}

.form-select-wow:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(215, 44, 138, 0.1);
}

.contact-promo {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff6fc2);
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.contact-promo p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--white);
    opacity: 0.9;
}

.map-frame-container {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid var(--glass-border);
}

/* Product Detail Specifics */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.product-gallery-wow {
    position: relative;
}

.main-image-wrapper {
    /* background: var(--light-color); */
    margin-top: 50px;
    background-image: url(assets/bg_productos.png);
    background-size: contain;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 40px;
    padding: 60px;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--normal);
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    transition: transform 0.8s var(--elastic);
}

.main-image-wrapper:hover img {
    transform: scale(1.1) rotate(5deg);
}

.badge-new {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.thumbnail-list {
    display: flex;
    gap: 20px;
    margin-top: 80px;
}

.thumb {
    width: 100px;
    height: 100px;
    background: var(--light-color);
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--normal);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb.active,
.thumb:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.product-info-wow h1 {
    font-size: 3.0rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.product-tagline {
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 1.4;
}

.product-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.stat-item i {
    font-size: 1.2rem;
}

.product-description {
    margin-bottom: 50px;
}

.product-description h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-description p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.action-panel-wow {
    /* display: flex; */
    align-items: center;
    gap: 40px;
    background: var(--light-color);
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-box .value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.social-share {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-icons {
    display: flex;
    gap: 15px;
}

.share-icons a {
    font-size: 1.3rem;
    color: var(--gray-dark);
    transition: var(--normal);
}

.share-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card-wow {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: var(--normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card-wow:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.feature-card-wow .icon-box {
    margin: 0 auto 25px;
}

.feature-card-wow h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }

    h2 {
        font-size: 2.5rem !important;
    }

    .map-wrapper-wow {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .contact-promo {
        margin-top: 20px;
    }

    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }

    .hero-content {
        flex: none !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        width: 100%;
    }

    .hero-section {
        padding-top: 110px !important;
    }

    .hero-img-wrapper {
        text-align: center;
    }

    .hero-brand-img {
        width: 60% !important;
        margin: 0 auto;
    }

    #main-header {
        height: 80px !important;
    }

    #main-header.scrolled {
        height: 70px !important;
    }

    #header-logo {
        height: 50px !important;
    }

    .logo {
        top: 0;
    }

    .header-actions {
        gap: 15px;
    }

    .btn-header-wow {
        display: none !important; /* Hide the big CTA on mobile to save space */
    }

    .header-container {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: 0.5s var(--elastic);
        z-index: 1001; /* Above everything */
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links::before {
        content: "MENU";
        font-weight: 900;
        color: var(--primary-color);
        font-size: 2rem;
        /* margin-bottom: 20px; */
        opacity: 0.1;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        display: block;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    #mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1100;
        cursor: pointer;
        font-size: 1.8rem;
        color: var(--primary-color);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-column {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-brand-column .footer-logo {
        margin: 0 auto 20px;
    }

    .social-icons-wow {
        justify-content: center;
    }

    @media (max-width: 500px) {
        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-brand-column {
            grid-column: span 1;
        }

        .footer-links-column h3::after,
        .footer-info-column h3::after,
        .footer-contact-column h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-item {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .icon-circle {
            margin: 0 auto;
        }

        .bottom-flex {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
    }
}

.hidden {
    display: none !important;
}