/* Estilo de la sección de novedades */
        /* Estilos generales del carrusel */
        .novedades-section {
            padding: 60px 0;
        }

        .novedades-container {
            max-width: 1230px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .novedades-title-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .novedades-title-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            text-transform: uppercase;
            color: white !important;
            text-align: center;
            margin: 0 auto 40px;
            padding: 8px 15px;
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, #ee7c31 0%, #e67125 100%);
            border-radius: 55px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: 1.5px;
            box-shadow: 0 6px 15px rgba(238, 124, 49, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            perspective: 500px;
        }

        .novedades-title-section p {
            color: #666;
            font-size: 1.1rem;
        }

        /* Contenedor del carrusel */
        .novedades-carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        /* Pista del carrusel */
        .novedades-carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
        }

        /* Items del carrusel */
        .novedades-carousel-item {
            flex: 0 0 calc(25% - 15px);
            min-width: calc(25% - 15px);
            padding: 0 5px;
        }

        /* Tarjeta de producto */
        .novedades-product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .novedades-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Badge "Nuevo" */
        .novedades-badge {
            background: #ee7c31;
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }

        /* Imagen del producto */
        .novedades-image-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .novedades-product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .novedades-product-card:hover .novedades-product-image {
            transform: scale(1.05);
        }

        /* Overlay de imagen */
        .novedades-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            color: white;
        }

        .novedades-image-overlay h6 {
            margin: 0;
            font-size: 0.9rem;
        }

        /* Detalles del producto */
        .novedades-product-details {
            padding: 15px;
        }

        .novedades-product-title {
            margin: 0;
            font-size: 1rem;
            text-align: center;
        }

        .novedades-product-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .novedades-product-title a:hover {
            color: #ee7c31;
        }

        /* Controles de navegación */
        .novedades-carousel-prev,
        .novedades-carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .novedades-carousel-prev {
            left: 0;
        }

        .novedades-carousel-next {
            right: 0;
        }

        .novedades-carousel-prev:hover,
        .novedades-carousel-next:hover {
            background: #ee7c31;
            color: white;
        }

        /* Indicadores */
        .novedades-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .novedades-carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .novedades-carousel-dot.active {
            background: #ee7c31;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .novedades-carousel-item {
                flex: 0 0 calc(50% - 10px);
                min-width: calc(50% - 10px);
            }

            .novedades-image-container {
                height: 180px;
            }
        }

        @media (max-width: 768px) {
            .novedades-carousel-wrapper {
                padding: 0 30px;
            }

            .novedades-carousel-item {
                flex: 0 0 calc(50% - 10px);
                min-width: calc(50% - 10px);
            }
        }

        @media (max-width: 576px) {
            .novedades-carousel-item {
                flex: 0 0 100%;
                min-width: 100%;
            }

            .novedades-carousel-wrapper {
                padding: 0 20px;
            }

            .novedades-image-container {
                height: 220px;
            }

            .novedades-carousel-prev,
            .novedades-carousel-next {
                width: 30px;
                height: 30px;
            }
        }
