/*Home*/
#home .home__title{
    font-size: 5rem !important;
    color: #fff !important;
}

#home .col-6 {
    overflow: hidden;
    transition: transform 0.3s ease-out;
}

#home .col-6:hover {
    transform: scale(1.02); /* Scale sutil del 2% */
}

/* Efecto en el texto */
#home .col-6:hover .tag-clothes .home__title {
    transform: translateY(-3px); /* Solo movimiento hacia arriba */
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    transition: all 0.3s ease-out;
}

/* Ligero brillo en la imagen */
#home .col-6:hover .img-fluid {
    filter: brightness(1.05);
    transition: filter 0.3s ease-out;
}

/* ===== RESPONSIVE HOME SECTION ===== */

/* Large screens (desktop) - maintain current layout */
@media (min-width: 992px) {
    #home .row {
        display: flex;
        height: 100vh;
    }
    
    #home .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        height: 100vh;
    }
    
    #home .home__title {
        font-size: 5rem !important;
    }
}

/* Medium to large screens */
@media (max-width: 1560px) and (min-width: 992px) {
    #home .home__title {
        font-size: 4.5rem !important;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    #home .home__title {
        font-size: 4rem !important;
    }
}

/* Tablet and below - switch to stacked layout */
@media (max-width: 991.98px) {
    html, body {
        overflow-x: hidden !important; /* Fuerza ocultar scroll horizontal */
        max-width: 100vw !important;
        box-sizing: border-box;
    }

    #home .container-fluid {
        padding: 0 !important;
    }
    
    #home .row {
        display: flex;
        flex-direction: column;
        margin: 0 !important;
    }
    
    #home .col-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 50vh !important;
        max-height: 50vh !important;
        margin: 0;
        padding: 0 !important;
    }
    
    #home .img-fluid {
        height: 50vh !important;
        max-height: 50vh !important;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    #home .home__title {
        font-size: 3.5rem !important;
        text-align: center;
    }
    
    #home .tag-clothes {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important; /* Fuerza ocultar scroll horizontal */
        max-width: 100vw !important;
        box-sizing: border-box;
    }

    #home .col-6 {
        height: 45vh !important;
        max-height: 45vh !important;
    }
    
    #home .img-fluid {
        height: 45vh !important;
        max-height: 45vh !important;
    }
    
    #home .home__title {
        font-size: 3rem !important;
    }
    
    #newsletter .form-control{
        width:100% !important;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    #home .col-6 {
        height: 40vh !important;
        max-height: 40vh !important;
    }
    
    #home .img-fluid {
        height: 40vh !important;
        max-height: 40vh !important;
    }
    
    #home .home__title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
}

/* Very small mobile devices */
@media (max-width: 375px) {
    #home .col-6 {
        height: 35vh !important;
        max-height: 35vh !important;
    }
    
    #home .img-fluid {
        height: 35vh !important;
        max-height: 35vh !important;
    }
    
    #home .home__title {
        font-size: 2rem !important;
    }
}

/* Ensure no gaps between images in mobile */
@media (max-width: 991.98px) {
    #home .col-6:first-child {
        margin-bottom: 0;
    }
    
    #home .col-6:last-child {
        margin-top: 0;
    }
}

/* Preserve hover effects on touch devices */
@media (hover: hover) {
    #home .col-6:hover {
        transform: scale(1.02);
    }
    
    #home .col-6:hover .tag-clothes .home__title {
        transform: translateY(-3px);
        text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    }
    
    #home .col-6:hover .img-fluid {
        filter: brightness(1.05);
    }
}

/* For touch devices, remove hover effects */
@media (hover: none) {
    #home .col-6:hover {
        transform: none;
    }
    
    #home .col-6:hover .tag-clothes .home__title {
        transform: translate(-50%, -50%);
        text-shadow: none;
    }
    
    #home .col-6:hover .img-fluid {
        filter: none;
    }
}

.navbar-brand {
    margin: 0 !important;
}

form{
    gap: 1rem !important;
}

.tag-clothes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    color: #fff;
}

.col-6 {
    width: 100%;
    padding: 0 !important;
    max-height: 900px !important;
}

