/**
 * Hediye ürün grid — checkout sipariş özeti + ürün detay
 */

.gift-products-box,
.pdt2-gift-products-box {
    margin: 0.75rem 0;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
}

.gift-products-box__title,
.pdt2-gift-products-box__title {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--theme-default-color, #1e293b);
    line-height: 1.35;
}

.gift-products-box__grid {
    margin: 0;
}

.order-gifts-accordion {
    margin: 1rem 0 1.5rem;
}

.oga-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (max-width: 575px) {
    .oga-products-grid {
        grid-template-columns: 1fr;
    }
}

.oga-product-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem;
    background: #fff;
    height: 100%;
}

.oga-product-card--main {
    border-color: #d1d5db;
    background: #fff;
}

.oga-product-card--gift {
    border-color: #e2e8f0;
    background: #f8fafc;
}

.oga-product-card__inner {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.oga-product-card__img-wrap {
    flex-shrink: 0;
}

.oga-product-card__gift-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--theme-default-color, #475569);
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 10px;
    line-height: 1.2;
}

.oga-product-card__img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
}

.oga-product-card__info {
    min-width: 0;
    flex: 1;
}

.oga-product-card__title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.oga-product-card__meta {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.oga-product-card__price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--theme-default-color, #1e293b);
}
