@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: #EC268F; /* Dorado */
    --accent-hover: #da60f5; /* Dorado más oscuro */
    --card: #2d2d2d;
    --hover: #3d3d3d;
    --price-color: #ffee00;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Cormorant Garamond', serif;
    --color-categoria: #000000; /* Color por defecto para las categorías */
    --color-ver-mas: #EC268F; /* Color por defecto para "ver más" */
}



        body {
            background-color: var(--background);
            color: var(--text);
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 20px;
        }

        .header {
            background: linear-gradient(45deg, #ec268f, #ff5eb4)
;
            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-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fuerza 3 columnas en escritorio */
    gap: 20px;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    min-height: auto;
    overflow-y: auto;
    margin: auto;
    padding-bottom: 50px;
}

        
        /* Ajustar tamaño de cada tarjeta para que encajen en el contenedor */
        .product-card {
            width: 100%; /* Ocupar todo el espacio de su columna */
            height: calc(1080px / 3 - 20px); /* Dividir el contenedor en 3 filas */
            position: relative;
            overflow: hidden;
        }
        
        /* Asegurar imágenes cuadradas dentro de cada tarjeta */
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        
        /* Hover uniforme */
        .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;
        }
        
        .product-card:hover .product-hover-info {
            opacity: 1;
        }
        
        /* Contenido del hover */
        .hover-content {
            text-align: center;
            color: white;
            width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .hover-title {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .hover-price {
            font-size: 1rem;
            margin-bottom: 10px;
        }
        
        .view-details {
            font-size: 1rem;
            padding: 8px 12px;
            background-color: #fff;
            color: #000000;
            border-radius: 5px;
            cursor: pointer;
        }
        
        /* Responsividad */
        @media (max-width: 1080px) {
            #products-container {
                width: 100%;
                height: auto;
                grid-template-columns: repeat(2, 1fr); /* 2 columnas en pantallas más pequeñas */
            }
        
            .product-card {
                height: auto;
            }
        }
        
        @media (max-width: 768px) {
            #products-container {
                grid-template-columns: 1fr; /* 1 columna en móviles */
            }
        }
        
        
        .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: #EC268F;
            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 #EC268F;
        }
        
        .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;
        }
        
        /*Icono estrella producto destacados*/
        .featured-title i {
            color: #EC268F;
            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: #EC268F;
            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: 380px; /* Asegura que la imagen tenga una altura fija */
                aspect-ratio: 1 / 1; /* Hace que la imagen sea completamente cuadrada */
                object-fit: cover; /* Recorta la imagen sin deformarla */
                border-radius: 8px;
                margin-bottom: 15px;
                display: block;
            }
            
        
        .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;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .featured-product-button {
            background-color: #EC268F;
            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;
            }
        }
        @media (max-width: 768px) {
            .featured-product-image {
                height: 250px;
            }
        }
        
        

        .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: 400px; /* 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;
        }
        
        /* Eliminamos el bottom-fade separado y trabajamos solo con overlay */
          
        .logo {
            width: 220px;
        }
        
        .toggle-btn {
            background-color: #EC268F;
            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: #EC268F; /* 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: #EC268F;
            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;
        }*/

       /* ESTILO DE "VER MÁS" */
.categoria-overlay p {
    cursor: pointer;
    color: #EC268F;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #EC268F;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

/* PUNTOS DECORATIVOS A LOS LADOS */
.categoria-overlay p::before,
.categoria-overlay p::after {
    content: '•';
    font-size: 18px;
    color: var(--color-ver-mas);
    position: absolute;
}

.categoria-overlay p::before {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.categoria-overlay p::after {
    right: -15px;
    top: 50%;
    transform: translateY(100%);
}

/* EFECTO HOVER BOTONES DE CATEGORIAS*/
.categoria-overlay p:hover {
    color: #ffffff;
    background: #000000;
    box-shadow: 0 0 12px #EC268F;
    transform: scale(1.05);
}   
        
        

        /* 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 #EC268F;
    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 #EC268F;
    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 #EC268F;
    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;
            }
        }
        
        /* Estilos para la sección de testimonios */
.testimonios-section {
    padding: 30px 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/*Icono de conoce nuestras categorias*/
.section-title i {
    color: #EC268F;
    font-size: 24px;
    margin-right: 15px;
}

.section-title h2 {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.section-subtitle {
    color: #aaaaaa;
    font-size: 16px;
    margin: 0;
}

/* Grid de testimonios */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.testimonio-item {
    background: linear-gradient(145deg, #222222, #2a2a2a);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonio-item::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(236, 38, 143, 0.3) 0%, rgba(236, 38, 143, 0) 70%);
    top: -20px;
    left: -20px;
    border-radius: 50%;
    z-index: 0;
}


.testimonio-content {
    position: relative;
    z-index: 1;
}

.testimonio-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.testimonio-text::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 60px;
    color: rgba(139, 0, 170, 0.3);
    position: absolute;
    top: -30px;
    left: -10px;
    z-index: -1;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testimonio-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    margin-right: 15px;
}

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

.testimonio-info {
    display: flex;
    flex-direction: column;
}

.testimonio-nombre {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.testimonio-cargo {
    font-size: 14px;
    color: #EC268F;
    margin: 0;
}

.testimonio-rating {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.testimonio-rating i {
    color: #ffee00;
    font-size: 14px;
    margin-right: 3px;
}

.testimonio-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        transparent 50%,
        rgba(236, 38, 143, 0.3) 50%,
        transparent 70%
    );
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonio-item:hover::after {
    opacity: 1;
}


@media (max-width: 768px) {
    .testimonios-section {
        padding: 40px 15px;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

        .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;
}

.galeria-especificaciones {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
}

.imagen-item {
    flex: 1 1 30%;
    max-width: 30%;
}

.imagen-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.imagen-item img:hover {
    transform: scale(1.05);
}

.galeria-reels-oscura {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background-color: #111;
    justify-content: center;
    align-items: start;
}

.reel-item {
    background-color: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
    aspect-ratio: 9 / 16;
    display: flex;
}

.reel-item:hover {
    transform: scale(1.02);
}

.reel-item video,
.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 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;
        }
    }
        
        .logo {
  width: 130px;  /* Cambia este valor según el tamaño deseado */
  height: auto;  /* Mantiene la proporción del logo */
}

/* Móviles: galería de especificaciones */
@media (max-width: 768px) {
    .galeria-especificaciones {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .imagen-item {
        width: 100%;
    }

    .imagen-item img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
}

@media (max-width: 768px) {
    .galeria-especificaciones {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    .imagen-item {
        width: 100%;
    }

    .imagen-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }
}

@media (max-width: 768px) {
    .galeria-especificaciones {
        flex-direction: column;
        align-items: center;
    }

    .imagen-item {
        max-width: 100%;
    }
}

.featured-product-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .featured-product-image {
        height: auto;
        aspect-ratio: auto;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    background-color: var(--card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.product-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr; /* 1 columna en móviles */
    }
}


