@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    --background: #1a1a1a;
    --text: #ffffff;
    --accent: #bf930d; /* Dorado */
    --accent-hover: #DAA520; /* Dorado más oscuro */
    --card: #2d2d2d;
    --hover: #3d3d3d;
    --price-color: #FFD700;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Cormorant Garamond', serif;
}



        body {
            background-color: var(--background);
            color: var(--text);
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 20px;
        }

        .header {
            background: linear-gradient(45deg, #bf930d, #d4af37);
            color: white;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 20px;
        }

        .header-back {
            position: absolute;
            left: 1rem;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            transition: transform 0.2s;
        }

        .header-back:hover {
            transform: translateX(-3px);
        }

        /* ... (resto de estilos se mantienen igual) ... */

        @media (max-width: 480px) {
            .header-back {
                font-size: 1rem;
                left: 0.5rem;
            }
        }

        .header h1 {
            font-family: var(--font-primary);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .cart-icon {
            position: relative;
            cursor: pointer;
            font-size: 2em;
        }

        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--accent);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.5em;
            font-weight: bold;
            padding: 2px;
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .qr-icon {
            position: relative;
            cursor: pointer;
            font-size: 1.8em;
            padding: 5px;
            color: var(--text);
            transition: transform 0.2s ease;
        }
        
        .qr-icon:hover {
            transform: scale(1.1);
        }
        
        .qr-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .qr-modal.active {
            display: flex;
        }
        
        .qr-modal-content {
            background-color: var(--card);
            border-radius: 10px;
            padding: 20px;
            width: 90%;
            max-width: 400px;
            border-top: 3px solid var(--accent);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .qr-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .qr-modal-header h2 {
            margin: 0;
            color: var(--text);
            font-size: 1.5em;
        }
        
        .qr-close-btn {
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5em;
            cursor: pointer;
            padding: 5px;
            transition: transform 0.2s ease;
        }
        
        .qr-close-btn:hover {
            transform: scale(1.1);
        }
        
        .qr-modal-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .qr-image {
            background-color: rgb(255, 255, 255);
            padding: 15px;
            border-radius: 8px;
            width: 200px;
            height: 200px;
        }
        
        .qr-download-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s ease;
        }
        
        .qr-download-btn:hover {
            background-color: #000000;
        }
        
        @media (max-width: 768px) {
            .qr-modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .qr-image {
                width: 180px;
                height: 180px;
            }
        }

       /*.products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .product-item {
            position: relative;
            overflow: hidden;
            border-radius: 0px;
        }
        .product-item img {
            width: 100%;
            height: auto;
            border-radius: 0px;
            transition: transform 0.3s ease;
        }
        .product-item:hover img {
            transform: scale(1.1);
        }*/

       .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 150px;
    gap: 10px;
    grid-auto-flow: dense;
}

