/* Start custom CSS for html, class: .elementor-element-36b5599 *//* --- Sekcja: Product Showcase (Kompaktowa) --- */

/* Główny kontener - zmniejszony padding pionowy */
.products-showcase {
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    display: flow-root;
}

/* NAGŁÓWEK - mniejszy margines pod logo */
.showcase-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 45px; /* Mniejsze logo */
    width: auto;
    display: block;
}

.resound-text {
    font-size: 26px; /* Mniejszy napis */
    color: #004b87;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.resound-text strong {
    font-weight: 800;
}

/* SIATKA PRODUKTÓW - mniejszy gap */
.products-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px; /* Zwężona siatka */
    margin: 0 auto;
}

/* KARTA PRODUKTU - mniejsze wymiary i paddingi */
.product-card {
    flex: 1;
    background: #fcfdfe;
    border-radius: 25px;
    padding: 25px 20px; /* Znacznie mniejszy padding */
    text-decoration: none;
    text-align: center;
    border: 1px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 380px; /* Zmniejszona wysokość kafelka */
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 75, 135, 0.06);
    background: #ffffff;
}

/* Nazwa Marki i Modelu - skondensowane */
.product-info {
    margin-bottom: 10px;
}

.brand-name {
    display: block;
    font-size: 15px;
    color: #004b87;
}

.model-name {
    display: block;
    font-size: 28px;
    color: #004b87;
    font-weight: 800;
    margin-top: -3px;
}

/* Obrazek - dopasowany do mniejszej karty */
.product-image {
    width: 100%;
    margin-bottom: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 85%; /* Mniejszy obrazek */
    height: auto;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

/* PRZYCISK - mniejszy i bardziej subtelny */
.product-btn {
    background-color: #00a896;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* RESPORSYWNOŚĆ */
@media (max-width: 768px) {
    .products-showcase { padding: 30px 15px; }
    .resound-text { font-size: 22px; }
    .header-logo { height: 35px; }
    
    .products-grid { 
        flex-direction: column; /* Karty pod sobą na mobile */
        align-items: center;
        gap: 20px; 
    }
    
    .product-card { 
        width: 100%;
        max-width: 350px; /* Ograniczenie szerokości na telefonie */
        min-height: auto; 
        padding: 30px 20px;
    }
}/* End custom CSS */