<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ========== ðŸ”¥ General para la pÃ¡gina Show ðŸ”¥ ========== */

/* Box-sizing solo en Show */
.pagina-show-prenda *,
.pagina-show-prenda *::before,
.pagina-show-prenda *::after {
    box-sizing: border-box;
}
.pagina-show-prenda .prenda-imagenes {
    flex: 1 1 400px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.pagina-show-prenda main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pagina-show-prenda #thumbnails {
    margin-top: 2px !important; 
}

.pagina-show-prenda #thumbnails .swiper-wrapper {
    gap: 0 !important; 
}

/* Contenedor General */
.pagina-show-prenda .prenda-show-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Columna de ImÃ¡genes */
.pagina-show-prenda .prenda-imagenes {
    flex: 1 1 400px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Swiper Principal */
.pagina-show-prenda #swiper-principal {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3 / 4;
    background: #f9f9f9;
    border-radius: 5px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper Slide y Imagen principal */
.pagina-show-prenda #swiper-principal .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.pagina-show-prenda #swiper-principal .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagina-show-prenda #swiper-principal .swiper-slide img,
.pagina-show-prenda .imagen-principal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
}

/* Swiper Principal Responsive */
@media (max-width: 768px) {
    .pagina-show-prenda .prenda-show-container {
        flex-direction: column;
        align-items: center;
    }

    .pagina-show-prenda .prenda-imagenes {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
        margin: 0;
    }

    .pagina-show-prenda #swiper-principal {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        aspect-ratio: 3/4;
    }
}

/* Resto del CSS permanece igual */

    .pagina-show-prenda #swiper-principal {
        width: 100% !important; /* ðŸ”¥ El swiper ocupa el 100% del ancho */
        max-width: 100% !important;
        height: auto; /* Altura automÃ¡tica o controlada por aspect-ratio */
        aspect-ratio: 3/4; /* ðŸ”¥ Mantiene proporciÃ³n bonita */
    }



/* Miniaturas */
.pagina-show-prenda #thumbnails {
    margin: 2px auto 0 auto;
    width: 100%;
    max-width: 400px;
    height: auto !important;
    max-height: 140px;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-sizing: border-box;
}

.pagina-show-prenda #thumbnails .swiper-wrapper {
    height: auto !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border-radius: 2px;

}

.pagina-show-prenda #thumbnails .swiper-slide {
    width: auto !important;
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagina-show-prenda #thumbnails .swiper-slide img {
    width: 100px;
    height: 140px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
    cursor: pointer;
    transition: border 0.3s ease;
}

.pagina-show-prenda #thumbnails .swiper-slide img:hover {
    border: 2px solid #000;
}

/* Miniaturas Responsive */
@media (max-width: 768px) {
    .pagina-show-prenda .prenda-show-container {
        flex-direction: column;
        align-items: center;
    }

    .pagina-show-prenda #thumbnails {
        margin: 2px auto 0 auto;
        justify-content: center;
        overflow-x: auto;
        display: flex;
    }
}

