/* ==========================================
   NERO PRODUCTS SECTION
   Plik: assets/css/nero-products.css
   ========================================== */

/* ==========================================
   SEKCJA GŁÓWNA
   ========================================== */
.nero-section {
    padding: 0 0;
    background: #FFFFFF;
}

.nero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   GRID PRODUKTÓW - 3 KOLUMNY
   ========================================== */
.nero-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

/* Każdy produkt w layoutcie vertical (domyślny) */
.nero-products .custom-product-card {
    justify-self: center;
}

/* ==========================================
   LINK "SPRAWDŹ WSZYSTKIE"
   ========================================== */
.nero-view-all {
    
}

.nero-view-all-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    text-decoration: underline !important;
    transition: color 0.3s ease;
    display: inline-block;
}

.nero-view-all-link:hover {
    color: #FDA635;
    text-decoration: underline;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

/* Tablet (768px - 1023px) - 2 kolumny */
@media screen and (max-width: 1023px) {
    .nero-section {
        padding: 50px 0;
    }
    
    .nero-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile (do 767px) - 1 kolumna */
@media screen and (max-width: 767px) {
    .nero-section {
        padding: 40px 0;
    }
    
    .nero-container {
        padding: 0 15px;
    }
    
    .nero-products {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .nero-view-all-link {
        font-size: 14px;
    }
}

/* Bardzo małe ekrany (do 480px) */
@media screen and (max-width: 480px) {
    .nero-products {
        gap: 16px;
    }
}
