.sale-products-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 32px;
}

.sale-products-header {
    text-align: center;
    margin-bottom: 48px;
}

.sale-products-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.sale-products-desc {
    font-size: 16px;
    color: var(--color-text-tertiary);
}

/* 빈 상태 */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-text-tertiary);
    font-size: 16px;
}

/* 상품 리스트 (한 줄에 하나) */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 가로형 상품 카드 */
.product-card {
    display: flex;
    flex-direction: row;
    background: var(--color-surface);
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-card-thumb {
    position: relative;
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--color-surface-elevated, #f8f9fa);
}

.product-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
}

.product-card:hover .product-card-thumb img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.product-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.product-card-duration {
    padding: 2px 8px;
    background: var(--color-surface-elevated, #f3f4f6);
    border-radius: 4px;
    font-weight: 500;
}

.product-card-agency {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--color-border-light);
}

.product-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.date-label {
    font-weight: 600;
    color: var(--color-text-secondary);
}

.date-value {
    color: var(--color-text-tertiary);
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* 반응형 */
@media (max-width: 768px) {
    .sale-products-section {
        padding: 24px 16px;
    }

    .sale-products-header {
        margin-bottom: 32px;
    }

    .sale-products-title {
        font-size: 24px;
    }

    .products-list {
        gap: 16px;
    }

    .product-card {
        flex-direction: column;
    }

    .product-card-thumb {
        width: 100%;
        min-height: 0;
        aspect-ratio: 16/9;
    }

    .product-card-body {
        padding: 16px 20px 20px;
    }

    .product-card-title {
        font-size: 16px;
    }

    .product-card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-value {
        font-size: 18px;
    }
}