/* FIN DE ESTILOS DE NOVEDADES */
/*ESTILOS PARA PRODUCTOS*/
        /* Variables de color */
    :root {
        --primary-orange: #ee7c31;
        --hover-orange: #f39658;
        --primary-green: #57cf57;
        --hover-green: #1bd81b;
        --text-color: #444;
        --text-hover: #000;
        --price-blue: #1965a7;
        --discount-red: #bd0000;
        --bg-white: #ffffff;
        --shadow-color: rgba(114, 114, 114, 0.281);
        --border-radius: 0.5rem;
    }

    /* Listado de productos - Contenedor principal */
    .listTable {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem;
        margin: 0;
        justify-content: center; /* Centra las tarjetas */
    }

    /* Tarjeta de producto individual */
    .productoItem {
        flex: 0 1 calc(33.333% - 2rem); /* 3 columnas con gap */
        display: flex;
        flex-direction: column;
    }

    /* Contenedor de la tarjeta */
    .contorno {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        background-color: var(--bg-white);
        box-shadow: 0px 0px 25px 0.5px var(--shadow-color);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        overflow: hidden;
        height: 100%; /* Asegura misma altura */
    }

    /* Contenedor de imagen */
    .portfolio-wrap {
        width: 100%;
        height: 250px; /* Altura fija */
        overflow: hidden;
        position: relative;
    }

    .portfolio-wrap img {
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease;
    }

    .productoItem:hover .portfolio-wrap img {
        transform: scale(1.05);
    }

    /* Descripción del producto */
    .descripcion {
        padding: 1rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .descripcion > div {
        margin: 0.5rem 0;
        position: relative;
        flex-grow: 1;
    }

    .descripcion h6 {
        font-size: 1rem;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-weight: bold;
        text-align: center;
        margin: 0;
        color: var(--text-color);
        padding: 0.5rem 0;
    }

    .p-nombre {
        font-family: "Raleway", sans-serif;
        color: var(--text-color);
        transition: color 0.3s ease;
    }

    .p-nombre:hover {
        color: var(--text-hover);
        text-decoration: underline;
    }

    /* Precios */
    .p-precio {
        font-size: 1.25rem;
        color: var(--price-blue);
        font-weight: bold;
        text-align: center;
        margin: 0.5rem 0;
    }

    .p-precio-old {
        font-size: 0.75rem;
        color: var(--discount-red);
        text-decoration: line-through;
        text-align: center;
        display: block;
    }

    /* Botones - Contenedor */
    .botones {
        display: flex;
        width: 100%;
        height: 40px; /* Altura fija */
        margin-top: auto; /* Lo coloca al final */
    }

    /* Botón principal */
    .botones a:first-child {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-orange);
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 0 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 0;
    }

    .botones a:first-child:hover {
        background-color: var(--hover-orange);
    }

    /* Botón secundario */
    .botones a:nth-child(2) {
        width: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-green);
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: var(--border-radius) 0 0 var(--border-radius);
    }

    /* Efecto hover en el contenedor de botones */
    .botones:hover a:nth-child(2) {
        width: 40px; /* Ancho fijo al expandirse */
        min-width: 40px;
    }

    .botones:hover a:first-child {
        border-radius: 0 var(--border-radius) var(--border-radius) 0;
    }

    .botones a:nth-child(2):hover {
        background-color: var(--hover-green);
    }

    /* Etiquetas */
    .oferta {
        position: absolute;
        right: -8px;
        top: 8px;
        background-color: var(--discount-red);
        color: white;
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
        font-weight: bold;
        z-index: 2;
        border: 1px solid var(--discount-red);
        border-radius: 15px;
    }

    .price-labled {
        position: absolute;
        top: 16px;
        right: -30px;
        width: 120px;
        height: 26px;
        line-height: 26px;
        background-color: #EF9614;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        transform: rotate(45deg);
        text-align: center;
        z-index: 2;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .productoItem {
            flex: 0 1 calc(50% - 2rem); /* 2 columnas en tablet */
        }
    }

    @media (max-width: 576px) {
        .listTable {
            gap: 1rem;
            padding: 1rem;
        }

        .productoItem {
            flex: 0 1 100%; /* 1 columna en móvil */
        }

        .botones a:nth-child(2) {
            display: none; /* Ocultar segundo botón en móvil */
        }

        .botones:hover a:first-child {
            border-radius: 0;
        }
    }
        /*fin de estilos de productos*/
        /* Estilos para el filtro */

        aside {
            display: flex;
            flex-direction: column;
        }

        .seccion_filtro {
            width: 100%;
        }

        .seccion_filtro .boton_filtros {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: .5rem;
            margin: .1rem 0 .1rem 0;
        }

        .seccion_filtro .boton_filtros>button {
            /* Reset y estructura */
            border: none;
            margin: 0;
            padding: 0;
            width: 100%;
            /* Ocupa todo el ancho disponible */
            display: flex;
            align-items: flex-start;

            /* Espaciado y dimensiones */
            padding: 0.875rem 1.5rem;
            gap: 0.625rem;
            box-sizing: border-box;
            /* Asegura que el padding no afecte el ancho total */

            /* Estilo visual mejorado */
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);

            /* Tipografía resaltada */
            font-family: 'Inter', system-ui, sans-serif;
            font-size: 0.9375rem;
            /* 15px */
            font-weight: 600;
            /* Más negrita */
            color: #000000;
            /* Negro puro para máximo contraste */
            letter-spacing: -0.01em;
            /* Ligero ajuste para mejor legibilidad */

            /* Transiciones suaves */
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

            /* Estados interactivos */
            &:hover {
                background-color: #f9fafb;
                border-color: #d1d5db;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
            }

            &:active {
                background-color: #f3f4f6;
                transform: scale(0.98);
            }

            /* Elementos internos */
            &>.icono-filtro {
                width: 1.1rem;
                height: 1.1rem;
                flex-shrink: 0;
                /* Evita que el icono se comprima */
            }

            &>.texto-boton {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                /* Para textos muy largos */
            }
        }

        .seccion_filtro svg {
            font-size: 1.2rem;
            cursor: pointer;
            color: #EF9614
        }

        .card {
            margin: 1rem 0 2rem 0;
        }

        .card input {
            padding: 1.3rem;
            border: none;
            border: 1px solid #2869a1;
        }

/* Contenedor principal */
#vue-filtros {
    font-family: Arial, sans-serif;
    max-width: 300px;
    position: relative; /* Necesario para el z-index */
}

/* Cada sección de filtro */
.seccion_filtro {
    margin-bottom: 10px;
    position: relative; /* Para posicionar la lista */
}

/* Botón del filtro */
.boton_filtros {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1; /* Encima del fondo */
}

/* Lista de opciones - POSICIONAMIENTO ABSOLUTO */
.lista {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 100; /* Asegura que está por encima */
    margin-top: -1px; /* Para unión visual con el botón */
    padding: 0 !important;
}

/* Items de opciones */
.item_producto {

    align-items: center;
    padding: 8px 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* Efecto hover para items */
.item_producto:hover {
    background-color: #f8f8f8;
}

/* Icono de flecha */
.icon_boton_filtros {
    margin-left: 10px;
    transition: transform 0.2s;
}
.boton_filtros:hover .icon_boton_filtros {
    transform: translateY(2px);
}
