/* ================================================================
   Deals / Promotions Page — PC
   ================================================================ */
.ho-deals-page { background: #f5f6f8; padding-bottom: 60px; }

/* Hero */
.ho-deals-hero {
    background: linear-gradient(135deg, #FAF6F3 0%, #F3EDE8 60%, #EEDDD4 100%);
    border-bottom: 1px solid #E8E0D9;
    padding: 130px 0 50px;
    text-align: center;
}

.ho-deals-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #1A1A2E;
    margin: 0 0 10px;
}

.ho-deals-hero h1 i { color: var(--ho-secondary); margin-right: 8px; }

.ho-deals-hero p {
    font-size: 17px;
    color: #6B7280;
    margin: 0;
}

/* Empty */
.ho-deals-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
    margin-top: 40px;
}

.ho-deals-empty-icon { font-size: 64px; color: #d0d5dd; margin-bottom: 20px; }
.ho-deals-empty h2 { font-size: 22px; color: #333; margin: 0 0 8px; }
.ho-deals-empty p { color: #888; margin: 0 0 24px; }

.ho-deals-page .ho-btn-accent {
    background: #E53E3E;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: background .2s, transform .2s;
}

.ho-deals-page .ho-btn-accent:hover {
    background: #C53030;
    color: #fff;
    transform: translateY(-1px);
}

/* Section */
.ho-deals-section { margin-top: 32px; }

.ho-deals-sec-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-radius: 12px 12px 0 0;
    flex-wrap: wrap;
    gap: 12px;
}

.ho-deals-sec-flash { background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); }
.ho-deals-sec-long { background: linear-gradient(135deg, #E53E3E 0%, #C53030 100%); }

.ho-deals-sec-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ho-deals-sec-title i { color: #fff; font-size: 20px; }

.ho-deals-sec-title h2 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.ho-deals-discount-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: .5px;
}

.ho-deals-discount-long { background: rgba(255,255,255,.15); }

.ho-deals-long-label {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    font-weight: 600;
}

/* Countdown */
.ho-deals-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ho-deals-cd-label { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 600; }

.ho-deals-cd-boxes {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ho-deals-cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,.3);
    border-radius: 6px;
    padding: 6px 8px;
    min-width: 42px;
}

.ho-deals-cd-box b {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.ho-deals-cd-box small {
    font-size: 10px;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    margin-top: 2px;
}

.ho-deals-cd-sep {
    font-size: 18px;
    font-weight: 800;
    color: rgba(255,255,255,.5);
}

/* Product Grid */
.ho-deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    border: 1px solid #eee;
    border-top: none;
}

.ho-deals-card {
    position: relative;
    padding: 16px;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    transition: box-shadow .3s;
}

.ho-deals-card:nth-child(4n) { border-right: none; }

.ho-deals-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 2;
}

/* Badge */
.ho-deals-card-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.ho-deals-badge-flash { background: #ff6b35; color: #fff; }
.ho-deals-badge-long { background: #E53E3E; color: #fff; }

/* Card timer */
.ho-deals-card-timer {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
}

.ho-deals-card-timer i { color: #f7931e; font-size: 11px; }
.ho-deals-mini-cd b { font-weight: 700; }

/* Card image */
.ho-deals-card-img {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.ho-deals-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.ho-deals-card:hover .ho-deals-card-img img { transform: scale(1.05); }

.ho-deals-card-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 40px;
    color: #d0d5dd;
}

/* Card body */
.ho-deals-card-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 8px;
    min-height: 39px;
    transition: color .2s;
}

.ho-deals-card-name:hover { color: var(--ho-secondary); }

/* Prices */
.ho-deals-card-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.ho-deals-price-new {
    font-size: 18px;
    font-weight: 800;
    color: #e53e3e;
}

.ho-deals-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.ho-deals-price-quote {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Actions */
.ho-deals-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ho-deals-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ho-secondary);
    text-decoration: none;
    transition: gap .2s;
}

.ho-deals-card-btn:hover { gap: 9px; color: var(--ho-secondary); }

.ho-deals-card-cart {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--ho-secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .2s, transform .2s;
}

.ho-deals-card-cart:hover { background: var(--ho-primary); transform: scale(1.08); }

@media (max-width: 1200px) {
    .ho-deals-grid { grid-template-columns: repeat(3, 1fr); }
    .ho-deals-card:nth-child(4n) { border-right: 1px solid #f0f0f0; }
    .ho-deals-card:nth-child(3n) { border-right: none; }
}

@media (max-width: 992px) {
    .ho-deals-grid { grid-template-columns: repeat(2, 1fr); }
    .ho-deals-card:nth-child(3n) { border-right: 1px solid #f0f0f0; }
    .ho-deals-card:nth-child(2n) { border-right: none; }
}
