/* 
   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: #fcf6f9;
    --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;
    cursor: none !important;
    /* Custom cursor for Wow effect */
}

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;
}

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;
}

.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;
}

/* Background Decorations */
.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);
    bottom: 20%;
    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: 140px;
    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: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    position: relative;
    top: 20px;
}

.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: transform 0.5s var(--elastic), box-shadow 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(-5px) scale(1.05);
}

.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;
}

/* 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: shine-wow-pulse 3s infinite ease-in-out;
}

.btn-header-wow i {
    animation: bounce-icon 2s infinite;
}

@keyframes shine-wow-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px var(--primary-glow);
    }

    100% {
        transform: scale(1);
    }
}

.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-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: 30px;
    right: -20px;
    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;
}

.wave-decoration svg {
    width: 100%;
    height: 100px;
}

.wave-decoration .shape-fill {
    fill: var(--white);
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Reverted Card Styles */
.product-card {
    background: var(--white);
    border-radius: 30px;
    padding: 0;
    /* Remove padding to let link cover the area */
    transition: all 0.5s var(--elastic);
    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(-10px);
}

.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: 650px;
    margin: 0 auto;
    color: var(--gray-dark);
    opacity: 0.9;
}

.card-img img {
    height: 160px !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;
}

.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: 200px;
    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(15deg) scale(1.1);
    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(--light-color);
}

.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.active {
    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: 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;
    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;
}

.contact-promo {
    margin-top: auto;
    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: center;
}

.product-gallery-wow {
    position: relative;
}

.main-image-wrapper {
    background: var(--light-color);
    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: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.thumbnail-list {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.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: 4.5rem;
    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;
    }

    .product-info-wow h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }

    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    #mobile-menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}