/* ============================================================
 *  DEALS / COMBO DEALS
 *  Brand primary colour matches the theme's .or-btn-2 (#ff7800).
 * ============================================================ */

:root {
    --deal-brand: #ff7800;
    --deal-brand-dark: #e56d00;
    --deal-red: #ff3f34;
    --deal-ink: #222;
}

.combo-deals-section {
    padding: 40px 0;
}

.combo-deals-section .or-section-title-4 h2 {
    margin: 0;
}

.combo-deals-all-link {
    color: var(--deal-brand);
    font-weight: 600;
}

.combo-deals-all-link:hover {
    color: var(--deal-brand-dark);
}

/* --- Deal card --------------------------------------------------- */
.deal-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px;
    height: 100%;
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
}

.deal-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.deal-card .or-best-product-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
}

.deal-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: var(--deal-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
}

.deal-savings {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    background: var(--deal-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

.deal-combo-tag {
    display: inline-block;
    background: #fff3e6;
    color: var(--deal-brand-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.deal-card h3 {
    font-size: 17px;
    margin: 6px 0;
}

.deal-card h3 a.namex,
.deal-details-text .namex {
    color: var(--deal-ink);
}

.deal-label {
    color: var(--deal-brand-dark);
    font-weight: 600;
    margin: 4px 0;
}

.deal-label-lg {
    font-size: 18px;
    margin: 10px 0;
}

/* --- Countdown --------------------------------------------------- */
.deal-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #faf6f0;
    border: 1px solid #f0e3d3;
    border-radius: 6px;
    padding: 4px 10px;
    margin: 6px 0;
    font-size: 13px;
}

.deal-countdown-label {
    color: #888;
}

.deal-countdown-time {
    color: var(--deal-red);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.deal-countdown-lg {
    font-size: 15px;
    padding: 6px 14px;
}

/* --- Prices ------------------------------------------------------ */
.deal-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
}

.deal-price-row .item-price {
    color: var(--deal-ink);
    font-size: 20px;
    font-weight: 700;
}

.deal-old-price strike {
    color: #999;
    font-size: 15px;
}

.deal-save-inline {
    display: inline-block;
    color: #1a8a3b;
    font-size: 12px;
    font-weight: 700;
    background: #e8f7ee;
    padding: 2px 8px;
    border-radius: 4px;
}

/* --- Add button (brand colour, visible by default) --------------- */
.deal-add-btn-wrap,
.deal-details-btn {
    width: auto;
    height: auto;
    background: transparent;
}

.add-deal-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    cursor: pointer;
    background: var(--deal-brand);
    color: #fff;
    font-weight: 600;
    height: 42px;
    border-radius: 6px;
    padding: 0 18px;
    transition: background .2s ease;
}

.add-deal-to-cart:hover {
    background: var(--deal-brand-dark);
    color: #fff;
}

.add-deal-to-cart[disabled] {
    opacity: .6;
    cursor: not-allowed;
}

.deal-add-form {
    margin: 0;
}

/* --- Deal details ------------------------------------------------ */
.deal-gallery-main img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.deal-gallery-thumbs {
    gap: 8px;
    margin-top: 10px;
}

.deal-gallery-thumb img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.deal-details-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.deal-details-badges .deal-badge,
.deal-details-badges .deal-savings {
    position: static;
}

.deal-details-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0;
}

.deal-details-price .new-price {
    color: var(--deal-ink);
    font-size: 28px;
    font-weight: 700;
}

.deal-off-tag {
    background: var(--deal-red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
}

.deal-included {
    margin: 18px 0;
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.deal-included h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--deal-ink);
}

.deal-included-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.deal-included-item {
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.deal-included-thumb img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.deal-included-info {
    display: flex;
    flex-direction: column;
}

.deal-included-name {
    color: var(--deal-ink);
    font-weight: 600;
}

.deal-included-price {
    color: #666;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

.deal-meta ul {
    list-style: none;
    margin: 10px 0;
    padding: 0;
}

.deal-meta li {
    color: var(--deal-ink);
    padding: 3px 0;
}

.deal-meta li span {
    color: #888;
    font-weight: 600;
}

/* --- Empty state ------------------------------------------------- */
.deals-empty {
    padding: 60px 20px;
}

.deals-empty i {
    font-size: 46px;
    color: var(--deal-brand);
    margin-bottom: 14px;
    display: inline-block;
}

.deals-empty h3 {
    color: var(--deal-ink);
    margin-bottom: 6px;
}

.deals-empty p {
    color: #888;
    margin-bottom: 16px;
}

.or-btn-2-link {
    display: inline-block;
    background: var(--deal-brand);
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 6px;
}

.or-btn-2-link:hover {
    background: var(--deal-brand-dark);
    color: #fff;
}

/* --- Nav "Hot" badge --------------------------------------------- */
.nav-hot-badge {
    display: inline-block;
    background: var(--deal-red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 4px;
    text-transform: uppercase;
    vertical-align: middle;
}

/* --- Cart combo breakdown ---------------------------------------- */
.cart-combo-breakdown {
    margin-top: 6px;
}

.cart-deal-tag {
    display: inline-block;
    background: var(--deal-brand);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cart-combo-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-combo-list li {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}