/* Columna de InformaciÃ³n */
.pagina-show-prenda .prenda-info {
    flex: 1 1 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Texto y precios */
.pagina-show-prenda .prenda-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.pagina-show-prenda .prenda-info p.text-muted {
    font-size: 0.95rem;
}

.pagina-show-prenda .precio-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pagina-show-prenda .precio-final {
    font-size: 1.6rem;
    color: #000;
    font-weight: bold;
}

.pagina-show-prenda .precio-original {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #888;
}

.descripcion-dropdown button {
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    padding: 12px;
    border-radius: 8px;
}

.descripcion-dropdown .card-body {
    font-size: 0.95rem;
    color: #555;
}
/* ðŸ”¥ Contenedor principal */
.descripcion-contenedor {
    margin-top: 1rem;
}

/* ðŸ”¥ BotÃ³n tipo caja */
.descripcion-boton {
    width: 100%;
    background: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

/* ðŸ”¥ Efecto al pasar el mouse */
.descripcion-boton:hover {
    background: #f0f0f0;
    border-color: #999;
}

/* ðŸ”¥ Texto que se despliega */
.descripcion-texto {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}
.descripcion-texto {
    transition: all 0.3s ease;
}




/* ðŸŽ¨ Contenedor de los colores */
.pagina-show-prenda .colores-disponibles {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ðŸŽ¨ Botones de color */
.pagina-show-prenda .color-selector {
    width: 38px;
    height: 38px;
    border-radius: 10px; /* ðŸ”¥ Bordes suaves */
    border: 2px solid transparent; /* ðŸ”¥ Sin borde feo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* ðŸ”¥ Sombra suave */
}

/* ðŸŽ¨ Hover: Efecto bonito al pasar mouse */
.pagina-show-prenda .color-selector:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ðŸŽ¨ Color seleccionado */
.pagina-show-prenda .color-selector.selected {
    border: 2px solid #000; /* ðŸ”¥ Borde negro cuando estÃ¡ seleccionado */
}

/* ðŸŽ¨ Color deshabilitado (sin stock) */
.pagina-show-prenda .color-selector.sin-stock {
    opacity: 0.5;
    cursor: pointer;
    filter: grayscale(20%);
}


/* Selector de tallas */
.pagina-show-prenda .tallas-disponibles {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagina-show-prenda .talla-selector {
    min-width: 44px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagina-show-prenda .talla-selector.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pagina-show-prenda .talla-selector:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(100%);
}

/* BotÃ³n Comprar */
.pagina-show-prenda .boton-comprar {
    margin-top: 1.5rem;
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.pagina-show-prenda .boton-comprar:hover {
    background: #333;
}

/* Responsive para la estructura general */
@media (max-width: 768px) {
    .pagina-show-prenda .prenda-show-container {
        flex-direction: column;
        align-items: center;
    }

    .pagina-show-prenda #thumbnails {
        margin: 2px auto 0 auto;
        justify-content: center;
        overflow-x: auto;
        display: flex;
    }
}

.pagina-show-prenda #thumbnails .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    /* ðŸ”¥ espacio entre miniaturas */
}


.prenda-imagenes {
    width: 120%;
    max-width: 1000px; /* o un ancho que quieras mÃ¡ximo */
    margin: 0 auto;   /* Centrar */
    padding: 0;       /* ðŸ”¥ Sin padding para que no se aleje de los bordes */
}
@media (max-width: 768px) {
    .prenda-imagenes {
        width: 90%;
    }
}


.color-selector.selected {
    position: relative;
    border: 2px solid #000;
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.color-selector.selected::after {
    content: "âœ”ï¸";
    position: absolute;
    top: -6px;
    right: -6px;
    background: white;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 2px;
}


/* ========================================================= */
/* ðŸ”¥ðŸ”¥ðŸ”¥ CSS CORREGIDO PARA EL BOTÃ“N METALIZADO "Comprar Ahora" ðŸ”¥ðŸ”¥ðŸ”¥ */
/* ========================================================= */

/* DefiniciÃ³n de la animaciÃ³n de deslizamiento luminoso */
@keyframes slideShine {
    0% {
        left: -100%; /* El brillo inicia completamente fuera del botÃ³n a la izquierda */
    }
    50% {
        left: 100%; /* El brillo se desliza hasta el final del botÃ³n a la derecha */
    }
    100% {
        left: -100%; /* El brillo vuelve a la posiciÃ³n inicial para que el ciclo se repita suavemente */
    }
}

/* ========================================================= */
/* ðŸ”¥ðŸ”¥ðŸ”¥ CSS CORREGIDO PARA EL BOTÃ“N METALIZADO CON SHAKE EN MÃ“VILES ðŸ”¥ðŸ”¥ðŸ”¥ */
/* ========================================================= */

/* DefiniciÃ³n de la animaciÃ³n de deslizamiento luminoso */
@keyframes slideShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* DefiniciÃ³n de la animaciÃ³n de shake (vibraciÃ³n sutil) para HOVER */
@keyframes buttonShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

/* ðŸ”¥ NUEVA DEFINICIÃ“N DE ANIMACIÃ“N: SHAKE CADA 3 SEGUNDOS ðŸ”¥ */
@keyframes autoShakeEvery3s {
    /* El shake ocurre en los primeros ~13.33% del ciclo de 3 segundos (0.4s de shake / 3s total) */
    0% { transform: translateX(0); }
    1.5% { transform: translateX(-2px); } /* 0.045s */
    4.5% { transform: translateX(2px); }  /* 0.135s */
    7.5% { transform: translateX(-2px); } /* 0.225s */
    10.5% { transform: translateX(2px); } /* 0.315s */
    13.33% { transform: translateX(0); }  /* 0.4s (Fin del shake) */

    /* El resto del tiempo del ciclo (desde ~13.34% hasta 100%) el botÃ³n permanece quieto */
    13.34% { transform: translateX(0); } /* Asegura que se mantenga quieto */
    100% { transform: translateX(0); }
}


/* Estilos base del botÃ³n Comprar Ahora */
.pagina-show-prenda #btnComprarAhora {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--bs-btn-border-color, #212529);

    /* Color de fondo negro */
    background-color: #000;
    color: var(--bs-btn-color, #fff);
    font-size: 1rem;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;

    /* TransiciÃ³n suave para transform, para que el shake se inicie y termine bien */
    transition: transform 0.2s ease-out;
}

/* Efecto shake al pasar el mouse (hover) en dispositivos NO mÃ³viles */
/* AquÃ­ usamos :not(:disabled) para que el shake solo ocurra si el botÃ³n estÃ¡ activo */
.pagina-show-prenda #btnComprarAhora:not(:disabled):hover {
    animation: buttonShake 0.4s ease-in-out; /* Usa el keyframe 'buttonShake' de 0.4s */
}


/* Pseudo-elemento para crear el efecto de brillo/deslizamiento */
.pagina-show-prenda #btnComprarAhora::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    animation: slideShine 3s infinite ease-in-out;
}

/* Estado cuando el botÃ³n estÃ¡ deshabilitado */
.pagina-show-prenda #btnComprarAhora:disabled {
    animation: none; /* Desactiva cualquier animaciÃ³n en el botÃ³n principal */
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    background-color: #333;
    color: #a0a0a0;
    border-color: #333;
}

/* AsegÃºrate de que el pseudo-elemento tambiÃ©n se "resetee" cuando el botÃ³n estÃ¡ deshabilitado */
.pagina-show-prenda #btnComprarAhora:disabled::before {
    animation: none; /* DESACTIVA LA ANIMACIÃ“N DEL BRILLO cuando el botÃ³n estÃ¡ deshabilitado */
    left: -100%;
    background: none;
}

