.today-sale-section {
    flex: 1;
    min-width: 370px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.sale-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.sale-product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    height: auto !important;
}

@media (min-width: 1024px) {
    /* 그리드 컨테이너 */
    .today-sale-section .sale-product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        height: auto !important;
        min-height: 220px !important;
        max-height: 280px !important;
    }
    
    /* 상품 아이템 */
    .today-sale-section .sale-product-grid .item {
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
        border-radius: 4px !important;
        overflow: hidden !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        height: 100% !important;
    }

    .today-sale-section .sale-product-grid .item:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    }

    /* 상품 박스 - 가로형 레이아웃 */
    .today-sale-section .sale-product-grid .product-box {
        margin-bottom: 0 !important;
        padding: 0 !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    
    /* 이미지 영역 - 더 큰 정사각형 */
    .today-sale-section .sale-product-grid .product-image {
        position: relative !important;
        width: 70px !important;
        min-width: 70px !important;
        height: 70px !important;
        padding-bottom: 0 !important;
        flex-shrink: 0 !important;
        margin: 8px !important;
        border-radius: 6px !important;
        overflow: hidden !important;
    }
    
    .today-sale-section .sale-product-grid .product-img {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }
    
    .today-sale-section .sale-product-grid .product-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: none !important;
    }
    
    /* 상품 정보 영역 */
    .today-sale-section .sale-product-grid .product-details {
        flex: 1 !important;
        padding: 8px 12px 8px 0 !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-width: 0 !important;
    }
    
    /* 상품명 */
    .today-sale-section .sale-product-grid .product-name {
        margin-bottom: 4px !important;
        min-height: unset !important;
    }
    
    .today-sale-section .sale-product-grid .product-name a {
        font-size: 12px !important;
        line-height: 1.3 !important;
        font-weight: 500 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* 가격 영역 */
    .today-sale-section .sale-product-grid .product-price {
        margin-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .today-sale-section .sale-product-grid .product-price .old-price {
        font-size: 11px !important;
        margin-bottom: 0 !important;
        display: inline-block !important;
    }
    
    .today-sale-section .sale-product-grid .product-price p {
        margin: 0 !important;
        display: inline-block !important;
    }
    
    .today-sale-section .sale-product-grid .product-price .price {
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #b82647 !important;
    }

    /* 불필요한 요소 숨기기 */
    .today-sale-section .sale-product-grid .product-labels,
    .today-sale-section .sale-product-grid .button-set,
    .today-sale-section .sale-product-grid .product-vendor,
    .today-sale-section .sale-product-grid .product-vendor-long,
    .today-sale-section .sale-product-grid .product-review,
    .today-sale-section .sale-product-grid .product-icon,
    .today-sale-section .sale-product-grid .product-img img.hover {
        display: none !important;
    }
    
    /* 호버 효과 제거 */
    .today-sale-section .sale-product-grid .product-box:hover .product-img img {
        transform: none !important;
    }
}