#hotDealsSection {
    max-width: var(--container);
    margin: 0 auto;
    padding: 12px 20px 10px;
}

.hot-deals-wrap {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #fed7aa;
}

.hot-deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.hot-deals-header h2 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 4px;
}

.hot-deals-header p {
    font-size: 13px;
    color: #64748b;
}

.hot-deals-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.hot-deals-row::-webkit-scrollbar {
    height: 6px;
}

.hot-deals-row::-webkit-scrollbar-thumb {
    background: #fdba74;
    border-radius: 999px;
}

.hot-deal-card {
    position: relative;
    min-width: 170px;
    max-width: 170px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ffedd5;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition: 0.2s ease;
    scroll-snap-align: start;
}

.hot-deal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
}

.hot-deal-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #f97316;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 999px;
    z-index: 2;
}

.hot-deal-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff7ed;
    overflow: hidden;
}

.hot-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-deal-info {
    padding: 9px;
}

.hot-deal-category {
    display: inline-block;
    font-size: 10px;
    color: #9a3412;
    background: #ffedd5;
    padding: 3px 7px;
    border-radius: 999px;
    margin-bottom: 5px;
}

.hot-deal-info h3 {
    font-size: 12px;
    line-height: 1.35;
    color: #111827;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    height: 32px;
}

.hot-deal-prices {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hot-deal-current {
    font-size: 14px;
    font-weight: 900;
    color: #f97316;
}

.hot-deal-old {
    font-size: 10px;
    color: #94a3b8;
    text-decoration: line-through;
}

.hot-deal-save {
    margin-top: 5px;
    font-size: 11px;
    color: #16a34a;
    font-weight: 800;
}

@media (max-width: 768px) {
    #hotDealsSection {
        padding: 12px 12px 8px;
    }

    .hot-deals-wrap {
        padding: 14px;
        border-radius: 16px;
    }

    .hot-deals-header h2 {
        font-size: 20px;
    }

    .hot-deals-header p {
        font-size: 12px;
    }

    .hot-deal-card {
        min-width: 145px;
        max-width: 145px;
    }
}

.hot-deals-outer {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
}

.hot-deals-outside-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(249, 115, 22, .20);
    border-radius: 50%;

    background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 247, 237, .94));
    color: #f97316;

    font-size: 24px;
    font-weight: 900;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 8px 22px rgba(249, 115, 22, .18);
    backdrop-filter: blur(10px);
    transition: all .28s ease;
}

.hot-deals-outside-btn:hover {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 28px rgba(249, 115, 22, .35);
}

.hot-deals-outside-prev {
    left: -26px;
}

.hot-deals-outside-next {
    right: -26px;
}

.hot-deals-row {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .hot-deals-outside-btn {
        display: none !important;
    }
}