.img-fluid {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top; /* Asegura que la imagen se muestre desde arriba */
}

/* ===== NOVEDADES - TARJETAS MÁS GRANDES CON MISMOS EFECTOS ===== */

#novedades {
    background: #fff;
}

#novedades h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

#novedades h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

#novedades h6.text-secondary {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    text-align: center;
    font-weight:bold !important;
}

/* Container ajustado para 6 productos */
#novedades .container-fluid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

#novedades .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center;
    gap: 25px;
}

/* Tarjetas para mostrar 3 por fila */
#novedades .col-lg-4 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 460px;
    margin-bottom: 40px;
    transition: all 0.3s ease-out;
}

/* Tarjetas estilo favoritos - MISMOS EFECTOS */
#novedades .card {
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

#novedades .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #ccc;
}

/* Botón de favoritos - , POSICIÓN AJUSTADA */
#novedades .card .btn-fav {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#novedades .card .btn-fav:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#novedades .card .btn-fav.active {
    background: rgba(255, 255, 255, 1);
    border-color: #dc3545;
}

.btn-fav i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-fav:not(.active) i {
    color: #6c757d;
}

.btn-fav:not(.active):hover i {
    color: #dc3545;
}

.btn-fav.active i {
    color: #dc3545 !important;
    animation: heartBeat 0.6s ease-in-out;
}

#novedades .card .btn-fav.active:hover {
    background: #fff;
    border-color: #c82333;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

/* Contenedor de imagen */
#novedades .card .product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

#novedades .card .product-image-container a {
    display: block;
    position: relative;
}

/* Imagen más grande */
#novedades .card img {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    object-position: top !important;
    transition: transform 0.3s ease;
}

#novedades .card:hover img {
    transform: scale(1.05);
}

/* Overlay -  */
#novedades .card .product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Indicadores -  */
#novedades .novedad-indicadores {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#novedades .card:hover .novedad-indicadores {
    opacity: 1;
}

#novedades .novedad-indicadores .indicador {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

#novedades .novedad-indicadores .indicador.activo {
    background: white;
    transform: scale(1.3);
}

/* Contenido de la tarjeta - ESTRUCTURA IGUAL A FAVORITOS */
#novedades .card-body {
    padding: 25px !important;
    text-align: left !important;
}

/* Título como enlace igual que favoritos */
#novedades .card-body .card-title {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-bottom: 10px;
    display: block;
}

#novedades .card:hover .card-body .card-title {
    color: #333;
}

/* Precios EXACTAMENTE como favoritos */
#novedades .card-body .product-price {
    font-weight: 600;
    color: #333;
    font-size:1.1em;
}

#novedades .card-body .product-price .original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-weight: 400;
    margin-left: 8px;
}

/* Botones - MISMOS EFECTOS */
#novedades .card-body .product-actions {
    margin-top: 18px;
}

#novedades .product-actions .btn-add-cart {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

#novedades .product-actions .btn-add-cart:hover {
    background: #333;
    transform: translateY(-1px);
}

#novedades .product-actions .btn-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Estados del botón - MISMOS EFECTOS */
#novedades .btn-add-cart.added {
    background: #28a745;
}

#novedades .btn-add-cart.added:hover {
    background: #218838;
}

/* Enlace a tienda */
#novedades .titulo-linea {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 50px;
}

#novedades .titulo-linea a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 15px 0; /* Solo padding vertical */
    background: transparent; /* Sin fondo */
    border: none; /* Sin borde */
    transition: all 0.3s ease;
    overflow: hidden; /* Para contener la animación */
}

/* Estados de focus para accesibilidad */
#novedades .titulo-linea a:focus {
    border-radius: 4px;
}

#novedades .titulo-linea a:focus h6 {
    color: #000;
}

#novedades .titulo-linea a:focus::before {
    width: 100%;
}

#novedades .titulo-linea h6 {
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: #666; /* Color más suave inicialmente */
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Barra animada debajo del texto */
#novedades .titulo-linea a::before {
    content: '';
    position: absolute;
    bottom: 8px; /* Posición de la barra */
    left: 50%;
    transform: translateX(-50%);
    width: 0; /* Inicia con ancho 0 */
    height: 1px;
    background: linear-gradient(90deg, #000 0%, #333 100%); /* Gradiente sutil */
    transition: width 0.4s ease-out;
    border-radius: 2px;
}

