/* Temporary Deals Subdomain CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;800&display=swap');

body.deals-theme {
    background: linear-gradient(135deg, #fdf8f6 0%, #ffffff 100%);
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    color: #1a1a1a;
}

/* Hero Sections */
.deals-hero-wrapper {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://www.transparenttextures.com/patterns/cubes.png');
    padding: 60px 0;
    border-bottom: 1px solid #ffedd5;
}

.hero-img-full {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.show-hero-wrapper {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.show-hero-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.1);
}

/* Cards */
.deal-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ffedd5;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
    border-color: #fdba74;
}

.deal-image-container {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #fcfcfc;
    padding: 0;
}

.deal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.deal-card:hover .deal-image-container img {
    transform: scale(1.08);
}

/* Custom Utilities */
.text-brand-danger {
    color: #ea580c !important;
}

.bg-brand-danger {
    background-color: #ea580c !important;
}

.bg-brand-danger-light {
    background-color: rgba(234, 88, 12, 0.1) !important;
}

.border-brand-danger-subtle {
    border-color: rgba(234, 88, 12, 0.25) !important;
}

.btn-brand-danger {
    background-color: #ea580c;
    color: #fff;
    border: none;
}

.btn-brand-danger:hover {
    background-color: #c2410c;
    color: #fff;
}

.exclusive-offer-box {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1px solid #fed7aa;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.05);
}

.grayscale-filter {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
}

.grayscale-filter img {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    opacity: 0.7 !important;
}

.font-black {
    font-weight: 900 !important;
}