:root {
    --primary: #4CAF50;
    --secondary: #FF6B6B;
    --accent: #4ECDC4;
    --dark: #2C3E50;
    --light: #F9F9F9;
    --gold: #FFD700;
    --purple: #9C27B0;
    --orange: #FF9800;
    --green-light: #8BC34A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-nav img {
    max-width: 80px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--secondary);
}

nav a:hover:after {
    width: 100%;
}

.cta-button {
    background: var(--secondary);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  /* Slider fondo */
  .hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 18s infinite;
  }
  
  .slide:nth-child(1) { animation-delay: 0s; }
  .slide:nth-child(2) { animation-delay: 6s; }
  .slide:nth-child(3) { animation-delay: 12s; }
  
  @keyframes slideShow {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
  }
  
  /* Overlay con fondo salpicado */
  .hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .hero-content {
    position: relative;
    text-align: center;
    padding: 50px;
    max-width: 1000px;
    height: 1000px;
    margin-top: 200px;
    transform: skewX(-5deg); /* inclinación */
  }
  
  /* Fondo blanco translúcido salpicado */
  .hero-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.85);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    z-index: -1;
  
    /* Bordes salpicados con clip-path */
    clip-path: polygon(
      5% 0%, 95% 0%, 100% 10%, 100% 90%,
      95% 100%, 5% 100%, 0% 90%, 0% 10%
    );
  }
  
  /* Logo */
  .logo {
    max-width: 600px;
    margin: auto;
    transform: skewX(5deg); /* corrige inclinación del texto/logo */
  }
  
  /* Submarcas */
  .brands {
    font-size: 2.5rem;
    margin: 40px 0 20px;
    font-weight: bold;
    transform: skewX(5deg);
  }
  
  .brands .nlinea { color: #009688; }
  .brands .extremo { color: orange; }
  .brands .ultra { color: red; }
  .brands .diaadia { color: goldenrod; }
  
  /* Texto animado palabra por palabra */
  .hero-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #005c0f;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    transform: skewX(5deg);
  }
  
  .hero-text span {
    opacity: 0;
    animation: wordFade 1s forwards;
  }
  
  .hero-text span:nth-child(1) { animation-delay: 0s; }
  .hero-text span:nth-child(2) { animation-delay: 0.3s; }
  .hero-text span:nth-child(3) { animation-delay: 0.6s; }
  .hero-text span:nth-child(4) { animation-delay: 0.9s; }
  .hero-text span:nth-child(5) { animation-delay: 1.2s; }
  .hero-text span:nth-child(6) { animation-delay: 1.5s; }
  .hero-text span:nth-child(7) { animation-delay: 1.8s; }
  .hero-text span:nth-child(8) { animation-delay: 2.1s; }
  .hero-text span:nth-child(9) { animation-delay: 2.4s; }
  
  @keyframes wordFade {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content {
        padding: 200px 25px;
        max-width: 400px;
        margin-top: 450px;
        height: 1100px;
    }

    .logo {
        max-width: 250px;
    }
  
    .hero-text {
      font-size: 1.2rem;
      gap: 5px;
    }
  
    .brands {
      font-size: 1rem;
    }
  }
  

/* Products Section */
.products {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.product-row {
    display: flex;
    min-height: 600px;
    margin-bottom: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.product-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
    top: -25%;
    left: -25%;
    z-index: 2;
}

.product-info {
    flex: 1;
    background: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
}

.product-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.2;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 25px;
}

.price-detail {
    font-size: 1rem;
    color: #777;
    margin-bottom: 30px;
}

.product-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.flavor-options {
    margin-bottom: 10px;
}

.flavor-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.flavors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flavor-pill {
    background: var(--light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    border: 1px solid #eee;
}

.cta-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    z-index: 2000;
}

.whatsapp-cta {
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.info-cta {
    background: transparent;
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    
}

.info-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Reverse layout for even products */
.product-row:nth-child(even) {
    flex-direction: row-reverse;
}

.product-row:nth-child(even) .product-info {
    border-radius: 0 20px 20px 0;
}

.product-row:nth-child(odd) .product-info {
    border-radius: 20px 0 0 20px;
}

/* Animation for products */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-20px) translateX(20px); }
}

.floating {
    animation: bounce 2s infinite;
}

/* Individual product colors and styles */
.yogur-griego .product-image::after {
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.9), rgba(139, 195, 74, 0.8));
}