/* Hover effects */
#novedades .titulo-linea a:hover h6 {
    color: #000; /* Color más fuerte al hover */
    transform: translateY(-2px); /* Sutil movimiento hacia arriba */
}

#novedades .titulo-linea a:hover::before {
    width: 100%; /* La barra se expande al 100% */
}

#novedades .titulo-linea a:hover::after {
    width: 120%; /* Un poco más ancha que la primera */
}

/* Animaciones - AJUSTADAS PARA 6 PRODUCTOS */
#novedades .card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

#novedades .col-lg-4:nth-child(1) .card { animation-delay: 0.1s; }
#novedades .col-lg-4:nth-child(2) .card { animation-delay: 0.2s; }
#novedades .col-lg-4:nth-child(3) .card { animation-delay: 0.3s; }
#novedades .col-lg-4:nth-child(4) .card { animation-delay: 0.4s; }
#novedades .col-lg-4:nth-child(5) .card { animation-delay: 0.5s; }
#novedades .col-lg-4:nth-child(6) .card { animation-delay: 0.6s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animación para quitar producto - MISMA */
.novedad-item-removing {
    animation: fadeOutScale 0.4s ease-out forwards;
}

@keyframes fadeOutScale {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95) translateY(-5px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
        height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
}

/* Transición suave - ACTUALIZADA PARA COL-LG-4 */
#novedades .row .col-lg-4 {
    transition: all 0.3s ease-out;
}

/* MODA - Mantenido exactamente igual */
#moda {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-size: cover;
    background-attachment: local;
    background-repeat: no-repeat;
    background-position: center;
}

#moda h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    -webkit-text-stroke: 1px black;
    color: transparent;
}

#moda h1 strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: black;
    -webkit-text-stroke: 0;
}

#moda .scroll-container{
    width: auto;
    height: 310px;
}

#moda .moda-img-container {
    width: 300px;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#moda .moda-img {
    width: 300px !important;
    height: 300px !important;
    object-position: center;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

#moda .moda-img:hover {
    transform: scale(1.05);
}

#moda ::-webkit-scrollbar {
    display: none;
}

#moda .card {
    border: none !important;
    border-radius: none !important;
    text-align: center;
}

#moda .card i{
    font-size: 4rem !important;
    color: #000 !important;
}

#moda .card-body {
    padding: 0 !important;
}

#moda .card-body h6,
#moda .card-body .h6 {
    font-size: 0.8rem !important;
}

#moda .servicios{
    padding-left: 7rem;
    padding-right: 7rem;
}

/* NewsLetter - Mantenido exactamente igual */
section#newsletter {
    background: #f8f9fa;
    padding: 2rem 0;
}

#newsletter h1 {
    font-size: 2rem !important;
}

#newsletter h6 {
    font-size: 0.85rem !important;
}

#newsletter .form-control {
    border-radius: 0 !important;
    padding: 0.55rem 1rem !important;
    font-size: 1rem !important;
    width: 400px;
}

#newsletter .btn {
    border-radius: 0 !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
}

.custom-checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #222;
}

.title-product{
    font-size:1.2em;
}

/* ===== RESPONSIVE AJUSTADO PARA TARJETAS MÁS GRANDES ===== */
@media (max-width: 1560px) {
    #home .home__title{
        font-size: 6rem !important;
        color: #fff !important;
    }

    #novedades .container-fluid {
        max-width: 1300px;
        padding: 0 15px;
    }
    
    #novedades .col-lg-4 {
        max-width: 420px;
    }
    
    #novedades .card img {
        height: 400px !important;
    }

    .scroll-container{
        padding-left: 0rem !important;
    }
}

@media (max-width: 1300px) {
    #novedades .container-fluid {
        max-width: 1100px;
    }
    
    #novedades .col-lg-4 {
        max-width: 380px;
    }
    
    #novedades .card img {
        height: 350px !important;
    }
    
    #novedades .row {
        gap: 20px;
    }
}

