/* ============================================================
   Cart2 — komponens stílusok (Figma 427:774)
   ============================================================ */

/* Termék kártya — grid layout az oszlopok igazításához */
.fw-cart2-item {
    display: grid;
    grid-template-columns: 200px 1fr 198px 150px 37px;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Terméknév link */
.fw-cart2-name-link:hover {
    color: var(--primary) !important;
}

/* Termék kép wrapper */
.fw-cart2-img-wrap {
    width: 200px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.fw-cart2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mennyiségkezelő */
.fw-cart2-qty {
    display: flex;
    align-items: center;
}

.fw-cart2-qty-btn {
    width: 37px;
    height: 38px;
    border: 2px solid #000;
    border-radius: 0 !important;
    background: transparent;
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.fw-cart2-qty-btn:hover {
    background: #000;
    color: #fff;
}

.fw-cart2-qty-input {
    width: 124px;
    height: 38px;
    border: 2px solid #000;
    border-left: none;
    border-right: none;
    border-radius: 0 !important;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0 8px;
}

.fw-cart2-qty-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Ár */
.fw-cart2-price {
    min-width: 100px;
}

.fw-cart2-price-original {
    text-decoration: line-through;
    color: #9d9d9d;
    font-size: 1.05rem;
    display: block;
    line-height: 1.2;
}

.fw-cart2-price-sale {
    font-size: 1.18rem;
    display: block;
    line-height: 1.2;
}

/* Törlés gomb */
.fw-cart2-delete {
    width: 37px;
    height: 38px;
    border: 2px solid #000;
    border-radius: 0 !important;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: background-color 0.2s, color 0.2s;
}

.fw-cart2-delete:hover {
    background: #000;
    color: #fff;
}

/* Összesítő panel */
.fw-cart2-summary {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.fw-cart2-total-label {
    font-family: 'Oswald', sans-serif;
    font-size: 2.625rem;
    line-height: 1;
}

.fw-cart2-total-price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.625rem;
    line-height: 1;
    white-space: nowrap;
}

/* Rendelés gomb (piros) */
.fw-cart2-btn-order {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.575rem;
}

.fw-cart2-btn-order:hover,
.fw-cart2-btn-order:focus {
    background: var(--secondary);
    color: #fff;
}

/* Vásárlás folytatása gomb (fehér + fekete keret) */
.fw-cart2-btn-continue {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 8px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.575rem;
}

.fw-cart2-btn-continue:hover,
.fw-cart2-btn-continue:focus {
    background: #000;
    color: #fff;
}

/* Kosár ürítése gomb */
.fw-cart2-btn-clear {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 8px 48px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.575rem;
}

.fw-cart2-btn-clear:hover,
.fw-cart2-btn-clear:focus {
    background: #000;
    color: #fff;
}

/* Kedvezmény sor */
.fw-cart2-discount-row {
    color: #2e7d32;
    font-size: 0.9375rem;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 8px;
}

/* Reszponzív - Tablet */
@media (max-width: 991px) {
    .fw-cart2-item {
        grid-template-columns: 120px 1fr 198px 110px 37px;
        gap: 1rem;
    }

    .fw-cart2-total-label,
    .fw-cart2-total-price {
        font-size: 1.75rem;
    }

    .fw-cart2-btn-order,
    .fw-cart2-btn-continue,
    .fw-cart2-btn-clear {
        font-size: 1.125rem;
        padding: 8px 24px;
    }
}

/* Reszponzív - Mobil */
@media (max-width: 768px) {
    .fw-cart2-item {
        grid-template-columns: 80px 1fr !important;
        grid-template-rows: auto auto;
        gap: 0.75rem !important;
    }

    .fw-cart2-item > .fw-cart2-qty,
    .fw-cart2-item > .fw-cart2-price,
    .fw-cart2-item > .fw-cart2-delete {
        grid-column: 1 / -1;
    }

    .fw-cart2-img-wrap {
        width: 80px;
        height: 80px;
    }

    .fw-cart2-price {
        min-width: auto;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .fw-cart2-qty-input {
        width: 80px;
    }
}
