@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
    --theme-primary-ring: rgba(51, 65, 85, 0.18);
    --theme-primary-shadow: 0 2px 8px 0 rgba(51, 65, 85, 0.20);
    --theme-primary-strong: #334155;
    --theme-primary-deep: #0f172a;
    --theme-primary-faint: #fbfaf7;
    --theme-secondary-soft: #fde68a;
    --theme-discount-bg: #fefce8;
    --theme-discount-border: #fde68a;
    --theme-discount-ink: #854d0e;
    --theme-primary-contrast: #ffffff;
    --theme-secondary-contrast: #ffffff;
    --theme-border: #dfdcd3;
    --theme-border-hover: #c8c3b6;
    --theme-surface-subtle: #faf9f6;
    --theme-hero-panel-bg: #f1efe9;
    --theme-hero-panel-border: var(--site-card-border);

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 6px;
    --radius-xl: 8px;

    --site-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --site-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    --site-gold-text: #854d0e;
    --site-card-border: #dfdcd3;
}

body {
    font-family: var(--site-body);
}

h1, h2, h3, h4, h5, h6,
.brand-title,
.logo-badge-text,
.banner-title,
.store-hero-title,
.section-title,
.cta-title,
.modal-title,
.discount-amount,
.sidebar-blog-h1,
.current-coupons-title,
.footer-heading {
    font-family: var(--site-heading);
    font-weight: 700;
    letter-spacing: 0;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
}

.section-title,
.store-hero-title {
    letter-spacing: -0.2px;
}

.site-header {
    border-bottom: 1px solid var(--site-card-border);
}

.coupon-card,
.sidebar-widget,
.step-card,
.saving-method-card,
.faq-item,
.current-coupons-table-wrapper,
.top-coupon-item,
.verified-coupon-item,
.no-coupons-card,
.store-logo-box,
.widget-seo-blog-box,
.cta-banner {
    border: 1px solid var(--site-card-border);
    border-radius: var(--radius-md);
    box-shadow: none;
}

.store-hero-banner-right {
    border-radius: var(--radius-md);
    box-shadow: none;
}

.coupon-card:hover,
.step-card:hover,
.saving-method-card:hover,
.top-coupon-item:hover,
.verified-coupon-item:hover {
    border-color: var(--theme-primary-border);
    box-shadow: none;
}

.btn-deal-direct,
.btn-cta-submit,
.btn-widget-alert,
.btn-join,
.btn-sign-in,
.btn-reset-filters,
.btn-visit-store-outline,
.btn-coupon-group {
    border-radius: var(--radius-md);
}

.btn-coupon-main {
    border-top-left-radius: var(--radius-md);
    border-bottom-left-radius: var(--radius-md);
}

.btn-coupon-code {
    border-top-right-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    background: var(--theme-secondary-light);
    color: var(--site-gold-text);
    border: 1px dashed var(--theme-secondary);
    border-left: none;
    font-weight: 700;
}

.btn-deal-direct:hover {
    box-shadow: none;
    transform: none;
}

.step-badge-num {
    border-radius: var(--radius-sm);
}

.current-coupons-table thead th {
    background: var(--theme-primary-light);
    color: var(--theme-primary-active);
    font-family: var(--site-heading);
}

.tab-btn.active::after {
    background-color: var(--theme-secondary);
}

.site-footer {
    border-top: 1px solid var(--site-card-border);
}

@media (max-width: 768px) {
    .coupon-card,
    .sidebar-widget,
    .step-card,
    .saving-method-card,
    .faq-item,
    .current-coupons-table-wrapper,
    .top-coupon-item,
    .verified-coupon-item,
    .store-hero-card,
    .store-logo-box,
    .cta-banner {
        border-radius: var(--radius-md) !important;
        border: 1px solid var(--site-card-border) !important;
        box-shadow: none !important;
    }

    .btn-deal-direct,
    .btn-visit-store-outline,
    .btn-cta-submit,
    .btn-coupon-group {
        border-radius: var(--radius-md) !important;
    }
}