@media (max-width: 1060px) {
    #home .home__title{
        font-size: 2.5rem !important;
        color: #fff !important;
    }

    #novedades {
        padding: 60px 0;
    }
    
    #novedades h1 {
        font-size: 2.2rem;
    }
    
    #novedades .container-fluid {
        padding: 0 10px;
    }
    
    #novedades .col-lg-4 {
        max-width: 100%;
        flex: 0 0 calc(50% - 10px);
    }
    
    #novedades .card img {
        height: 300px !important;
    }
    
    #novedades .row {
        gap: 15px;
    }

    .scroll-container{
        padding-left: 0rem !important;
    }
}

@media (max-width: 768px) {
    #novedades {
        padding-top: 0;
        padding-bottom:0;
    }
    
    #novedades h1 {
        font-size: 2rem;
    }
    
    #novedades h6.text-secondary {
        width:90%;
        font-size: 0.9rem;
        margin-bottom: 40px;
        margin-inline:auto;
    }
    
    #novedades .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    #novedades .card img {
        height: 400px !important;
    }
    
    #novedades .card-body {
        padding: 20px !important;
    }
    
    #novedades .titulo-linea {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    #novedades .container-fluid {
        padding: 0 10px;
    }
    
    #novedades .card img {
        height: 400px !important;
    }
    
    #novedades .titulo-linea a {
        padding: 12px 24px;
    }
}

/* Mejoras para accesibilidad - MISMAS */
#novedades .card:focus-within {
    outline: 2px solid #000;
    outline-offset: 2px;
}

#novedades .btn-fav:focus,
#novedades .btn-add-cart:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .btn-fav {
        width: 35px;
        height: 35px;
    }
    
    .btn-fav i {
        font-size: 14px;
    }
}

/* Responsive ajustado */
@media (max-width: 768px) {
    #novedades .titulo-linea {
        margin-top: 20px;
    }
    
    #novedades .titulo-linea h6 {
        font-size: 0.9rem;
    }
    
    #novedades .titulo-linea a {
        padding: 12px 0;
    }
}

@media (max-width: 576px) {
    #novedades .titulo-linea h6 {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* ===== CATEGORÍAS DESTACADAS - NUEVO DISEÑO ===== */
#categorias-destacadas {
    padding: 80px 0 60px 0;
    background: #fff;
    overflow: hidden;
}

#categorias-destacadas .container-fluid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header con título y navegación */
.categorias-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.categorias-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    flex-shrink: 0;
}

.categorias-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.categorias-counter {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.counter-current {
    color: #000;
    font-weight: 600;
}

.categorias-arrows {
    display: flex;
    gap: 8px;
}

.categoria-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #333;
}

.categoria-arrow:hover {
    background: #000;
    color: white;
    border-color: #000;
    transform: scale(1.05);
}

.categoria-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.categoria-arrow:disabled:hover {
    background: white;
    color: #333;
    border-color: #e0e0e0;
}

/* Contenedor del slider */
.categorias-slider-container {
    position: relative;
    overflow: hidden;
}

.categorias-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease-out;
    align-items: flex-start;
}

/* Tarjetas de categorías - DISEÑO CUADRADO CON SCALE */
.categoria-card {
    flex: 0 0 340px;
    position: relative;
    cursor: pointer;
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0;
}

.categoria-card:nth-child(1) { animation-delay: 0.1s; }
.categoria-card:nth-child(2) { animation-delay: 0.2s; }
.categoria-card:nth-child(3) { animation-delay: 0.3s; }
.categoria-card:nth-child(4) { animation-delay: 0.4s; }
.categoria-card:nth-child(5) { animation-delay: 0.5s; }
.categoria-card:nth-child(6) { animation-delay: 0.6s; }

.categoria-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Contenedor de imagen - CUADRADO */
.categoria-image-container {
    position: relative;
    width: 340px;
    height: 480px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    transition: transform 0.4s ease;
}

/* Efecto SCALE al hover */
.categoria-card:hover .categoria-image-container {
    transform: scale(1.05);
}

.categoria-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placeholder para categorías sin imagen */
.categoria-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 4rem;
}

/* Overlay oscuro sutil */
.categoria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

/* Información de la categoría - SOBRE LA IMAGEN */
.categoria-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.categoria-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    flex: 1;
}