.kefir .product-image::after {
    background: linear-gradient(45deg, rgba(156, 39, 176, 0.9), rgba(233, 30, 99, 0.8));
}

.mezcla .product-image::after {
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.9), rgba(255, 87, 34, 0.8));
}

.sabila .product-image::after {
    background: linear-gradient(45deg, rgba(96, 125, 139, 0.9), rgba(158, 158, 158, 0.8));
}

.dietetico .product-image::after {
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.9), rgba(3, 169, 244, 0.8));
}

.frutado .product-image::after {
    background: linear-gradient(45deg, rgba(244, 67, 54, 0.9), rgba(233, 30, 99, 0.8));
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #45a049 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 8s infinite alternate-reverse;
}

.benefits::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 6s infinite alternate;
}

.benefits .section-title {
    color: white;
}

.benefits .section-title:after {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark);
}

.author-info p {
    font-size: 0.9rem;
    color: #777;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.map-container {
    height: 500px;
    background: linear-gradient(45deg, #e0e0e0, #f5f5f5);
    border-radius: 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: url('https://placehold.co/1200x500/e0e0e0/cccccc?text=Bolivia+Map') no-repeat center center;
    background-size: cover;
    position: relative;
}

.location-pin {
    position: absolute;
    font-size: 2rem;
    color: var(--secondary);
    animation: pulse 2s infinite;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.pin-1 { top: 30%; left: 40%; }
.pin-2 { top: 20%; left: 60%; }
.pin-3 { top: 50%; left: 30%; }
.pin-4 { top: 60%; left: 50%; }
.pin-5 { top: 40%; left: 70%; }

.location-info {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 200px;
    display: none;
    z-index: 10;
}

.location-pin:hover + .location-info {
    display: block;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .product-info {
        padding: 40px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .product-row {
        flex-direction: column !important;
    }

    .whatsapp-cta{
        font-size: 0.5em;
    }

    .product-info, .product-image {
        flex: none;
        width: 100%;
    }
    
    .product-info {
        padding: 30px;
    }
    
    .benefits-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animated semi-circle effect */
.semi-circle {
    position: absolute;
    width: 100vw;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

.semi-circle.left {
    right: 0;
    top: -25%;
    width: 150vw;
    height: 150%;
    background: var(--primary);
}

.semi-circle.right {
    left: 0;
    top: -25%;
    width: 150vw;
    height: 150%;
    background: var(--secondary);
}

.product-row:nth-child(odd) .semi-circle {
    right: 0;
    background: var(--primary);
}

.product-row:nth-child(even) .semi-circle {
    left: 0;
    background: var(--secondary);
}

/* Hover effects */
.product-image:hover img {
    transform: scale(1.05);
}

/* Icons animation */
.animated-icon {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}





/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--secondary);
    color: white;
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.product-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.slider-control:hover {
    background-color: white;
}

.slider-control.prev {
    left: 15px;
}

.slider-control.next {
    right: 15px;
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.product-details {
    padding: 25px;
}

.modal-product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: center;
}

.size-price-section, .flavors-section {
    margin-bottom: 25px;
}

.size-price-section h3, .flavors-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.size-option {
    background-color: var(--light);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.size-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.size-option.selected {
    border-color: var(--primary);
    background-color: rgba(76, 175, 80, 0.1);
}

.size-option h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.size-option .size-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.flavor-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-cta {
    text-align: center;
    margin-top: 25px;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}


.size-option {
    background-color: var(--light);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.price-label {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .product-slider {
        height: 250px;
    }
    
    .modal-product-title {
        font-size: 1.5rem;
    }
    
    .size-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-slider {
        height: 200px;
    }
    
    .size-options {
        grid-template-columns: 1fr;
    }
    
    .slider-control {
        width: 35px;
        height: 35px;
    }
}

/* Estilos específicos para el modal slider (para evitar conflictos) */
.modal-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.modal-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Estilos para la sección de sabores con descripción */
.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.flavor-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.flavor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flavor-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.flavor-emoji {
    font-size: 1.8rem;
    margin-right: 12px;
}

.flavor-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.flavor-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .flavors-grid {
        grid-template-columns: 1fr;
    }
    
    .flavor-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .flavor-emoji {
        margin-right: 0;
        margin-bottom: 8px;
    }
}