    /*CSS ESPECÍFICO PARA ROPA.HTML*/
    /*Lista de ropa*/
    .lista-prendas ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        justify-items: center;
    }

    .ropa-item {
        border: 3px solid #e5c4c3;
        border-radius: 15px;
        padding: 15px;
        width: 100%;
        text-align: center;
        background: transparent;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .ropa-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(157, 19, 65, 0.15);
    }

    .ropa-header, .ropa-info h4 {
        font-weight: bold;
        color: #441514;
    }

    .ropa-header {
        margin-bottom: 5px;
    }

    .ropa-photos {
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 8px;
    }

    .ropa-photos img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ropa-info {
        margin-bottom: 12px;
    }

    .ropa-info h4 {
        font-size: 1.3rem;
        margin: 5px 0;
    }

    .ropa-info p {
        color: #555;
        font-size: 1rem;
        font-weight: 500;
    }

    /*Titulo de las categorias*/
    #categoria-titulo {
        font: 700 2.5rem "montserrat", sans-serif;
        color: #562524;
        margin: 20px 0 40px;
        text-transform: capitalize;
        text-align: center;
        width: 100%;
        display: block;
    }

    /*Categorias en carrusel*/
    .carousel-cat-container {
        overflow: hidden;
        width: 100%;
        position: relative;
        padding: 0;
    }

    .carousel-cat-track {
        display: flex;
        width: 100%;
        transition: transform 0.5s ease-in-out;
    }

    .categoria-filtro {
        flex: 0 0 100%;
        padding: 20px;
        text-align: center;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    /*Imagen circular*/
    .cat-img, .cat-placeholder-all {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #e5c4c3;
        background-color: #f4f0e7;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #441514;
        font-weight: bold;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s;
    }

    .cat-img:hover, .cat-placeholder-all:hover {
        transform: scale(1.05);
        border-color: #d1a3a2;
    }

    .categoria-filtro p {
        font-size: 1.3rem;
        color: #441514;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /*Botones del carrusel*/
    .cat-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        font-size: 2rem;
        color: #441514;
        border: 2px solid #441514;
        background-color: rgba(255, 255, 255, 0.7);
        transition: background-color 0.3s;
    }

    .cat-btn:hover {
        background-color: #e5c4c3;
        color: white;
        border-color: #e5c4c3;
    }

    .cat-btn.prev { left: -70px; }
    .cat-btn.next { right: -70px; }

    /*Responsive*/
    @media (min-width: 768px) {
    .categoria-filtro { flex: 0 0 33.3333%; }
    }

    @media (max-width: 767px) {
    .carousel-cat-container {
        padding: 0 60px;
        box-sizing: border-box;
    }

    .categoria-filtro { padding: 10px; }

    .cat-img, .cat-placeholder-all {
        width: 160px;
        height: 160px;
        margin-bottom: 10px;
    }

    .cat-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background-color: rgba(255, 255, 255, 0.9);
        z-index: 100;
    }

    .cat-btn.prev { left: 5px; }
    .cat-btn.next { right: 5px; }

    #filtros-categorias-wrap {
        margin: 20px 0;
        width: 100%;
    }
    }

    /*Paguna maestra y tarjetas*/
    .paginamaestra {
        display: flex;
        flex-wrap: wrap;
        gap: 26px;
        padding: 20px;
        margin-top: 10px;
    }

    .tarjeta {
        width: calc(25% - 20px);
        background-color: #e8caca;
        border-radius: 12px;
        padding-bottom: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tarjeta img {
        width: 100%;
        border-radius: 12px 12px 0 0;
        display: block;
    }