.product-card {
    background:#1d1d1d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Variación en tamaños (ahora con la clase .big-product correctamente) */
.big-product {
    grid-column: span 2;
    grid-row: span 2;
}

/* Asegurar imágenes cuadradas */
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* HOVER */
.product-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.product-card:hover .product-hover-info {
    opacity: 1;
}

/* Estilos generales del hover */
.hover-content {
    text-align: center;
    color: white;
    width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Mueve el contenido hacia arriba */
    align-items: center; /* Asegura que todo esté centrado horizontalmente */
    transition: transform 0.3s ease;
    margin-top: -40px; /* Ajusta la altura (puedes probar con otros valores) */
}

/* Estilos para imágenes pequeñas */
.product-card:not(.big-product) .hover-content {
    font-size: 0.6rem;
}

.product-card:not(.big-product) .hover-title {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.product-card:not(.big-product) .hover-price {
    font-size: 0.8rem;
    margin-bottom: 3px;
}

/* Ajustar botón en imágenes pequeñas */
.product-card:not(.big-product) .decorative-frame {
    padding: 5px;
    border-width: 1px;
}

.product-card:not(.big-product) .view-details {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* Ajustes para el hover en imágenes grandes */
.big-product .hover-content {
    font-size: 1rem;
    padding: 10px;
}

.big-product .hover-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.big-product .hover-price {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* Aumentar el tamaño del botón en imágenes grandes */
.big-product .decorative-frame {
    padding: 12px;
    border-width: 2px;
}

.big-product .view-details {
    font-size: 1rem;
    padding: 10px 15px;
}

@media (max-width: 768px) {
    .products-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 300px; /* Asegurar que todas las tarjetas sean del mismo tamaño */
    }

    .product-image {
        width: 100%;
        height: auto;
    }

    /* FORZAR QUE TODAS LAS TARJETAS USEN EL HOVER GRANDE */
    .product-card .product-hover-info {
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        box-sizing: border-box;
        overflow: hidden;
    }

    .product-card:hover .product-hover-info {
        opacity: 1;
    }

    /* 🔹 APLICAR EL FORMATO DEL HOVER GRANDE A TODAS LAS TARJETAS */
    .product-card .hover-content {
        font-size: 1.2rem !important; /* 🔥 Forzar tamaño uniforme */
        padding: 15px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product-card .hover-title {
        font-size: 1.6rem !important; /* 🔥 Forzar título más grande */
        margin-bottom: 10px;
    }

    .product-card .hover-price {
        font-size: 1.2rem !important;
        margin-bottom: 10px;
    }

    /* 🔹 Asegurar que los botones sean grandes en todas las tarjetas */
    .product-card .decorative-frame {
        padding: 14px !important;
        border-width: 2px;
    }

    .product-card .view-details {
        font-size: 1.1rem !important;
        padding: 12px 18px;
    }

    /* 🔹 ELIMINAR cualquier referencia a .big-product en móviles */
    .big-product {
        grid-column: unset !important;
        grid-row: unset !important;
    }
}




        
 
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border: 3px solid gold;
            border-radius: 0px;
            text-align: center;
        }
        .product-item:hover .overlay {
            opacity: 1;
        }

        .cart-container {
            max-width: 800px;
            margin: auto;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cart-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 10px;
        }
        
        .cart-img {
            width: 80px;
            border-radius: 5px;
            margin-right: 15px;
        }
        
        .cart-info {
            flex: 1;
        }
        
        .cart-summary {
            text-align: right;
            font-size: 20px;
        }
        
        button {
            background-color: #8b5e3c;
            color: rgb(255, 255, 255);
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        
        button:hover {
            background-color: #000000;
        }
        
       

.product-hover-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-images:hover .product-hover-info {
  opacity: 1;
}

.hover-content {
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.carousel-images:hover .hover-content {
  transform: translateY(0);
}

.hover-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hover-price {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.decorative-frame {
  position: relative;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.decorative-frame:before,
.decorative-frame:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid white;
}

.decorative-frame:before {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}

.decorative-frame:after {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
}

.view-details {
  background: transparent;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-details:hover {
  transform: scale(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: white;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}


        .overlay h3 {
            margin: 0;
            font-size: 1.2em;
        }
        .overlay p {
            margin: 5px 0 0;
            font-size: 1em;
            font-weight: bold;
            color: #FFD700;
        }
        .overlay button {
            margin-top: 10px;
            padding: 8px 15px;
            background-color: #FFD700;
            border: none;
            color: black;
            cursor: pointer;
            font-size: 1em;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .overlay button:hover {
            background-color: white;
            color: black;
        }

        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;  
            height: 100%;
            width: 100%;   
            background-color: var(--card);
            padding: 20px;
            z-index: 1000;
            overflow-y: auto;
            transition: right 0.3s ease-in-out;
            box-shadow: -2px 0 10px rgba(0,0,0,0.3);
            max-width: 100%;
            box-sizing: border-box;
            margin: 0;
            border-radius: 0;
            border-top: 5px solid var(--accent); 
        }

        @media (min-width: 768px) {
            .cart-modal {
                width: 400px;
                right: -400px;
                border-radius: 0;
            }
        }

        .cart-modal.active {
            right: 0;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #444;
            width: 100%;
            box-sizing: border-box;
            margin: 0;
        }
        
        .cart-item-details {
            flex-grow: 1;
            margin-right: 15px;
        }
        
        .cart-item-title {
            font-weight: bold;
            font-size: 1.1em;
            margin-bottom: 8px;
        }
        
        .cart-item-variants {
            display: flex;
            gap: 8px;
            margin-bottom: 10px;
            font-size: 0.9em;
        }

        .variant-tag {
            padding: 3px 8px;
            border-radius: 4px;
            background-color: var(--hover);
            font-size: 0.85em;
        }
        
        .variant-tag.size {
            border: 1px solid var(--accent);
        }
        
        .variant-tag.color {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .featured-section {
            margin: 30px 0;
            padding: 20px;
            background-color: var(--card);
            border-radius: 10px;
            border-top: 3px solid var(--accent);
        }
        
        .featured-section {
            margin: 30px 0;
            padding: 20px;
            background-color: var(--card);
            border-radius: 10px;
            border-top: 3px solid var(--accent);
        }
        
        .featured-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 0 10px;
        }
        
        .featured-title {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: var(--font-secondary);
            font-weight: 500;
        }
        
        .featured-title i {
            color: var(--accent);
            font-size: 2.0em;
        }
        
        .featured-title h2 {
            margin: 0;
            font-size: 1.8em;
            color: var(--text);
        }
        
        .featured-controls {
            display: flex;
            gap: 10px;
        }
        
        .featured-nav-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .featured-nav-btn:hover {
            background-color: #000000;
        }
        
        .featured-carousel {
            position: relative;
            overflow: hidden;
            padding: 10px;
        }
        
        .featured-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
        }
        
        .featured-product {
            flex: 0 0 300px;
            background: var(--hover);
            border-radius: 10px;
            padding: 15px;
            box-sizing: border-box;
            }
        
        .featured-product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .featured-product-info {
            text-align: left;
            
        }
        
        .featured-product-title {
            font-size: 1.6em;
            margin-bottom: 8px;
            color: var(--text);
            font-family: var(--font-secondary);
            font-weight: 500;
        }
        
        .featured-product-price {
            font-size: 1.2em;
            color: var(--accent);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .featured-product-button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }
        
        .featured-product-button:hover {
            background-color: #000000;
        }
        
        @media (max-width: 768px) {
            .featured-product {
                flex: 0 0 250px;
            }
            
            .featured-title h2 {
                font-size: 1.5em;
            }
            
            .featured-title i {
                font-size: 1.5em;
            }
        }
        

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        .delete-btn {
            background-color: #dc3545;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-display {
            margin: 0 10px;
        }

        #cart-items {
            max-height: calc(100vh - 350px); 
            overflow-y: auto;
            margin-bottom: 30px;  
            padding-bottom: 20px;
            width: 100%;
            box-sizing: border-box;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 1.5em;
        }

        .checkout-form {
            display: none;
            margin-top: 20px;
            padding: 15px;
            background-color: var(--hover);
            border-radius: 8px;
            margin-bottom: 80px;  
            width: 100%;
            box-sizing: border-box;
            margin: 20px 0;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--text);
        }

        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px 8px;
            border: 1px solid #444;
            border-radius: 4px;
            background-color: var(--card);
            color: var(--text);
            font-size: 16px;  
            width: 100%;
            box-sizing: border-box;
        }

        .form-group textarea {
            height: 100px;
            resize: vertical;
        }

        .checkout-button {
            background-color: #ff0000;
            color: rgb(255, 255, 255);
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-size: 1.1em;
            margin-top: 15px;
            transition: background-color 0.3s ease;
            margin-bottom: 20px;
        }

        .checkout-button:hover {
            background-color: #000000;
        }

        .complete-order-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-size: 1.1em;
            margin-top: 15px;
            transition: background-color 0.3s ease;
            margin-bottom: 20px;
        }

        .complete-order-btn:hover {
            background-color: #000000;
        }

        .complete-order-btn, 
        .checkout-button {
            position: sticky;
            bottom: 20px;
            margin-top: 20px;
            z-index: 2;
        }

        .banner {
            position: relative;
            height: 360px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .banner-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
        .banner .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.7) 70%,
                var(--background) 100%
            );
            z-index: 1;
        }
        
        .banner-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            gap: 20px;
            padding: 20px;
        }
        
        .banner .bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px; /* Altura aumentada para un degradado más suave */
            background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, var(--background) 100%);
            z-index: 2;
            pointer-events: none;
        }
          
        .logo {
            width: 220px;
        }
        
        .toggle-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1.1em;
            transition: background-color 0.3s ease;
        }
        
        .toggle-btn:hover {
            background-color: #000000;
        }
        
        .social-icons {
            margin-top: 20px;
            display: flex;
            gap: 15px;
            justify-content: center; /* Centra las burbujas */
        }
        
        .social-bubble {
            width: 50px;
            height: 50px;
            background-color: var(--accent); /* Usa el color de acento */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-decoration: none; /* Elimina subrayados */
        }
        
        .social-bubble:hover {
            background-color: #000000; /* Color más oscuro en hover */
            transform: scale(1.1); /* Efecto de aumento */
        }
        
        
       /* .social-icons {
            margin-top: 20px;
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        .social-bubble {
            width: 50px;
            height: 50px;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
        }
        
        .social-bubble:hover {
            background-color: #5a3ea8;
            transform: scale(1.1);
        }*/
        

        .contact-info {
            display: none;
            text-align: center;
            margin-top: 20px;
        }

        .contact-info.visible {
            display: block;
        }

        .contact-pill {
            background-color: var(--accent);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            margin: 10px 0;
            display: inline-block;
        }

      /*  .categories-section {
            margin: 20px 0;
            padding: 10px 0;
            background: linear-gradient(300deg, #FFD700 0%, #000000 80%);
            border-radius: 10px;
        }

        .categories-container {
            display: flex;
            gap: 20px;
            padding: 20px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            justify-content: center;
        }

        .categories-container::-webkit-scrollbar {
            display: none;
        }

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 100px;
            text-align: center;
        }

        .category-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid var(--text);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--card);
            transition: transform 0.3s ease;
        }

        .category-circle:hover {
            transform: scale(1.1);
        }

        .category-icon {
            font-size: 2em;
            color: var(--text);
        }

        .category-name {
            font-size: 0.9em;
            color: var(--text);
            font-weight: bold;
        }*/

        /* Estilos para la sección promocional */
