/* =========================
   COLECCIONES DESTACADAS
========================= */

.collection-card {
    color: #1a1a2e;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.collection-card span[uk-icon] {
    margin-bottom: 15px;
}


.collection-50 {
    background-image: 
        linear-gradient(135deg, rgba(246,166,197,0.85), rgba(242,127,172,0.85)),
        url("images/doll1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    
}
.collection-60 {
    background-image: 
        linear-gradient(135deg, rgba(211,236,250,0.85), rgba(164,211,239,0.85)),
        url("images/doll2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1a1a2e;
}
.collection-70 {    
    background-image: 
        linear-gradient(135deg, rgba(245,201,74,0.85), rgba(250,225,92,0.85)),
        url("images/doll3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1a1a2e;
}
.collection-80 {    
    background-image: 
        linear-gradient(135deg, rgba(132,82,161,0.85), rgba(132,82,161,0.85)),
        url("images/doll4.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.collection-90 {    
    background-image: 
        linear-gradient(135deg, rgba(170,208,55,0.85),      rgba(170,208,55,0.85)),                             
        url("images/doll5.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1a1a2e;
}
.collection-2000 {    
    background-image: 
        linear-gradient(135deg, rgba(242,127,172,0.85), rgba(242,127,172,0.85)),
        url("images/doll6.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1a1a2e;
}   

.collection-2010 {    
    background-image: 
        linear-gradient(135deg, rgba(242,127,172,0.85), rgba(242,127,172,0.85)),
        url("images/doll7.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1a1a2e;
}  

.collection-2020 {    
    background-image: 
        linear-gradient(135deg, rgba(170,208,55,0.85),      rgba(170,208,55,0.85)), 
        url("images/doll8.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #1a1a2e;
}  

/* Efecto hover */
.collection-card {
    position: relative;
    overflow: hidden;
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover::after {
    opacity: 1;
    cursor: pointer;
}

.collection-card > * {
    position: relative;
    z-index: 2;
}
/* =========================
   FIN COLECCIONES DESTACADAS
========================= */