/**
 * ==================================================================
 * Project      : Shops
 * File         : css/offers.css
 * Author       : Erica Mae Yeban
 * Created Date : 2026-05-30
 *
 * Copyright (c) 2026 Chomp.
 * All Rights Reserved.
 *
 * NOTICE:
 * This source code contains proprietary information owned by
 * Chomp Organization. The contents of this file may not be copied,
 * modified, distributed, disclosed, or used without express
 * written authorization from the copyright holder.
 * ==================================================================
 */

.offer-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 2px dashed var(--border-light);
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.offer-card.featured {
    border: none;
    background: var(--gradient-primary);
    color: white;
}
.offer-card.featured .text-muted {
    color: rgba(255,255,255,0.7) !important;
}
.promo-code {
    background: var(--gray-100);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.promo-code:hover {
    background: var(--primary-light);
}
.offer-card.featured .promo-code {
    background: rgba(255,255,255,0.2);
    border-color: white;
    color: white;
}
.countdown {
    font-size: 0.9rem;
    color: var(--danger);
    font-weight: 600;
}
.offer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
}
