/* === PROMOCJE SECTION – Metallic Style === */
.promo-section {
    position: relative;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #2a2a2a, #3e3e3e, #2a2a2a);
    border-top: 2px solid limegreen;
    border-bottom: 2px solid limegreen;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* === Promo Cards Container === */
.promo-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1400px;
    width: 100%;
    z-index: 2;
}

/* === Promo Card === */
.promo-card {
    position: relative;
    overflow: hidden;
    flex: 1 1 410px;
    max-width: 410px;
    min-height: 300px; /* ✅ desktop base */
    background: linear-gradient(145deg, #e4e4e4, #cfcfcf);
    color: #111;
    padding: 1.5rem 1.65rem;
    border-radius: 18px;
    border: 2px solid #aaa;
    box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;

    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(160, 160, 160, 0.5);
}

/* SALE Badge */
.promo-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background-color: #b71c1c;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(100, 0, 0, 0.4);
    z-index: 10;
    white-space: nowrap;

}

/* Promo Title */
.promo-card h3 {
    font-size: 1.65rem;   /* ~24px default */
    color: #222;
    margin-top: 2.3rem;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

.promo-card hr {
    font-size: 1.5rem;
    color: #222;
    margin-top: 1rem;

    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

/* Promo Text */
.promo-card p {
    margin-top: 1rem;
    font-size: 1.1rem;     /* ~16px default */
    color: #444;
    line-height: 1.5;
}

/* === Promo Button === */
.promo-buttons {
    margin-top: auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.promo-buttons a {
    padding: 0.75rem 1.4rem;
    background-color: #00c853;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 255, 0, 0.3);
    display: inline-block;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.promo-buttons a:hover {
    background-color: limegreen;
    transform: scale(1.05);
    box-shadow: 0 0 50px 20px rgba(0, 255, 0, 0.6);
}

@media (max-width: 768px) {

    .promo-card {
        flex: 1 1 370px; /* allow 2 cards per row */
        max-width: 370px;
        min-height: 280px;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .promo-card h3 {
        margin-top: 2rem;
        font-size: 1.45rem;
    }

    .promo-badge {
        font-size: 0.8rem;
    }

    .promo-card p {
        font-size: 1.05rem;
    }

    .promo-buttons a {
        font-size: 0.95rem;
        padding: 0.65rem 1.2rem;
    }

    .promo-cards {
        gap: 1.5rem; /* balanced spacing for grid */
    }
}