.promo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

/* Estilos para el banner */
.promo-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-top: 3px solid var(--accent);
    background-color: var(--card);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.promo-button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.promo-button:hover {
    background-color: #000000;
}

/* Estilos para el video */
.promo-video {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-top: 3px solid var(--accent);
    background-color: var(--card);
}

.video-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shorts-section {
    padding: 20px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
    justify-items: center;
}

.short-video {
    background-color: var(--card);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border-top: 3px solid var(--accent);
    transition: transform 0.3s ease;
    width: 300px; /* Aumentado de 220px a 300px */
}

.short-info {
    padding: 10px 15px;
    text-align: center;
    margin: 0 10px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 150%; /* Ajustado de 177.77% para una proporción menos vertical */
    height: 0;
    overflow: hidden;
}


.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}

/* Ajustes responsive */
@media (max-width: 1200px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .short-video {
        width: 280px; /* Ajustado para tablets */
    }
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: 1fr;
    }
    .short-video {
        width: 320px; /* Ajustado para móviles */
    }
}



/* Estilos para el header de sección de productos */
.section-header {
    background-color: var(--card);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    border-top: 3px solid var(--accent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--font-secondary);
    font-weight: 500;
}

.section-header-content {
    text-align: left;
    padding: 0 10px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.section-title i {
    font-size: 1.8em;
    color: var(--accent);
}

.section-title h2 {
    margin: 0;
    font-size: 1.8em;
    color: var(--text);
}

.section-subtitle {
    color: #bbbbbb;
    margin: 0;
    font-size: 1.1em;
    padding-left: 45px;
}

        .footer {
            background-color: var(--card);
            padding: 20px;
            margin-top: 40px;
            text-align: center;
            border-radius: 10px;
        }

        .footer-logo {
            width: 150px;
            height: auto;
            margin-bottom: 15px;
        }

        .footer-link {
            color: #FFD700;
            text-decoration: none;
            font-size: 1.2em;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .footer-link:hover {
            text-decoration: underline;
        }

        .footer-text {
            color: var(--text);
            margin-top: 10px;
            font-size: 0.9em;
        }

     /* Estilos actualizados para el carrusel y las imágenes */
.carousel {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Esto crea un contenedor cuadrado */
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    margin-bottom: 15px;
}

.carousel-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.carousel-image.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Flower icon color selector styles */
.color-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.flower-color-option {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    position: relative;
    opacity: 0.7;
}

.flower-color-option:hover {
    opacity: 1;
    transform: scale(1.1);
}

.flower-color-option.selected {
    opacity: 1;
    transform: scale(1.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.flower-color-option svg {
    width: 100%;
    height: 100%;
}
        
          /* Estilos para el selector de talla */
/* Estilos para el selector de talla */
.size-selector {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: var(--card);
    color: var(--text);
    border: 1px solid var(--accent);
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.size-selector:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(107, 70, 193, 0.2);
}

/* Estilos para el selector de color */
.color-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: var(--accent);
    transform: scale(1.1);
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 0 2px rgba(0,0,0,0.8);
    font-size: 16px;
}

/* Ajuste para el espacio entre elementos en la tarjeta de producto */
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
}

.variant-tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    background-color: var(--card);
    border: 1px solid var(--accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .color-selector {
        justify-content: flex-start;
    }
    
    .color-option {
        width: 25px;
        height: 25px;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
    .promo-section {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    .banner-content h2 {
        font-size: 1.5em;
    }

    .banner-content p {
        font-size: 1em;
    }

    .promo-button {
        padding: 8px 20px;
        font-size: 1em;
    }

    .section-header {
        padding: 15px;
        margin: 20px 0;
    }

    .section-title {
        gap: 10px;
    }

    .section-title i {
        font-size: 1.5em;
    }

    .section-title h2 {
        font-size: 1.5em;
    }

    .section-subtitle {
        font-size: 1em;
        padding-left: 35px;
    }
}

/*.floating-categories {
    position: fixed;
    left: -40px; 
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    display: none;
}

.floating-categories.show {
    display: block;
}

.floating-categories-menu {
    background-color: var(--card);
    border-radius: 0 8px 8px 0;
    border-top: 3px solid var(--accent);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    width: 40px; 
    transition: width 0.3s ease, left 0.3s ease;
    overflow: hidden;
    padding: 10px 0;
}

.floating-categories.visible {
    left: 0; 
}

.floating-categories.visible .floating-categories-menu {
    width: 160px; 
}

.floating-categories-toggle {
    position: absolute;
    right: -35px; 
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: var(--accent);
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.floating-category-item {
    display: flex;
    align-items: center;
    padding: 8px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--text);
    white-space: nowrap;
}

.floating-category-item i {
    width: 25px; 
    text-align: center;
    color: var(--accent);
    font-size: 1em;
}

.floating-category-item span {
    font-size: 0.85em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-categories.visible .floating-category-item span {
    opacity: 1;
}

.floating-categories-toggle {
    position: absolute;
    right: -45px; 
    top: 50%;
    transform: translateY(-50%);
    width: 50px; 
    height: auto; 
    background-color: var(--accent);
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px 5px; 
}

.floating-categories-toggle {
    position: absolute;
    right: -35px; 
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: auto;
    background-color: var(--accent);
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 8px 4px;
}


.floating-categories-toggle i {
    font-size: 1.3em;
    margin-right: -5px; 
}


.floating-categories-toggle i {
    font-size: 1.3em; 
}


.floating-categories-text {
    font-size: 9px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 3px;
    margin-right: -5px; 
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.1;
}




@media (max-width: 768px) {
    .floating-categories {
        display: none;
    }
}*/


        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .header h1 {
                font-size: 1.2em;
                white-space: nowrap;
                margin: 0;
                padding-right: 10px;
            }

            .header {
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .section-subtitle {
                padding-left: 0;
            }
        }

        @media (max-width: 600px) {
            .categories-container {
                display: flex;
                gap: 15px; /* Espacio entre las categorías */
                overflow-x: auto; /* Permite el desplazamiento horizontal */
                justify-content: flex-start; /* Alinea las categorías al inicio */
                scroll-behavior: smooth; /* Desplazamiento suave */
                padding: 10px; /* Asegura espacio alrededor */
            }
        
            .category-item {
                flex: 0 0 calc(25% - 10px); /* Cada categoría ocupa el 25% menos el gap */
                max-width: calc(25% - 10px); /* Ajusta el tamaño máximo */
                text-align: center;
            }
        
            .category-circle {
                width: 60px;
                height: 60px;
            }
        
            .category-icon {
                font-size: 1.5em;
            }
        
            .category-name {
                font-size: 0.8em;
            }

            .social-icons {
                margin-top: 5px;
                display: flex;
                gap: 15px;
                justify-content: center; /* Centra las burbujas */
            }
            
            .social-bubble {
                width: 50px;
                height: 50px;
                background-color: var(--accent); /* Usa el color de acento */
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.5em;
                transition: background-color 0.3s ease, transform 0.3s ease;
                text-decoration: none; /* Elimina subrayados */
            }
            
            .social-bubble:hover {
                background-color: #000000; /* Color más oscuro en hover */
                transform: scale(1.1); /* Efecto de aumento */
            }
        
            .contact-info {
                display: none;
                text-align: center;
                margin-top: 20px;
            }
    
            .contact-info.visible {
                display: block;
            }
    
            .contact-pill {
                background-color: var(--accent);
                color: white;
                padding: 10px 25px;
                border-radius: 25px;
                margin: 10px 0;
                display: inline-block;
            }

            .banner {
                position: relative;
                height: 400px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;
                overflow: hidden;
            }
        }
        
        .whatsapp-float-button {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
          
        .whatsapp-float-button:hover {
            transform: scale(1.1);
        }
          
        .whatsapp-float-button a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        .whatsapp-float-button i {
            color: white;
            font-size: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
          
          .whatsapp-float-button-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 1;
            z-index: 100;
          }
          
    /* Agregar estos estilos al archivo styles.css */

    .product-header-banner {
        width: 100%;
        height: 360px;
        position: relative;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .product-header-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    /* Capa de difuminado */
.product-header-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Cubriendo completamente la imagen */
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 10%, #1d1d1d 80%);
    pointer-events: none;
}
    
    @media (max-width: 1024px) {
        .product-header-banner {
            height: 250px;
        }
        .product-header-banner::after {
            height: 70px; /* Ajuste de la altura del desvanecido para pantallas más pequeñas */
        }
    }
    
    @media (max-width: 768px) {
        .product-header-banner {
            height: 200px;
        }
        .product-header-banner::after {
            height: 50px;
        }
    }
    
    @media (max-width: 480px) {
        .product-header-banner {
            height: 180px;
            margin-bottom: 15px;
        }
        .product-header-banner::after {
            height: 40px;
        }
    }
        