/* Opcional: Efecto al tocar/clicar en mÃ³vil */
.pagina-show-prenda #btnComprarAhora:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: none; /* Asegura que no haya animaciÃ³n de shake al presionar */
}


/* === Media Query para dispositivos mÃ³viles === */
/* Aplica la animaciÃ³n de shake automÃ¡tico solo en pantallas pequeÃ±as (ej. menos de 768px de ancho) */
@media (max-width: 768px) {
    .pagina-show-prenda #btnComprarAhora:not(:disabled) {
        /* ðŸ”¥ CAMBIO CLAVE AQUÃ: Usamos la nueva animaciÃ³n 'autoShakeEvery3s' ðŸ”¥ */
        /* La duraciÃ³n total de la animaciÃ³n es 3s, lo que incluye el shake y la pausa */
        animation: autoShakeEvery3s 3s ease-in-out infinite;
        /* Puedes quitar animation-delay si no quieres un retraso ANTES del primer shake */
        /* Si quieres que el PRIMER shake comience despuÃ©s de un segundo, puedes dejarlo: */
        animation-delay: 1s;
        animation-fill-mode: both;
    }

    /* Sobrescribir el hover en mÃ³viles para evitar conflictos con la animaciÃ³n automÃ¡tica */
    /* En dispositivos tÃ¡ctiles, el hover puede comportarse diferente, asÃ­ que priorizamos la animaciÃ³n automÃ¡tica */
    .pagina-show-prenda #btnComprarAhora:not(:disabled):hover {
        /* Opcional: Si quieres que el shake automÃ¡tico se detenga al hacer hover, podrÃ­as poner: */
        /* animation: none; */
        /* Pero si quieres que el automÃ¡tico siga ocurriendo incluso si el usuario toca la pantalla, dÃ©jalo vacÃ­o. */
        /* En general, en mÃ³viles, el "hover" es menos relevante que en desktop. */
    }
}


