/* Global Styles */
:root {
    --primary-color: #8b8b8b; /* Gris neutro */
    --secondary-color: #a8a8a8; /* Gris medio */
    --accent-color: #ffffff; /* Blanco */
    --whatsapp-color: #8b8b8b; /* Mismo tono gris para consistencia */
    --text-color: #333333; /* Gris oscuro para texto */
    --light-gray: #ffffff; /* Blanco */
    --dark-gray: #666666; /* Gris medio oscuro */
    --white: #ffffff; /* Blanco puro */
    --beige-light: #ffffff; /* Blanco */
    --beige-medium: #ffffff; /* Blanco */
    --beige-dark: #f0f0f0; /* Gris muy claro */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    background-color: var(--beige-dark);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--beige-medium);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.whatsapp-btn {
    background-color: #A47864;
    color: #ffffff;
    border: 1px solid #A47864;
}

.whatsapp-btn:hover {
    background-color: #8b6652;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

/* Header */
/* Header Styles */
header {
    background-color: var(--beige-light);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--beige-medium);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: var(--beige-medium);
    border: 1px solid var(--beige-dark);
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.logo a:hover {
    background-color: var(--beige-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 40px;
}

/* Navigation */
nav ul {
    display: flex;
    margin: 0;
    padding: 0;
}

nav li {
    list-style: none;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    position: relative;
    transition: var(--transition);
    border-radius: 4px;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 80px 30px 30px;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    nav a {
        font-size: 1.1rem;
        padding: 10px 15px;
        display: block;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    nav a:hover {
        background-color: rgba(74, 111, 165, 0.1);
    }
    
    .menu-toggle {
        width: 32px;
        height: 24px;
        position: relative;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--text-color);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.3s ease-in-out;
    }
    
    .menu-toggle span:nth-child(1) {
        top: 0;
    }
    
    .menu-toggle span:nth-child(2),
    .menu-toggle span:nth-child(3) {
        top: 10px;
    }
    
    .menu-toggle span:nth-child(4) {
        top: 20px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    .menu-toggle.active span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    .menu-toggle.active span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Adjust product grid for mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    /* Adjust hero section for mobile */
    .hero {
        height: 80vh;
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Estilos del Carrusel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide img.active {
    opacity: 1;
    z-index: 1;
}

/* Estilos para los slides de respaldo */
.fallback-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fallback-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-color);
    border: 1px solid var(--beige-medium);
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-control:hover {
    background: var(--beige-medium);
    color: var(--text-color);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--beige-medium);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--beige-dark);
    transform: scale(1.2);
    border-color: var(--beige-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center; /* Añadido para centrar horizontalmente */
    color: #fff;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    text-align: center; /* Centra el contenido del hero */
}

.btn-hero {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background-color: var(--white);
    color: var(--text-color);
    transform: translateY(-2px);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    background-color: #ff5252;
}

.hero .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.hero .btn:hover::before {
    left: 100%;
}

.hero .btn i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.hero .btn:hover i {
    transform: translateX(5px);
}

/* Pulse animation for the button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.hero .btn.pulse {
    animation: pulse 2s infinite;
}

/* Add this to make the button more visible on mobile */
@media (max-width: 768px) {
    .hero .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Featured Section */
.featured {
    background-color: var(--light-gray);
}

.featured-product {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-gallery {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.main-image {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 0;
    text-align: center; /* Centra el texto de la información */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin: 15px 0;
}

.description {
    margin-bottom: 25px;
    color: var(--dark-gray);
}

/* Catalog Section */
/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los elementos horizontalmente */
    padding: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    max-width: 300px; /* Ancho máximo para la imagen */
    margin-bottom: 20px;
    height: 350px; /* Altura ajustada para coincidir con la primera imagen */
    overflow: hidden; /* Oculta cualquier parte que se salga */
    position: relative; /* Necesario para que el overlay se posicione respecto a la imagen */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene proporción y llena el contenedor */
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    color: var(--white);
    padding: 10px 20px;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.view-details:hover {
    background: var(--white);
    color: var(--primary-color);
}

.product-card .product-info {
    padding: 0;
    text-align: center; /* Centra el texto de la información */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 1.3rem;
    color: #333333;
    margin: 10px 0;
}

.product-card .description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.product-card .btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    text-align: justify;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    min-width: 200px;
}

.contact-method:hover {
    transform: translateY(-10px);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Product Detail Page */
.product-detail-page {
    padding: 120px 0 60px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.product-detail-image {
    width: 100%;
    max-width: 600px; /* tamaño uniforme del contenedor de imagen */
    margin: 0 auto 20px; /* centra y deja espacio debajo en mobile */
}

.product-detail-image img {
    width: 100%;
    height: 420px; /* altura uniforme para todas las páginas */
    object-fit: cover; /* recorta manteniendo proporción */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-detail-info {
    text-align: left;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-detail-info .price {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-detail-info .description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-actions {
    display: flex; /* Centra el botón de WhatsApp */
    justify-content: center;
}

.product-actions .btn {
    width: 100%;
    max-width: 300px;
}

/* Responsive stack for product-detail: image top, text below */
@media (max-width: 768px) {
  .product-detail-container {
    grid-template-columns: 1fr; /* apilar */
    gap: 24px;
  }

  /* Agrega margen lateral en mobile para que no pegue a los bordes */
  .product-detail-page {
    padding: 120px 16px 60px;
  }

  .product-detail-image img {
    height: 320px; /* altura uniforme en mobile */
  }

  .product-detail-info {
    text-align: left;
  }

  .product-detail-info .description {
    margin-top: 10px; /* salto de línea visual bajo la imagen */
  }

  .product-detail-info .product-actions {
    margin-top: 16px; /* botón al final con separación */
  }
}

/* Footer */
footer {
    background-color: #A47864; /* PANTONE 17-1230 Mocha Mousse */
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links, .social-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4, .social-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .social-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Footer social icon (Instagram): keep icon white and scale 50% on hover */
footer .footer-social i {
    color: #ffffff !important;
    transition: transform 0.2s ease;
    display: inline-block;
    transform-origin: center;
    transform: scale(1.5);
}

footer .footer-social a:hover i {
    transform: scale(1.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .featured-product, .about-content {
        flex-direction: column;
    }
    
    .product-gallery, .product-info, .about-text, .about-image {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .product-info {
        padding: 20px !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
