/* GLOBAL */
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

/* SEKCJA */
.rec-recommended {
    width: 100%;
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.rec-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #214DAD;
    margin-bottom: 28px;
    text-align: center;
}

/* GRID */
.rec-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    justify-items: center;
}

/* KARTA PRODUKTU – stały mocny szary cień */
.rec-product-card {
    width: 100%;
    max-width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

/* BRAK HOVERA */
.rec-product-card:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

/* OBRAZEK */
.rec-product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f7f7f7;
}

.rec-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE – złoty */
.rec-corner-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;

    border-top: 60px solid #d4af37;
    border-right: 60px solid transparent;

    z-index: 10;
}

.rec-corner-badge span {
    position: absolute;
    top: -60px;
    left: 8px;
    font-size: 22px;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* TREŚĆ */
.rec-product-content {
    padding: 16px;
}

.rec-product-subtitle {
    font-size: 14px;
    color: #666;
    margin: 8px 0 12px;
}

.rec-product-extra {
    font-size: 13px;
    color: #444;
    margin-bottom: 14px;
    line-height: 1.45;
}

.rec-product-extra strong:first-child {
    font-size: 16px;
    color: #222;
    font-weight: 700;
}

.rec-product-extra strong:last-child {
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

/* STOPKA */
.rec-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rec-price {
    font-size: 19px;
    font-weight: 800;
    color: #214DAD;
}


/* PRZYCISK */
.rec-btn {
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    color: #000;
    border-radius: 6px;
    background: linear-gradient(180deg, #F2AB0F 0%, #D89200 100%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: .2s ease;
}

.rec-btn:hover {
      background: linear-gradient(180deg, #FFC53A 0%, #E6A300 100%);
    transform: translateY(-1px);

}

/* RESPONSYWNOŚĆ */
@media (max-width: 1200px) {
    .rec-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .rec-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .rec-products-grid {
        grid-template-columns: 1fr;
    }
}
