/* ======================================================
   JOYFOOD GRATIS – FINAL STABLE CSS
   ====================================================== */

/* --- SPACER POD KUPONEM --- */
.joyfood-gratis-spacer {
    height: 40px;
    width: 100%;
    display: block;
}

/* --- KARTA GRATISU --- */
.joyfood-gratis-card {
    border: 2px solid #e6e6e6;
    border-radius: 16px;
    background: #ffffff;
    padding: 16px;
    box-sizing: border-box;
}

/* --- HEADER --- */
.joyfood-gratis-header {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

/* --- NAZWA PRODUKTU --- */
.joyfood-gratis-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
}

/* --- BODY: IMAGE + CONTENT --- */
.joyfood-gratis-body {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: center;
}

/* --- OBRAZEK --- */
.joyfood-gratis-img img {
    width: 90px;
    height: auto;
    display: block;
}

/* --- PRAWA KOLUMNA --- */
.joyfood-gratis-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- CENA --- */
.joyfood-gratis-price {
    font-size: 12px;
    color: #777;
}

.joyfood-gratis-price strong {
    font-size: 16px;
    color: #ff8c00;
}

/* ======================================================
   PRZYCISK GRATIS + DODANO (JEDEN STYL)
   ====================================================== */

.joyfood-gratis-btn,
.joyfood-gratis-added {
    background-color: #204D4B;
    color: #ffffff;

    border: none;
    border-radius: 9999px;

    min-width: 200px;
    height: 52px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;

    transition: background-color 0.25s ease;
}

/* --- HOVER --- */
.joyfood-gratis-btn:hover {
    background-color: #146347;
    color: #ffffff;
}

/* --- DODANO --- */
.joyfood-gratis-added {
    cursor: default;
    opacity: 0.95;
}

/* ======================================================
   MOBILE
   ====================================================== */
@media (max-width: 768px) {
    .joyfood-gratis-body {
        grid-template-columns: 70px 1fr;
    }

    .joyfood-gratis-img img {
        width: 70px;
    }

    .joyfood-gratis-btn,
    .joyfood-gratis-added {
        min-width: 160px;
        height: 46px;
        font-size: 13px;
    }
}
