/* Favorites DG Section Styles */

/* Sección principal */
.favorites-dg-section {
    width: 90%;
    margin: 0 auto;
}

/* Header con background */
.favorites-dg-header {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Overlay para el header */
.favorites-dg-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Contenido del header */
.favorites-dg-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.favorites-dg-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    margin: 0;
    text-align: center;
}

.favorites-dg-link {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #B12B21;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.favorites-dg-link:hover {
    background-color: #B12B21;
    border-color: #B12B21;
    color: #fff;
}

/* Container del grid (sin background) */
.favorites-dg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Grid de productos */
.favorites-dg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .favorites-dg-header {
        padding: 60px 15px;
    }
    
    .favorites-dg-title {
        font-size: 2.5rem;
    }
    
    .favorites-dg-container {
        padding: 50px 15px;
    }
    
    .favorites-dg-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .favorites-dg-header {
        padding: 40px 15px;
    }
    
    .favorites-dg-header-content {
        gap: 15px;
    }
    
    .favorites-dg-title {
        font-size: 2rem;
    }
    
    .favorites-dg-link {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .favorites-dg-container {
        padding: 40px 15px;
    }
    
    .favorites-dg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .favorites-dg-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .favorites-dg-link {
        padding: 8px 20px;
        font-size: 12px;
    }
}