/* Hover bonito */
.pagina-show-prenda .botones-compra button:not(:disabled):hover {
    opacity: 0.9;
}

.talla-selector.selected {
    background-color: #000; /* o el color que quieras */
    color: #fff;
    border-color: #000;
}
/* Limitar el ancho y expandir solo hacia abajo */
.accordion-body, 
.accordion-collapse, 
.accordion-item, 
.accordion-button {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden; /* Evita desbordamiento horizontal */
    word-break: break-word; /* Evita palabras largas que estiren */
}
.pagina-show-prenda .descripcion-contenedor {
    width: 400px;         /* ðŸ”¥ FIJO fijo fijo */
    max-width: 400px;     /* ðŸ”¥ FIJO fijo fijo */
    min-width: 400px;     /* ðŸ”¥ FIJO fijo fijo */
    margin: 0 auto;       /* Centrado */
}

.pagina-show-prenda .descripcion-boton {
    width: 95%;          /* Ocupa el 100% del contenedor fijo */
    height: 48px;         /* ðŸ”¥ Alto fijo */
    background: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.pagina-show-prenda .descripcion-texto {
    width: 95%;         /* ðŸ”¥ Mismo 100% del contenedor */
    height: auto;        /* Solo crece en alto si hay mucho texto, pero no en ancho */
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    transition: all 0.3s ease;
    margin-top: 8px;     /* Un pequeÃ±o espacio debajo del botÃ³n */
}
/* ðŸ”¥ Mensaje de stock debajo de los botones de compra */
.pagina-show-prenda #mensaje-stock {
    min-height: 24px; /* ðŸ”¥ Siempre reserva espacio */
    margin-top: 12px;
    margin-bottom: 40px;
    padding: 0 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    transition: opacity 0.3s ease;
    opacity: 0; /* ðŸ”¥ Inicialmente invisible, PERO ocupa espacio */
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Visible */
.pagina-show-prenda #mensaje-stock.visible {
    opacity: 1;
}

/* ðŸ”¥ Responsivo para celulares pequeÃ±os */
@media (max-width: 768px) {
    .pagina-show-prenda #mensaje-stock {
        max-width: 90%; /* ðŸ”¥ Que se ajuste mejor en tablets y celulares */
        font-size: 0.85rem;
        margin-bottom: 30px; /* ðŸ”¥ Un poco menos de margen en mÃ³viles */
    }
}

@media (max-width: 480px) {
    .pagina-show-prenda #mensaje-stock {
        font-size: 0.8rem; /* ðŸ”¥ Letra un poquito mÃ¡s pequeÃ±a en celulares chicos */
        margin-bottom: 20px;
    }
}
.pagina-show-prenda #thumbnails .swiper-slide {
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pagina-show-prenda #thumbnails .swiper-slide.active {
    opacity: 1;
    border: 2px solid black;
}
</pre></body></html>