/* Estilos para fotografia-ia-producto.php */

/* Variables de color (coordinar con tu paleta principal de Sintesia Studio) */
:root {
    --primary-color: #207C8A; /* Azul Sintesia */
    --secondary-color: #005670; /* Verde Menta */
    --dark-bg: #1a1a2e; /* Fondo oscuro principal */
    --dark-bg-secondary: #24243e; /* Fondo oscuro secundario */
    --light-bg: #f0f8ff; /* AliceBlue - Fondo claro principal (pastel azulado) */
    --light-bg-secondary: #e6f2ff; /* Un poco más oscuro que AliceBlue */
    --text-dark: #333;
    --text-light: #f1f1f1;
    --glass-bg-light: rgba(255, 255, 255, 0.25); /* Aumentar opacidad para mejor contraste en pastel */
    --glass-border-light: rgba(255, 255, 255, 0.3);
    --glass-bg-dark: rgba(0, 0, 0, 0.15);
    --glass-border-dark: rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Poppins', sans-serif; /* Asegúrate que Poppins esté cargada */
    color: var(--text-dark);
    line-height: 1.7;
}

 
 
.light-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 80px 0;
    overflow: hidden; /* Para animaciones y efectos */
}

.dark-section .section-title,
.dark-section .section-intro,
.dark-section h3,
.dark-section p {
    color: var(--text-light);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding: 15px 0;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 120px;
    background-image: url('https://images.unsplash.com/photo-1634017839464-5c339ebe3cb4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

.section-title .highlight-text {
    position: relative;
    display: inline-block;
}

.section-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(105,176,225,0) 0%, rgba(105,176,225,1) 50%, rgba(105,176,225,0) 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px 0 rgba(105,176,225,0.5);
}

/* Original highlight-text style */

.dark-section .section-title .highlight-text {
    color: var(--secondary-color);
}

.section-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.dark-section .section-title i {
    color: var(--secondary-color);
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
}

/* Hero Section */
.hero-section-ia-producto {
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background-color: var(--dark-bg); /* Color base */
    background-image: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 10, 74, 0.85) 100%), url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=60');
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay; /* O 'multiply', 'screen' para diferentes efectos */
}

.hero-section-ia-producto .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-light);
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.85);
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-image-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-image-gallery .hero-img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 2px solid var(--glass-border-dark);
    transition: all 0.3s ease;
}

/* Especificidad más alta para el hover */
.hero-image-gallery .hero-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.section-producto-contexto img, .section-modelo-virtual img, .section-modelo-virtual img, .section-estilos-fotografia img, .section-como-funciona img, .section-comparativa img, .section-redes-sociales img {
    transition: transform 0.4s ease;
}

.section-producto-contexto img:hover, .section-modelo-virtual img:hover, .section-estilos-fotografia img:hover, .section-como-funciona img:hover, .section-comparativa img:hover, .section-redes-sociales img:hover {
    transform: scale(1.05);
 }

/* Glassmorphism Effect */
.glass-effect, .glass-effect-dark {
    background: var(--glass-bg-light);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.20);
}

.dark-section .glass-effect-dark {
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
    box-shadow: 0 8px 32px 0 rgba(0,0,0, 0.20);
}

.dark-section .glass-effect-dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(0,0,0, 0.35);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.gallery-grid.two-cols { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.gallery-grid.three-cols { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gallery-grid.four-cols { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.gallery-item img, .social-item img {
    width: 100%;
    height: auto;
    max-height: 380px; /* Aumentado */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-item h3, .social-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.dark-section .gallery-item h3, .dark-section .social-item h3 {
    color: var(--secondary-color);
}

.gallery-item p, .social-item p {
    font-size: 0.95rem;
}

/* Cómo Funciona Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    background-color: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
 

.step-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.step-image {
    width: 100%;
    height: 150px; /* Altura controlada para ser alargada y poco alta */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px; /* Espacio sobre la imagen */
    border: 1px solid var(--glass-border-dark);
}

/* Comparativa Section */
.comparison-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.comparison-item img {
    width: 100%;
    height: auto;
    max-height: 420px; /* Aumentado */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

.comparison-item h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Redes Sociales Section */
.social-item p {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

/* CTA Section */
    .section-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #FDFCF1 0%, #D9D6BA 100%);
    border-top: 1px solid rgba(105,176,225,0.2);
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1560780552-ba54683cb263?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=70');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    filter: blur(3px);
}

.section-cta::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141,226,179,0.15) 0%, rgba(141,226,179,0) 70%);
    z-index: 0;
}

.section-cta .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.section-cta .section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-cta .section-intro {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-cta .section-intro::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, rgba(105,176,225,0) 0%, rgba(105,176,225,0.5) 50%, rgba(105,176,225,0) 100%);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.06);
}