/* Botón de flecha circular - BLANCO */
.categoria-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.categoria-card:hover .categoria-arrow-btn {
    background: #000;
    color: white;
    transform: translateX(5px);
}

/* Animaciones */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE CATEGORÍAS DESTACADAS ===== */
@media (max-width: 1400px) {
    .categoria-card {
        flex: 0 0 300px;
    }
    
    .categoria-image-container {
        width: 300px;
        height: 420px;
    }
    
    .categorias-slider {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .categoria-card {
        flex: 0 0 280px;
    }
    
    .categoria-image-container {
        width: 280px;
        height: 390px;
    }
    
    .categoria-name {
        font-size: 1.2rem;
    }
    
    .categoria-arrow-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    #categorias-destacadas {
        padding: 60px 0 50px 0;
    }
    
    .categorias-header {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .categorias-title {
        font-size: 1.8rem;
    }
    
    .categoria-card {
        flex: 0 0 250px;
    }
    
    .categoria-image-container {
        width: 250px;
        height: 350px;
    }
    
    .categoria-info {
        padding: 25px 20px;
    }
    
    .categoria-name {
        font-size: 1.1rem;
    }
    
    .categoria-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .categorias-header {
        flex-direction: row;
        gap: 20px;
    }
    
    .categorias-title {
        font-size: 1.6rem;
    }
    
    .categoria-card {
        flex: 0 0 220px;
    }
    
    .categoria-image-container {
        width: 220px;
        height: 310px;
    }
    
    .categoria-info {
        padding: 20px 15px;
    }
    
    .categoria-name {
        font-size: 1rem;
    }
    
    .categoria-arrow-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    #categorias-destacadas {
        padding: 50px 0 40px 0;
    }
    
    .categorias-header {
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .categorias-title {
        font-size: 1.4rem;
    }
    
    .categorias-slider {
        gap: 15px;
    }
    
    .categoria-card {
        flex: 0 0 200px;
    }
    
    .categoria-image-container {
        width: 200px;
        height: 280px;
    }
    
    .categoria-info {
        padding: 18px 12px;
    }
    
    .categoria-name {
        font-size: 0.95rem;
    }
    
    .categorias-counter {
        font-size: 0.9rem;
    }
    
    .categoria-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .categoria-arrow-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== SECCIÓN COLECCIÓN INVIERNO ===== */

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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f0;
}

.coleccion-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f5f5f0;
    position: relative;
    overflow: hidden;
}

.coleccion-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ===== TEXTO VERTICAL ===== */
.vertical-text {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 2;
}

.vertical-text h2 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: #2c2c2c;
    margin: 0;
    text-transform: uppercase;
}

/* ===== HOJAS DECORATIVAS ===== */
.leaf {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
}

.leaf img {
    width: 100%;
    height: auto;
    display: block;
}

.leaf-top-left {
    top: -30px;
    left: 20px;
    width: 150px;
}

.leaf-top-right {
    top: -20px;
    right: 30px;
    width: 180px;
}

.leaf-bottom-right {
    bottom: 20px;
    right: 50px;
    width: 160px;
}

/* ===== CONTENIDO PRINCIPAL ===== */
.coleccion-content {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 3;
    width: 100%;
    margin-left: 100px;
}

