.coleccion {
    padding: 100px 8%;
    padding-bottom: 150px;
    background: #fff;
}

.coleccion h2 {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 80px;
    color: var(--color-text);
    position: relative;
}

.coleccion h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--color-text);
}

.grid-productos {
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1600px;
    margin: 0 auto;
}

.card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.info {
    margin-top: 20px;
    padding: 0 5px;
}

.info h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.card:hover .info h3 {
    color: var(--color-muted);
}

.precio {
    font-size: 15px;
    color: var(--color-muted);
}

/* Sección divisoria elegante */
.divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin: 0;
}

@media (max-width: 1024px) {
    .grid-productos {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .grid-productos {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .card {
        padding-top: 40px;
        border-top: 1px solid var(--color-border);
    }

    .card:first-child {
        border-top: none;
        padding-top: 0;
    }

    .card img {
        height: auto;
        aspect-ratio: 3/4;
    }

    .coleccion {
        padding: 60px 6%;
        padding-bottom: 80px;
    }
    
    .coleccion h2 {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 50px;
    }

    .info h3 {
        font-size: 15px;
    }

    .precio {
        font-size: 14px;
    }
}