.cta-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.8);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cta-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(105, 176, 225, 0.3);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.cta-content p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin-bottom: 25px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color:transparent;
}

.btn-lg {
    padding: 15px 40px; /* Más grande */
    font-size: 1.2rem; /* Más grande */
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-primary.btn-lg:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(var(--primary-color), 0.3);
}

/* Mini Contact Form (si se usa) */
.contact-form-mini {
    max-width: 500px;
    margin: 50px auto 0 auto;
    padding: 30px;
}

.contact-form-mini h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: rgba(255,255,255,0.8);
    color: var(--text-dark);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: darken(var(--primary-color), 10%);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title { font-size: 2.4rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content .subtitle { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-image-gallery .hero-img {
        width: 150px;
        height: 210px;
    }
    .gallery-grid.two-cols, 
    .gallery-grid.three-cols, 
    .gallery-grid.four-cols {
        grid-template-columns: 1fr; /* Stack on smaller screens */
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .comparison-container {
        grid-template-columns: 1fr;
    }
}

/* Estilos de animación para el enfoque unificado de data-attributes (funcionan con el JS común del sitio) */
/* Las animaciones se controlarán a través del sistema de data-animate y data-delay como en el resto del sitio */

/* Estilos para la galería de imágenes con flechas */
.image-gallery {
    position: relative;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-slide img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 5;
    padding: 0 10px;
}

.gallery-prev,
.gallery-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Adaptaciones para movil */
@media (max-width: 768px) {
    .gallery-wrapper {
        height: 250px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 30px;
        height: 30px;
    }
    
    .gallery-nav {
        padding: 0 5px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }

    .section-cta .section-title {
        font-size: 2.5rem;
    }
}

/* Estilos específicos para galerías de productos */
.product-gallery .gallery-wrapper {
    height: 250px;
}

.product-gallery .gallery-slide img {
   object-fit: cover;
}

/* --- Estilos para la Galería de Outfits --- */

.outfit-gallery-wrapper {
    position: relative;
    overflow: hidden; /* viewport del carrusel */
}

/* Track horizontal con deslizamiento */
#outfit-gallery .gallery-slides {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out; /* desplazamiento suave */
    will-change: transform;
}

#outfit-gallery .gallery-slides .gallery-slide {
    flex: 0 0 100%; /* cada slide ocupa el ancho completo */
    opacity: 1; /* aseguramos visibilidad */
    position: relative !important; /* anula el absoluto genérico */
}

#outfit-gallery .gallery-nav {
    position: relative !important; /* anula absoluto genérico */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}

#outfit-gallery .gallery-prev,
#outfit-gallery .gallery-next {
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

#outfit-gallery .gallery-prev:hover,
#outfit-gallery .gallery-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.06);
}

#outfit-gallery .gallery-dots {
    position: relative !important; /* anula absoluto genérico */
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

/* Tarjetas fluidas para no recortar en diferentes anchos */
.outfit-card {
    width: clamp(260px, 32vw, 320px);
}

#outfit-gallery .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#outfit-gallery .dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}


.subsection-title {
    font-size: 2.2rem; /* Aumentado */
    font-weight: 700; /* Más grueso */
    color: var(--text-light);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px; /* Más espacio */
}

.subsection-title i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.features-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tag {
    background-color: rgba(105, 176, 225, 0.1);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(105, 176, 225, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background-color: rgba(105, 176, 225, 0.2);
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: 1rem;
}

.subsection-intro {
    font-size: 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.8);
}

.outfits-section-container {
    margin-top: 40px;
    padding: 40px 20px 60px; /* Aumentado el padding inferior para los puntos */
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    border: 1px solid var(--glass-border-dark);
    /* overflow: hidden; <-- ESTA LÍNEA CAUSABA EL CORTE, SE ELIMINA */
}

.outfit-gallery-wrapper {
    min-height: 0; /* Deja que el contenido defina la altura, evita cortes */
}

.outfit-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    flex-wrap: nowrap; /* Mantiene layout horizontal en desktop */
}

.outfit-card {
    position: relative;
    flex: 1 1 360px; /* Se adapta para evitar cortes */
    min-width: 280px;
    max-width: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid var(--glass-border-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outfit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.outfit-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.outfit-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: center;
    padding: 25px 15px 15px;
    font-weight: 600;
    font-size: 1rem;
}

.outfit-connector {
    font-size: 2rem;
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(105,176,225,0.5);
    flex: 0 0 32px;
}

@media (max-width: 768px) {
    .outfit-showcase {
        flex-direction: column;
        gap: 30px;
    }
    .outfit-connector {
        transform: rotate(90deg);
    }
    .outfit-card { width: 100%; max-width: 360px; }
}