/* ===== IMAGEN PRINCIPAL ===== */
.coleccion-image {
    flex: 0 0 550px;
    height: 600px;
    background: linear-gradient(135deg, #87CEEB 0%, #5DADE2 100%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.coleccion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* ===== INFO BOX ===== */
.coleccion-info {
    flex: 1;
    background: #fff;
    min-height: 450px;
    margin-left: -80px;
    padding: 60px 80px 60px 130px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid #f5f5f0;
    position: relative;
    z-index: 1;
}

.info-content {
    max-width: 500px;
}

.coleccion-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #2c2c2c;
    margin-bottom: 30px;
}

.coleccion-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* ===== BOTÓN ===== */
.btn-mas-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-mas-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2c2c2c;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-mas-info:hover::before {
    left: 0;
}

.btn-mas-info:hover {
    color: #fff;
}

.btn-mas-info i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-mas-info:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */

/* Tablets grandes */
@media (max-width: 1400px) {
    .coleccion-content {
        margin-left: 80px;
    }
    
    .coleccion-image {
        flex: 0 0 500px;
        height: 550px;
    }
    
    .coleccion-info {
        padding: 50px 60px 50px 110px;
    }
    
    .coleccion-title {
        font-size: 2.2rem;
    }
    
    .vertical-text h2 {
        font-size: 4rem;
    }
}

/* Tablets */
@media (max-width: 1200px) {
    .coleccion-content {
        margin-left: 60px;
    }
    
    .coleccion-image {
        flex: 0 0 450px;
        height: 500px;
    }
    
    .coleccion-info {
        padding: 40px 50px 40px 100px;
        min-height: 400px;
    }
    
    .coleccion-title {
        font-size: 2rem;
    }
    
    .coleccion-description {
        font-size: 1rem;
    }
    
    .vertical-text {
        left: -30px;
    }
    
    .vertical-text h2 {
        font-size: 3.5rem;
    }
    
    .leaf-top-left,
    .leaf-top-right,
    .leaf-bottom-right {
        width: 120px;
    }
}

/* Tablets pequeñas */
@media (max-width: 992px) {
    .coleccion-section {
        padding: 40px 20px;
    }
    
    .coleccion-content {
        flex-direction: column;
        margin-left: 0;
        gap: 0;
    }
    
    .coleccion-image {
        flex: none;
        width: 100%;
        max-width: 600px;
        height: 450px;
        margin-bottom: -50px;
        z-index: 2;
    }
    
    .coleccion-info {
        width: 100%;
        max-width: 650px;
        margin-left: 0;
        padding: 80px 40px 40px 40px;
        text-align: center;
        z-index: 1;
    }
    
    .info-content {
        max-width: 100%;
    }
    
    .title-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .vertical-text {
        display: none;
    }
    
    .leaf {
        display: none;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .coleccion-section {
        padding: 30px 15px;
    }
    
    .coleccion-image {
        height: 400px;
        margin-bottom: -40px;
    }
    
    .coleccion-info {
        padding: 60px 30px 30px 30px;
    }
    
    .coleccion-title {
        font-size: 1.8rem;
    }
    
    .coleccion-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .btn-mas-info {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* Móviles pequeños */
@media (max-width: 576px) {
    .coleccion-image {
        height: 350px;
        margin-bottom: -30px;
    }
    
    .coleccion-info {
        padding: 50px 20px 30px 20px;
    }
    
    .coleccion-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .coleccion-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn-mas-info {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }
}

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

.coleccion-image,
.coleccion-info {
    animation: fadeInUp 0.8s ease-out;
}

.coleccion-image {
    animation-delay: 0.2s;
}

.coleccion-info {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    #servicios .card{
        width:90%;
        margin:auto;
    }
    
    .title-bolso-ideal{
        font-size:0.9em !important;
    }
    
    #TikTok{
        display:block;
    }
}

.btn-descubrir{
    background-color: black !important;
    width: 95% !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    border: 1px solid #000000 !important;
    margin-top: 0.5rem !important;
    display: inline-block;
    letter-spacing: 1px;
    cursor: pointer !important;
}

.img-servicio{
    width:100px;
    margin:auto;
}

.home__title{
    font-size:5rem;
}

.img-bolsos{
    height:300px !important;
}

#servicios {
    background: #fff;
    width:75%;
    margin:auto;
}

#servicios .container-fluid {
    max-width: 1500px;
    margin: 0 auto;
}

#servicios .row {
    justify-content: center; /* Centrar las columnas */
}

.servicio-item {
    padding: 20px 10px; /* Reducir padding lateral */
    text-align: center;
}

.servicio-icon-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    max-width: 240px;
}

.servicio-icon-minimal svg {
    color: #333;
    width: 64px;
    height: 64px;
}

.servicio-title-minimal {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.servicio-description-minimal {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 16px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.servicio-link {
    font-size: 0.85rem;
    color: #999;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.servicio-link:hover {
    color: #666;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .servicio-icon-minimal {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .servicio-icon-minimal svg {
        width: 56px;
        height: 56px;
    }
}