/* ============================================================
   DEKODEALS SUB-PAGES  (City Deals · Coupons · Event Deals ·
   Cultural Deals · Make Offer)
   ------------------------------------------------------------
   Shared component set scoped under .dkpg; each page wrapper
   sets its own accent via CSS variables:
     .dkcity-scope  — Local Savings / City Deals   (indigo)
     .dkcoup-scope  — Coupons                      (purple + orange CTA)
     .dkevnt-scope  — Event Deals                  (red + purple alt)
     .dkcult-scope  — Cultural Deals               (warm red, serif title)
     .dkmoff-scope  — Make Offer                   (green)
   Loaded after dekodeals-redesign.css (navbar styles live there).
   ============================================================ */

.dkpg {
    --dkpg-accent: #6d5ef1;
    --dkpg-accent-soft: rgba(109, 94, 241, .1);
    --dkpg-cta: var(--dkpg-accent);
    --dkpg-ink: #0f172a;
    --dkpg-muted: #64748b;
    --dkpg-line: #e2e8f0;
    --dkpg-bg: #f8fafc;
    --dkpg-card: #ffffff;
    --dkpg-red: #ef4444;
    --dkpg-green: #16a34a;
    --dkpg-radius: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dkpg-bg);
    color: var(--dkpg-ink);
    padding-bottom: 48px;
}
.dkpg *, .dkpg *::before, .dkpg *::after { box-sizing: border-box; }
.dkpg img { max-width: 100%; }
.dkpg a { text-decoration: none !important; }
.dkpg h1, .dkpg h2, .dkpg h3, .dkpg h4, .dkpg p, .dkpg ul { margin: 0; }
.dkpg ul { padding: 0; list-style: none; }

.dkcity-scope { --dkpg-accent: #6d5ef1; --dkpg-cta: #6d5ef1; --dkpg-accent-soft: rgba(109, 94, 241, .1); }
.dkcoup-scope { --dkpg-accent: #7c3aed; --dkpg-cta: #f97316; --dkpg-accent-soft: rgba(124, 58, 237, .09); }
.dkevnt-scope { --dkpg-accent: #ef4444; --dkpg-cta: #ef4444; --dkpg-accent-soft: rgba(239, 68, 68, .09); }
.dkcult-scope { --dkpg-accent: #dc2626; --dkpg-cta: #dc2626; --dkpg-accent-soft: rgba(220, 38, 38, .08); }
.dkmoff-scope { --dkpg-accent: #16a34a; --dkpg-cta: #16a34a; --dkpg-accent-soft: rgba(22, 163, 74, .1); }

/* ---------- Generic building blocks ---------- */
.dkpg-section { margin-top: 26px; }
.dkpg-card {
    background: var(--dkpg-card);
    border: 1px solid var(--dkpg-line);
    border-radius: var(--dkpg-radius);
}

.dkpg-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.dkpg-section-title { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.dkpg-section-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--dkpg-accent) !important;
    white-space: nowrap;
}
.dkpg-section-link:hover { text-decoration: underline !important; }

/* Filter chips row */
.dkpg-chips { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.dkpg-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--dkpg-line);
    background: #fff;
    color: #334155 !important;
    font-size: 13px;
    font-weight: 600;
    transition: all .15s ease;
    white-space: nowrap;
    cursor: pointer;
}
.dkpg-chip:hover { border-color: var(--dkpg-accent); color: var(--dkpg-accent) !important; }
.dkpg-chip.active {
    background: var(--dkpg-accent);
    border-color: var(--dkpg-accent);
    color: #fff !important;
    box-shadow: 0 6px 14px -6px var(--dkpg-accent);
}

/* Sort select */
.dkpg-sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dkpg-muted); white-space: nowrap; }
.dkpg-sort select {
    border: 1px solid var(--dkpg-line);
    border-radius: 10px;
    background: #fff;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dkpg-ink);
    outline: none;
}

/* Buttons */
.dkpg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 10px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
}
.dkpg-btn-solid { background: var(--dkpg-cta); color: #fff !important; }
.dkpg-btn-solid:hover { filter: brightness(.92); }
.dkpg-btn-outline { background: #fff; border-color: var(--dkpg-accent); color: var(--dkpg-accent) !important; }
.dkpg-btn-outline:hover { background: var(--dkpg-accent-soft); }
.dkpg-btn-alt { background: #8b5cf6; color: #fff !important; }
.dkpg-btn-alt:hover { background: #7c3aed; }
.dkpg-btn-block { width: 100%; }

/* Feature strip (bottom of pages) */
.dkpg-featstrip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 22px 26px;
    margin-top: 30px;
}
.dkpg-feat { display: flex; align-items: center; gap: 13px; }
.dkpg-feat-icon {
    width: 46px; height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    color: #fff;
}
.dkpg-feat-title { font-size: 14px; font-weight: 800; }
.dkpg-feat-sub { font-size: 12px; color: var(--dkpg-muted); margin-top: 2px; }

/* Results count line */
.dkpg-results { font-size: 13px; color: var(--dkpg-muted); }
.dkpg-results strong { color: var(--dkpg-ink); }

/* ============================================================
   CITY DEALS (Local Savings)
   ============================================================ */
.dkcity-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding: 34px 36px;
    margin-top: 22px;
    overflow: hidden;
    position: relative;
}
.dkcity-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--dkpg-accent);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}
.dkcity-hero-title { font-size: 42px; font-weight: 900; letter-spacing: -.03em; line-height: 1.05; }
.dkcity-hero-sub { font-size: 14.5px; color: var(--dkpg-muted); margin-top: 12px; max-width: 480px; line-height: 1.6; }

.dkcity-search {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--dkpg-line);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, .35);
}
.dkcity-search-input {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    color: var(--dkpg-muted);
}
.dkcity-search-input input {
    border: 0; outline: none;
    width: 100%;
    font-size: 13.5px;
    padding: 13px 0;
    color: var(--dkpg-ink);
    background: transparent;
}
.dkcity-search-loc {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border-left: 1px solid var(--dkpg-line);
    font-size: 13px;
    font-weight: 600;
    color: var(--dkpg-ink);
    white-space: nowrap;
}
.dkcity-search-loc i:first-child { color: var(--dkpg-accent); }
.dkcity-search-loc i:last-child { color: var(--dkpg-muted); font-size: 11px; }
.dkcity-search-btn {
    border: 0;
    background: var(--dkpg-accent);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 0 26px;
    cursor: pointer;
}
.dkcity-search-btn:hover { filter: brightness(.92); }

.dkcity-hero-feats { display: flex; flex-wrap: wrap; gap: 20px 26px; margin-top: 22px; }
.dkcity-hero-feat { display: flex; align-items: center; gap: 9px; }
.dkcity-hero-feat-icon {
    width: 34px; height: 34px; flex: 0 0 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dkpg-accent-soft);
    color: var(--dkpg-accent);
    font-size: 13px;
}
.dkcity-hero-feat-title { font-size: 12.5px; font-weight: 800; }
.dkcity-hero-feat-sub { font-size: 11px; color: var(--dkpg-muted); }

.dkcity-hero-media { position: relative; min-height: 300px; }
.dkcity-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0 120px 0 120px;
    display: block;
}
.dkcity-hero-float {
    position: absolute;
    right: -6px;
    bottom: -14px;
    background: #fff;
    border: 1px solid var(--dkpg-line);
    border-radius: 14px;
    box-shadow: 0 18px 40px -20px rgba(15, 23, 42, .4);
    padding: 16px 18px;
    width: 195px;
    text-align: center;
}
.dkcity-hero-float-icon {
    width: 38px; height: 38px;
    margin: -34px auto 8px;
    border-radius: 50%;
    background: var(--dkpg-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px -6px var(--dkpg-accent);
}
.dkcity-hero-float-title { font-size: 13px; font-weight: 800; }
.dkcity-hero-float-sub { font-size: 11px; color: var(--dkpg-muted); margin: 4px 0 10px; line-height: 1.45; }
.dkcity-hero-float .dkpg-btn { background: #ff5a5f; color: #fff !important; padding: 7px 14px; font-size: 12px; border-radius: 8px; }

/* Category circles */
.dkcity-cats {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}
.dkcity-cat { text-align: center; }
.dkcity-cat-icon {
    width: 62px; height: 62px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1.5px solid var(--dkpg-line);
    background: #fff;
    color: var(--dkpg-accent);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}
.dkcity-cat:hover .dkcity-cat-icon {
    border-color: var(--dkpg-accent);
    box-shadow: 0 10px 20px -12px var(--dkpg-accent);
    transform: translateY(-2px);
}
.dkcity-cat-name { font-size: 12px; font-weight: 600; color: var(--dkpg-ink); margin-top: 8px; display: block; }

/* Deal cards */
.dkcity-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 13px;
}
.dkcity-deal { overflow: hidden; transition: all .15s ease; display: flex; flex-direction: column; }
.dkcity-deal:hover { box-shadow: 0 16px 30px -18px rgba(15, 23, 42, .35); transform: translateY(-2px); }
.dkcity-deal-media { position: relative; }
.dkcity-deal-media img { width: 100%; height: 118px; object-fit: cover; display: block; }
.dkcity-deal-off {
    position: absolute;
    top: 8px; left: 8px;
    background: #ff2e88;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 999px;
    padding: 3px 9px;
}
.dkcity-deal-body { padding: 11px 12px 12px; display: flex; flex-direction: column; flex: 1 1 auto; }
.dkcity-deal-name { font-size: 13px; font-weight: 800; line-height: 1.25; }
.dkcity-deal-cat { font-size: 11px; color: var(--dkpg-muted); margin-top: 2px; }
.dkcity-deal-meta { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--dkpg-muted); margin-top: 6px; }
.dkcity-deal-meta .fa-star { color: #f59e0b; }
.dkcity-deal-meta strong { color: var(--dkpg-ink); }
.dkcity-deal-price-row { display: flex; align-items: baseline; gap: 7px; margin: 8px 0 10px; }
.dkcity-deal-price { font-size: 16px; font-weight: 900; color: var(--dkpg-accent); }
.dkcity-deal-old { font-size: 12px; color: #94a3b8; text-decoration: line-through; }
.dkcity-deal .dkcity-deal-cta { margin-top: auto; padding: 8px 10px; font-size: 12.5px; }
.dkcity-deal-cta .fa { margin-right: 5px; }

/* Rating line */
.dkcity-deal-rating { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--dkpg-muted); margin-top: 5px; }
.dkcity-deal-rating .fa-star { color: #f59e0b; }
.dkcity-deal-rating strong { color: var(--dkpg-ink); font-weight: 800; }

/* Save heart (on image) */
.dkcity-deal-save {
    position: absolute;
    top: 8px; right: 8px;
    width: 28px; height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #64748b;
    font-size: 13px;
    display: grid; place-items: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(15, 23, 42, .18);
    transition: all .15s ease;
}
.dkcity-deal-save:hover { transform: scale(1.08); }
.dkcity-deal-save.is-saved, .dkcity-deal-save .fa-heart { color: #ff2e88; }

/* Call · Message · Share mini actions */
.dkcity-deal-mini {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eef1f6;
}
.dkcity-deal-mini > * {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 2px;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: all .12s ease;
}
.dkcity-deal-mini > *:hover { background: var(--dkpg-accent-soft); color: var(--dkpg-accent); }
.dkcity-deal-share.is-copied { color: #16a34a; }
.dkcity-deal-share.is-copied::after { content: ' ✓'; }

/* Empty search state */
.dkcity-empty { text-align: center; padding: 42px 20px; color: var(--dkpg-muted); }
.dkcity-empty .fa { font-size: 30px; color: #cbd5e1; margin-bottom: 10px; display: block; }
.dkcity-empty p { font-size: 14px; margin: 0; }

/* Stats strip */
.dkcity-stats .dkpg-feat-icon { color: var(--dkpg-accent); background: var(--dkpg-accent-soft); font-size: 19px; }
.dkcity-stats .dkpg-feat { justify-content: center; }
.dkcity-stats .dkpg-feat-title { font-size: 17px; font-weight: 900; }

/* ============================================================
   COUPONS
   ============================================================ */
.dkcoup-header { margin-top: 26px; }
.dkcoup-title { font-size: 34px; font-weight: 900; letter-spacing: -.03em; }
.dkcoup-title em { font-style: normal; color: #f97316; }
.dkcoup-sub { font-size: 14px; color: var(--dkpg-muted); margin-top: 8px; }

.dkcoup-search {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--dkpg-line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-top: 18px;
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, .3);
}
.dkcoup-search i { align-self: center; padding: 0 4px 0 16px; color: var(--dkpg-muted); }
.dkcoup-search input {
    flex: 1 1 auto;
    border: 0; outline: none;
    padding: 13px 12px;
    font-size: 13.5px;
    background: transparent;
}
.dkcoup-search button {
    border: 0;
    background: var(--dkpg-accent);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    padding: 0 30px;
    cursor: pointer;
    border-radius: 10px;
    margin: 5px;
}

.dkcoup-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
    align-items: start;
    margin-top: 20px;
}

/* Coupon rows */
.dkcoup-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    margin-bottom: 12px;
    position: relative;
    transition: box-shadow .15s ease;
}
.dkcoup-row:hover { box-shadow: 0 14px 28px -18px rgba(15, 23, 42, .35); }
.dkcoup-logo {
    width: 74px; height: 74px;
    flex: 0 0 74px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    padding: 6px;
}
.dkcoup-body { flex: 1 1 auto; min-width: 0; }
.dkcoup-cat { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; color: #f97316; text-transform: uppercase; }
.dkcoup-deal-title { font-size: 17px; font-weight: 800; margin-top: 3px; }
.dkcoup-desc { font-size: 12.5px; color: var(--dkpg-muted); margin-top: 3px; }
.dkcoup-min { font-size: 11.5px; color: #94a3b8; margin-top: 6px; }
.dkcoup-min i { margin-right: 4px; }

.dkcoup-cta { flex: 0 0 172px; text-align: center; margin-right: 20px; }
.dkcoup-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px dashed var(--dkpg-accent);
    color: var(--dkpg-accent);
    border-radius: 9px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .06em;
    padding: 8px 10px;
    cursor: pointer;
    background: var(--dkpg-accent-soft);
}
.dkcoup-clip {
    display: block;
    width: 100%;
    border: 0;
    margin-top: 8px;
    background: #f97316;
    color: #fff !important;
    border-radius: 9px;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 10px;
    cursor: pointer;
    transition: background .15s ease;
}
.dkcoup-clip:hover { background: #ea580c; }
.dkcoup-clip.is-clipped { background: #16a34a; }
.dkcoup-clip.is-clipped:hover { background: #15803d; }
.dkcoup-exp { font-size: 11px; color: #94a3b8; margin-top: 7px; }
.dkcoup-fav {
    position: absolute;
    top: 14px; right: 16px;
    color: #cbd5e1;
    font-size: 15px;
    cursor: pointer;
}
.dkcoup-fav:hover { color: #ef4444; }

/* Coupons sidebar */
.dkcoup-side-card { padding: 18px; margin-bottom: 16px; }
.dkcoup-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.dkcoup-side-title { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.dkcoup-store {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    border-bottom: 1px solid #f1f5f9;
    color: inherit;
}
.dkcoup-store:last-of-type { border-bottom: 0; }
.dkcoup-store-logo {
    width: 38px; height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dkcoup-store-name { font-size: 13px; font-weight: 700; color: var(--dkpg-ink); }
.dkcoup-store-count { font-size: 11.5px; color: var(--dkpg-muted); }
.dkcoup-store i.fa-chevron-right { margin-left: auto; color: #cbd5e1; font-size: 11px; }

.dkcoup-expiring { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f1f5f9; }
.dkcoup-expiring:last-child { border-bottom: 0; }
.dkcoup-expiring-title { font-size: 12.5px; font-weight: 700; line-height: 1.3; }
.dkcoup-expiring-code { font-size: 11px; color: var(--dkpg-muted); }
.dkcoup-expiring-left { margin-left: auto; font-size: 11.5px; font-weight: 800; color: #ef4444; white-space: nowrap; }

/* How it works strip */
.dkcoup-how {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 22px 28px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.dkcoup-how-label { font-size: 15px; font-weight: 900; }
.dkcoup-how-step { display: flex; align-items: center; gap: 12px; }
.dkcoup-how-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}
.dkcoup-how-title { font-size: 13.5px; font-weight: 800; }
.dkcoup-how-sub { font-size: 12px; color: var(--dkpg-muted); margin-top: 2px; max-width: 200px; }
.dkcoup-how-arrow { color: #cbd5e1; font-size: 15px; }
.dkcoup-how-spark { margin-left: auto; color: #8b5cf6; font-size: 22px; }

/* ============================================================
   EVENT DEALS
   ============================================================ */
.dkevnt-hero {
    position: relative;
    border-radius: var(--dkpg-radius);
    overflow: hidden;
    margin-top: 22px;
    min-height: 240px;
    background: #0b0714;
}
.dkevnt-hero-img {
    position: absolute;
    inset: 0 0 0 32%;
    width: 68%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
}
.dkevnt-hero-inner { position: relative; z-index: 1; padding: 36px 38px; max-width: 620px; }
.dkevnt-hero-title { font-size: 44px; font-weight: 900; letter-spacing: -.03em; color: #fff; }
.dkevnt-hero-sub { font-size: 15px; color: #e2e8f0; margin-top: 10px; max-width: 380px; line-height: 1.55; }
.dkevnt-hero-feats { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 22px; }
.dkevnt-hero-feat { display: flex; align-items: center; gap: 10px; }
.dkevnt-hero-feat-icon {
    width: 38px; height: 38px; flex: 0 0 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}
.dkevnt-hero-feat-title { font-size: 13px; font-weight: 800; color: #fff; }
.dkevnt-hero-feat-sub { font-size: 11.5px; color: #cbd5e1; margin-top: 1px; }
.dkevnt-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    color: #fff; background: rgba(239, 68, 68, .9);
    padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
/* "More fun. Less money." CTA card */
.dkevnt-hero-cta {
    position: absolute;
    right: 30px; bottom: 26px;
    z-index: 1;
    width: 250px;
    background: rgba(17, 10, 25, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    color: #fff;
    padding: 18px;
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, .6);
}
.dkevnt-hero-cta-icon { width: 34px; height: 34px; border-radius: 50%; background: #f59e0b; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; margin-bottom: 10px; }
.dkevnt-hero-cta-title { font-size: 18px; font-weight: 900; letter-spacing: -.02em; }
.dkevnt-hero-cta-sub { font-size: 12px; color: #e2e8f0; margin-top: 6px; line-height: 1.5; }
.dkevnt-hero-cta-btn {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 12px; padding: 8px 14px;
    background: #ef4444; color: #fff !important;
    font-size: 12.5px; font-weight: 800; border-radius: 9px;
    text-decoration: none; transition: background .15s ease;
}
.dkevnt-hero-cta-btn:hover { background: #dc2626; }

.dkevnt-filters { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 22px; flex-wrap: wrap; }

.dkevnt-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.dkevnt-cardd { overflow: hidden; background: #0f0a19; border: 0; transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; }
.dkevnt-cardd:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -18px rgba(15, 23, 42, .6); }
.dkevnt-media { position: relative; }
.dkevnt-media img { width: 100%; height: 150px; object-fit: cover; display: block; }
.dkevnt-off {
    position: absolute;
    top: 10px; left: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    border-radius: 10px;
    padding: 6px 9px;
    line-height: 1.1;
    text-align: center;
}
.dkevnt-off-red { background: #ef4444; }
.dkevnt-off-purple { background: #8b5cf6; }
.dkevnt-body { background: #fff; padding: 13px 14px 14px; flex: 1 1 auto; display: flex; flex-direction: column; }
.dkevnt-date { font-size: 11.5px; font-weight: 700; color: #ef4444; display: flex; align-items: center; gap: 10px; }
.dkevnt-date i { margin-right: 3px; }
.dkevnt-date .dkevnt-time { color: var(--dkpg-muted); font-weight: 600; }
.dkevnt-name { font-size: 14.5px; font-weight: 800; margin-top: 6px; line-height: 1.3; }
.dkevnt-venue { font-size: 11.5px; color: var(--dkpg-muted); margin-top: 4px; }
.dkevnt-venue i { margin-right: 4px; }
.dkevnt-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; padding-top: 2px; }
.dkevnt-price-label { font-size: 10.5px; color: var(--dkpg-muted); }
.dkevnt-price { font-size: 17px; font-weight: 900; color: #ef4444; }
.dkevnt-price-old { font-size: 12px; color: #94a3b8; text-decoration: line-through; font-weight: 600; margin-left: 5px; }
.dkevnt-foot .dkpg-btn { padding: 8px 15px; font-size: 12.5px; border-radius: 9px; white-space: nowrap; }
.dkevnt-name a { color: inherit; text-decoration: none; }
.dkevnt-name a:hover { color: #ef4444; }

/* Favorite heart */
.dkevnt-fav {
    position: absolute;
    top: 10px; right: 10px;
    width: 30px; height: 30px;
    border: none; border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #64748b; font-size: 14px;
    display: grid; place-items: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(15, 23, 42, .2);
    transition: all .15s ease;
    z-index: 2;
}
.dkevnt-fav:hover { transform: scale(1.08); }
.dkevnt-fav.is-fav, .dkevnt-fav .fa-heart { color: #ef4444; }

/* Digital ticket + virtual tags (over image) */
.dkevnt-digital {
    position: absolute;
    left: 10px; bottom: 10px;
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(15, 23, 42, .82);
    color: #fff; font-size: 10px; font-weight: 700;
    padding: 4px 8px; border-radius: 7px;
    backdrop-filter: blur(2px);
}
.dkevnt-live-tag {
    position: absolute;
    right: 10px; bottom: 10px;
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(139, 92, 246, .92);
    color: #fff; font-size: 10px; font-weight: 700;
    padding: 4px 8px; border-radius: 7px;
}

/* Availability */
.dkevnt-avail { font-size: 11px; font-weight: 700; color: #16a34a; margin-top: 7px; display: flex; align-items: center; gap: 5px; }
.dkevnt-avail.is-low { color: #ef4444; }

/* Card mini actions: Calendar · Directions · Share */
.dkevnt-mini {
    display: flex; align-items: center; gap: 4px;
    margin-top: 10px; padding-top: 9px;
    border-top: 1px solid #eef1f6;
}
.dkevnt-mini > * {
    flex: 1 1 0;
    display: inline-flex; align-items: center; justify-content: center; gap: 4px;
    border: none; background: transparent;
    color: #64748b; font-size: 10.5px; font-weight: 700;
    padding: 4px 2px; border-radius: 7px;
    cursor: pointer; text-decoration: none;
    transition: all .12s ease;
}
.dkevnt-mini > *:hover { background: #f1f5f9; color: #ef4444; }
.dkevnt-share.is-copied { color: #16a34a; }
.dkevnt-share.is-copied::after { content: ' ✓'; }

/* Tab count pill */
.dkpg-chip-count {
    display: inline-block;
    min-width: 17px; padding: 0 5px;
    margin-left: 5px;
    font-size: 10px; font-weight: 800; line-height: 16px;
    text-align: center;
    background: rgba(15, 23, 42, .1); color: inherit;
    border-radius: 999px;
}
.dkpg-chip.active .dkpg-chip-count { background: rgba(255, 255, 255, .28); color: #fff; }

.dkevnt-featstrip .dkpg-feat-icon-1 { background: #fee2e2; color: #ef4444; }
.dkevnt-featstrip .dkpg-feat-icon-2 { background: #ede9fe; color: #7c3aed; }
.dkevnt-featstrip .dkpg-feat-icon-3 { background: #ffedd5; color: #f97316; }
.dkevnt-featstrip .dkpg-feat-icon-4 { background: #fce7f3; color: #db2777; }

/* ============================================================
   CULTURAL DEALS
   ============================================================ */
.dkcult-header { position: relative; text-align: center; padding: 40px 0 8px; }
.dkcult-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.dkcult-sub { font-size: 13.5px; color: var(--dkpg-muted); margin-top: 10px; }
.dkcult-orn { position: absolute; top: 6px; opacity: .5; pointer-events: none; }
.dkcult-orn-left { left: 0px; width: 116px; }
.dkcult-orn-right { right: -10px; width: 286px; }

.dkcult-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 50px; }

.dkcult-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.dkcult-card { overflow: hidden; display: flex; flex-direction: column; transition: all .15s ease; }
.dkcult-card:hover { box-shadow: 0 16px 30px -18px rgba(15, 23, 42, .35); transform: translateY(-2px); }
.dkcult-media { position: relative; }
.dkcult-media img { width: 100%; height: 150px; object-fit: cover; display: block; }
.dkcult-tag {
    position: absolute;
    top: 9px; left: 9px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 7px;
    padding: 4px 9px;
}
.dkcult-fav {
    position: absolute;
    top: 7px; right: 8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}
.dkcult-fav:hover { color: #dc2626; }
.dkcult-body { padding: 12px 13px 13px; display: flex; flex-direction: column; flex: 1 1 auto; }
.dkcult-name { font-size: 13.5px; font-weight: 800; line-height: 1.3; }
.dkcult-desc { font-size: 11.5px; color: var(--dkpg-muted); margin-top: 3px; }
.dkcult-price-row { display: flex; align-items: baseline; gap: 7px; margin: 9px 0 11px; flex-wrap: wrap; }
.dkcult-price { font-size: 15.5px; font-weight: 900; }
.dkcult-old { font-size: 11.5px; color: #94a3b8; text-decoration: line-through; }
.dkcult-pct { font-size: 11px; font-weight: 800; color: #dc2626; }
.dkcult-fav.is-fav, .dkcult-fav .fa-heart { color: #dc2626; }
.dkcult-off {
    position: absolute;
    top: 9px; right: 42px;
    background: #dc2626; color: #fff;
    font-size: 10px; font-weight: 900;
    border-radius: 7px; padding: 4px 8px;
}
.dkcult-name a { color: inherit; text-decoration: none; }
.dkcult-name a:hover { color: #dc2626; }
.dkcult-desc i { margin-right: 4px; opacity: .7; }

/* Country / community tag + authentic badge */
.dkcult-tagrow { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.dkcult-country {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 700;
    color: #475569; background: #f1f5f9;
    padding: 3px 7px; border-radius: 6px;
}
.dkcult-verified {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 800;
    color: #0d9488; background: #ccfbf1;
    padding: 3px 7px; border-radius: 6px;
}

/* Buy Now + Make Offer */
.dkcult-actions { display: flex; gap: 7px; margin-top: auto; }
.dkcult-actions .dkpg-btn { flex: 1 1 0; padding: 8px 8px; font-size: 12px; border-radius: 9px; white-space: nowrap; }
.dkcult-actions .dkpg-btn-outline { border-color: #dc2626; color: #dc2626 !important; }
.dkcult-actions .dkpg-btn-outline:hover { background: #fef2f2; }

/* Filter bar */    
.dkcult-filterbar {
    display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
    margin-top: 18px; padding: 14px 16px;
    background: #fff; border: 1px solid #eef1f6; border-radius: 14px;
}
.dkcult-filter-group { display: flex; flex-direction: column; gap: 3px; }
.dkcult-filter-group label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #94a3b8; }
.dkcult-filter-group select {
    border: 1px solid #e2e8f0; border-radius: 8px;
    padding: 6px 26px 6px 10px; font-size: 12.5px; font-weight: 600; color: #0f172a;
    background: #fff; cursor: pointer;
}
.dkcult-check {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 700; color: #334155;
    margin: 0; cursor: pointer; align-self: flex-end;
}
.dkcult-clear {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 700; color: #dc2626; text-decoration: none;
    align-self: flex-end;
}
.dkcult-count { margin-left: auto; align-self: flex-end; font-size: 12.5px; font-weight: 800; color: #64748b; }

.dkcult-featstrip { border: 0; background: #fbf7f2; }
.dkcult-featstrip .dkpg-feat { flex-direction: column; text-align: center; gap: 10px; }
.dkcult-featstrip .dkpg-feat-icon-1 { background: #dc2626; }
.dkcult-featstrip .dkpg-feat-icon-2 { background: #d97706; }
.dkcult-featstrip .dkpg-feat-icon-3 { background: #7c3aed; }
.dkcult-featstrip .dkpg-feat-icon-4 { background: #0d9488; }

/* ============================================================
   MAKE OFFER
   ============================================================ */
.dkmoff-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 300px;
    gap: 26px;
    align-items: center;
    padding: 26px 30px;
    margin-top: 22px;
}
.dkmoff-illu {
    width: 108px; height: 108px;
    border-radius: 50%;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #16a34a;
}
.dkmoff-title { font-size: 38px; font-weight: 900; letter-spacing: -.03em; }
.dkmoff-sub { font-size: 14px; color: var(--dkpg-muted); margin-top: 6px; }
.dkmoff-trust { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 14px; }
.dkmoff-trust-item { display: flex; align-items: center; gap: 8px; }
.dkmoff-trust-item i {
    color: #16a34a;
    background: #ecfdf5;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.dkmoff-trust-title { font-size: 12.5px; font-weight: 800; }
.dkmoff-trust-sub { font-size: 11px; color: var(--dkpg-muted); }

.dkmoff-how {
    border: 1px solid #d1fae5;
    background: #f6fef9;
    border-radius: 12px;
    padding: 16px 18px;
}
.dkmoff-how-title { font-size: 13.5px; font-weight: 800; display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.dkmoff-how-title i { color: #16a34a; }
.dkmoff-how-text { font-size: 12px; color: var(--dkpg-muted); line-height: 1.55; }
.dkmoff-how-link { display: inline-block; font-size: 12.5px; font-weight: 800; color: #16a34a !important; margin-top: 8px; }

.dkmoff-filterbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 14px;
    align-items: end;
    padding: 16px 18px;
    margin-top: 18px;
}
.dkmoff-field label { font-size: 11.5px; font-weight: 800; color: var(--dkpg-ink); display: block; margin-bottom: 5px; }
.dkmoff-field select, .dkmoff-field input {
    width: 100%;
    border: 1px solid var(--dkpg-line);
    border-radius: 10px;
    background: #fff;
    padding: 9px 11px;
    font-size: 13px;
    outline: none;
    color: var(--dkpg-ink);
}
.dkmoff-field-range { display: flex; align-items: center; gap: 7px; }
.dkmoff-field-range span { color: var(--dkpg-muted); }

.dkmoff-quick { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 16px; }
.dkmoff-quick-label { font-size: 12.5px; font-weight: 800; }

.dkmoff-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 13px;
    margin-top: 16px;
}
.dkmoff-card { overflow: hidden; display: flex; flex-direction: column; transition: all .15s ease; }
.dkmoff-card:hover { box-shadow: 0 16px 30px -18px rgba(15, 23, 42, .3); transform: translateY(-2px); }
.dkmoff-media { position: relative; padding: 26px 12px 8px; background: #fff; text-align: center; }
.dkmoff-media img { width: 100%; height: 110px; object-fit: contain; display: block; }
.dkmoff-badge {
    position: absolute;
    top: 8px; left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 9.5px;
    font-weight: 800;
    border-radius: 999px;
    padding: 3px 8px;
    white-space: nowrap;
}
.dkmoff-fav {
    position: absolute;
    top: 7px; right: 9px;
    color: #cbd5e1;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    border: 0;
}
.dkmoff-fav:hover { color: #ef4444; }
.dkmoff-body { padding: 10px 12px 12px; display: flex; flex-direction: column; flex: 1 1 auto; border-top: 1px solid #f8fafc; }
.dkmoff-name {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dkpg-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}
.dkmoff-price { font-size: 16px; font-weight: 900; margin-top: 6px; }
.dkmoff-retail { font-size: 11px; color: var(--dkpg-muted); margin-top: 3px; }
.dkmoff-retail s { color: #94a3b8; }
.dkmoff-retail i { color: #cbd5e1; margin-left: 3px; }
.dkmoff-card .dkpg-btn { margin-top: 10px; padding: 8px 10px; font-size: 12.5px; border-radius: 9px; }

.dkmoff-loadmore { text-align: center; margin-top: 24px; }
.dkmoff-loadmore .dkpg-btn { border-radius: 999px; padding: 11px 26px; }

.dkmoff-tips {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding: 22px 26px;
    margin-top: 28px;
}
.dkmoff-tip { display: flex; align-items: flex-start; gap: 11px; }
.dkmoff-tip-icon {
    width: 42px; height: 42px; flex: 0 0 42px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.dkmoff-tip-title { font-size: 13px; font-weight: 800; }
.dkmoff-tip-sub { font-size: 11.5px; color: var(--dkpg-muted); margin-top: 3px; line-height: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    .dkcity-grid, .dkmoff-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .dkcult-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .dkcity-cats { grid-template-columns: repeat(5, minmax(0, 1fr)); row-gap: 16px; }
    .dkmoff-header { grid-template-columns: auto minmax(0, 1fr); }
    .dkmoff-how { grid-column: 1 / -1; }
    .dkmoff-tips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
    .dkcity-hero { grid-template-columns: 1fr; }
    .dkcity-hero-media { display: none; }
    .dkcoup-layout { grid-template-columns: 1fr; }
    .dkevnt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dkevnt-hero-img { inset: 0; width: 100%; opacity: .28; -webkit-mask-image: none; mask-image: none; }
    .dkpg-featstrip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dkcity-grid, .dkmoff-grid, .dkcult-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .dkmoff-filterbar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767.98px) {
    .dkcity-hero-title, .dkevnt-hero-title { font-size: 32px; }
    .dkcult-title { font-size: 34px; }
    .dkmoff-title { font-size: 28px; }
    .dkcity-grid, .dkmoff-grid, .dkcult-grid, .dkevnt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dkcity-cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .dkcity-search-loc span { display: none; }
    .dkcoup-row { flex-wrap: wrap; }
    .dkcoup-cta { flex: 1 1 100%; }
    .dkmoff-header { grid-template-columns: 1fr; text-align: center; }
    .dkmoff-illu { margin: 0 auto; }
    .dkmoff-trust { justify-content: center; }
    .dkmoff-tips { grid-template-columns: 1fr; }
    .dkpg-featstrip { grid-template-columns: 1fr; }
    .dkcult-orn { display: none; }
    .dkevnt-hero-cta { position: static; width: auto; margin: 18px 38px 24px; }
}

/* ============================================================
   MOBILE POLISH (spec: horizontal chips, swipeable rows,
   large CTAs, floating chat button)
   ============================================================ */
@media (max-width: 767.98px) {
    /* Category / filter chips scroll horizontally in one row */
    .dkpg-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .dkpg-chips::-webkit-scrollbar { display: none; }
    .dkpg-chips .dkpg-chip { flex: 0 0 auto; }

    /* Card grids become swipeable rows with snap points */
    .dkcity-grid, .dkcult-grid, .dkevnt-grid, .dkmoff-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 12px;
        scrollbar-width: none;
        padding-bottom: 6px;
    }
    .dkcity-grid::-webkit-scrollbar, .dkcult-grid::-webkit-scrollbar,
    .dkevnt-grid::-webkit-scrollbar, .dkmoff-grid::-webkit-scrollbar { display: none; }
    .dkcity-grid > *, .dkcult-grid > *, .dkmoff-grid > * {
        flex: 0 0 66vw;
        max-width: 260px;
        scroll-snap-align: start;
    }
    .dkevnt-grid > * { flex: 0 0 80vw; max-width: 320px; scroll-snap-align: start; }

    /* Large, easy-tap CTAs */
    .dkpg-btn { padding: 12px 18px; font-size: 14px; }
}

/* Floating chat button (all DekoDeals pages) */
.dkdeals-chat-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1050;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #6d5ef1;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: 0 12px 30px -8px rgba(109, 94, 241, .75);
    transition: transform .15s ease, background .15s ease;
}
.dkdeals-chat-fab:hover { transform: scale(1.07); background: #5b4bdd; color: #fff; }
.dkdeals-chat-fab .dkdeals-chat-fab-dot {
    position: absolute;
    top: 3px; right: 4px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #fff;
}

/* ============================================================
   FLASH SALES HOT (dkflash) — premium urgent commerce design
   ============================================================ */
.dkflash-scope {
    --dkpg-accent: #e11d48;
    --dkpg-cta: #e11d48;
    --dkpg-accent-soft: rgba(225, 29, 72, .08);
    --fs-grad: linear-gradient(135deg, #f43f5e 0%, #f97316 100%);
    --fs-ink: #0f1222;
    background: #f6f7fb;
}
.dkflash-scope h1, .dkflash-scope h2, .dkflash-scope .dkflash-section-title {
    font-family: 'Outfit', 'Inter', sans-serif;
}

/* ---------- HERO ---------- */
.dkflash-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 22px;
    padding: 44px 48px 40px;
    background:
        radial-gradient(900px 340px at 88% -10%, rgba(244, 63, 94, .5), transparent 60%),
        radial-gradient(700px 300px at -5% 110%, rgba(249, 115, 22, .35), transparent 55%),
        linear-gradient(140deg, #0c0a1d 0%, #1b0b22 55%, #3b0a24 100%);
    color: #fff;
    border: 0;
    box-shadow: 0 30px 60px -30px rgba(59, 10, 36, .8);
}
.dkflash-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}
.dkflash-hero::after {
    content: '\f0e7';
    font-family: 'FontAwesome';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    font-size: 230px;
    background: linear-gradient(180deg, rgba(251, 191, 36, .32), rgba(244, 63, 94, .12));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 34px rgba(251, 191, 36, .25));
    pointer-events: none;
    animation: dkflash-bolt 3.2s ease-in-out infinite;
}
@keyframes dkflash-bolt {
    0%, 100% { opacity: .75; }
    50% { opacity: 1; filter: drop-shadow(0 0 48px rgba(251, 191, 36, .45)); }
}
.dkflash-hero > * { position: relative; z-index: 1; }

.dkflash-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffe4e6;
}
.dkflash-hero-eyebrow i { color: #fbbf24; animation: dkflash-bolt 2s ease-in-out infinite; }
.dkflash-hero-eyebrow .dkflash-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
    animation: dkflash-pulse 1.6s infinite;
}
@keyframes dkflash-pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
    70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.dkflash-hero-title {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.02;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.dkflash-hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, #fb7185, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dkflash-title-bolt {
    font-size: 34px;
    background: linear-gradient(180deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: dkflash-bolt 2.2s ease-in-out infinite;
}
.dkflash-hero-sub { font-size: 14px; color: rgba(255, 228, 230, .85); margin-top: 8px; max-width: 460px; line-height: 1.55; }

/* Two-column hero head: content left, countdown panel right */
.dkflash-hero-head { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 30px; flex-wrap: wrap; }
.dkflash-hero-left { flex: 1 1 320px; min-width: 260px; }

.dkflash-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.dkflash-pill-live, .dkflash-pill-limited {
    display: inline-flex; align-items: center; gap: 7px;
    border-radius: 999px; padding: 5px 13px;
    font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.dkflash-pill-live { background: rgba(16, 185, 129, .16); border: 1px solid rgba(16, 185, 129, .42); color: #6ee7b7; }
.dkflash-pill-limited { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); color: #ffe4e6; }
.dkflash-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: dkflash-pulse 1.6s infinite; }

/* Countdown + claimed-today panel */
.dkflash-countdown-panel {
    display: flex; align-items: center; gap: 22px;
    background: rgba(8, 6, 16, .55);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px; padding: 16px 22px;
    flex: 0 1 auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.dkflash-cd-label { display: block; font-size: 11px; font-weight: 700; color: rgba(255, 228, 230, .7); margin-bottom: 8px; }
.dkflash-countdown { display: flex; align-items: center; gap: 7px; }
.dkflash-countdown-num {
    background: #17131f;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    border-radius: 10px;
    min-width: 52px;
    padding: 9px 0 3px;
    text-align: center;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.dkflash-countdown-num small {
    display: block;
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 228, 230, .55);
    letter-spacing: .14em;
    padding: 4px 0 5px;
}
.dkflash-countdown-sep { font-size: 20px; font-weight: 900; color: rgba(255, 228, 230, .4); }
.dkflash-cd-divider { width: 1px; align-self: stretch; background: rgba(255, 255, 255, .12); }
.dkflash-cd-progress { min-width: 180px; max-width: 240px; }
.dkflash-cd-progress-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 228, 230, .85);
    margin-bottom: 8px;
}
.dkflash-cd-progress-top strong { color: #34d399; font-size: 13px; }
.dkflash-cd-progress-sub { display: block; font-size: 10px; color: rgba(255, 228, 230, .55); margin-top: 8px; }
.dkflash-bar { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, .14); overflow: hidden; position: relative; }
.dkflash-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--fs-grad);
    position: relative;
    overflow: hidden;
}
.dkflash-bar span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: dkflash-shimmer 2.4s infinite;
}
@keyframes dkflash-shimmer { to { transform: translateX(100%); } }

.dkflash-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.dkflash-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #ffe4e6;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    padding: 8px 15px;
}
.dkflash-hero-badge i { color: #fbbf24; }

/* ---------- LAYOUT ---------- */
.dkflash-layout { display: grid; grid-template-columns: 236px minmax(0, 1fr); gap: 22px; margin-top: 24px; align-items: start; }
.dkflash-sidebar { position: sticky; top: 14px; }
.dkflash-sidebar .dkpg-card { border: 0; box-shadow: 0 10px 30px -18px rgba(15, 18, 34, .25); border-radius: 16px; }
.dkflash-side-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 18px 18px 10px;
}
.dkflash-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 8px;
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #3f4658 !important;
    transition: all .14s ease;
}
.dkflash-cat:hover { background: #f6f7fb; color: var(--dkpg-accent) !important; }
.dkflash-cat.active {
    background: var(--fs-grad);
    color: #fff !important;
    box-shadow: 0 8px 18px -8px rgba(225, 29, 72, .65);
}
.dkflash-cat.active .dkflash-cat-count { background: rgba(255, 255, 255, .25); color: #fff; }
.dkflash-cat-count {
    font-size: 10.5px;
    font-weight: 800;
    color: #64748b;
    background: #eef1f6;
    border-radius: 999px;
    padding: 2px 8px;
    min-width: 26px;
    text-align: center;
}

/* ---------- "Never Miss a Deal" alert card ---------- */
.dkflash-alert-card {
    margin-top: 16px;
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
    color: #fff;
    background: linear-gradient(150deg, #17131f 0%, #2a0f1e 100%);
    box-shadow: 0 12px 30px -16px rgba(15, 18, 34, .5);
}
.dkflash-alert-icon {
    width: 42px; height: 42px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: #fbbf24;
    font-size: 17px;
}
.dkflash-alert-title { font-size: 14.5px; font-weight: 800; }
.dkflash-alert-text { font-size: 11.5px; color: rgba(255, 255, 255, .7); margin: 6px 0 14px; line-height: 1.45; }
.dkflash-alert-btn {
    width: 100%; border: 0; cursor: pointer;
    background: var(--fs-grad);
    color: #fff; font-weight: 800; font-size: 12.5px;
    border-radius: 10px; padding: 10px;
    box-shadow: 0 10px 20px -10px rgba(225, 29, 72, .7);
    transition: filter .15s ease, transform .15s ease;
}
.dkflash-alert-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.dkflash-alert-btn:disabled { opacity: .8; cursor: default; transform: none; }

/* ---------- FILTER BAR ---------- */
.dkflash-filterbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px 16px;
    padding: 16px 18px;
    margin-bottom: 24px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px -18px rgba(15, 18, 34, .25);
}
.dkflash-filterbar > div { flex: 1 1 150px; min-width: 140px; }
.dkflash-filterbar label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #94a3b8;
    display: block;
    margin-bottom: 6px;
}
.dkflash-filterbar select, .dkflash-filterbar input {
    width: 100%;
    border: 1.5px solid #e8ebf2;
    border-radius: 10px;
    padding: 9px 11px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fs-ink);
    outline: none;
    background: #fbfcfe;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.dkflash-filterbar select:focus, .dkflash-filterbar input:focus {
    border-color: #f43f5e;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, .12);
    background: #fff;
}
.dkflash-range { display: flex; align-items: center; gap: 7px; }
.dkflash-range span { color: #cbd5e1; font-weight: 700; }
.dkflash-filterbar .dkpg-btn-solid {
    background: var(--fs-grad);
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 10px 20px -10px rgba(225, 29, 72, .7);
}
.dkflash-filterbar .dkpg-btn-solid:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* ---------- SECTIONS ---------- */
.dkflash-section { margin-bottom: 34px; }
.dkflash-section-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
}
.dkflash-section-title { font-size: 19px; font-weight: 800; letter-spacing: -.01em; display: flex; align-items: center; gap: 12px; color: var(--fs-ink); }
.dkflash-section-title i {
    width: 38px; height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 15px;
    color: #fff !important;
    background: var(--fs-icon-bg, var(--fs-grad));
    box-shadow: 0 8px 16px -8px rgba(15, 18, 34, .4);
}
.dkflash-section-sub { font-size: 12.5px; color: #8a93a6; font-weight: 600; margin-left: auto; }

/* ---------- CARDS ---------- */
.dkflash-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.dkflash-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 10px -4px rgba(15, 18, 34, .12);
    transition: transform .18s ease, box-shadow .18s ease;
}
.dkflash-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -20px rgba(15, 18, 34, .35);
}
.dkflash-media { position: relative; background: #f6f7fb; overflow: hidden; }
.dkflash-media img {
    width: 100%;
    height: 148px;
    object-fit: contain;
    display: block;
    padding: 12px;
    mix-blend-mode: multiply;
    transition: transform .3s ease;
}
.dkflash-card:hover .dkflash-media img { transform: scale(1.06); }
.dkflash-off {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--fs-grad);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    border-radius: 999px;
    padding: 4px 10px;
    box-shadow: 0 6px 14px -6px rgba(225, 29, 72, .8);
    letter-spacing: .02em;
}
.dkflash-timer {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(12, 10, 29, .82);
    backdrop-filter: blur(4px);
    color: #fbbf24;
    font-size: 10px;
    font-weight: 800;
    border-radius: 999px;
    padding: 4px 10px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
}
.dkflash-fav {
    position: absolute;
    top: 9px; right: 10px;
    border: 0;
    background: rgba(255, 255, 255, .95);
    width: 30px; height: 30px;
    border-radius: 50%;
    color: #8a93a6;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 18, 34, .16);
    transition: all .15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dkflash-fav:hover { color: #e11d48; transform: scale(1.12); }

.dkflash-body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1 1 auto; }
.dkflash-name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--fs-ink) !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}
.dkflash-name:hover { color: #e11d48 !important; }
.dkflash-rating { font-size: 10.5px; color: #f59e0b; font-weight: 700; margin-top: 5px; }
.dkflash-rating span { color: #a3adc2; font-weight: 600; }
.dkflash-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.dkflash-price { font-size: 18px; font-weight: 900; color: #e11d48; letter-spacing: -.02em; }
.dkflash-old { font-size: 11.5px; color: #a3adc2; text-decoration: line-through; font-weight: 600; }

.dkflash-stock { margin-top: 9px; }
.dkflash-stock-label { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; color: #8a93a6; margin-bottom: 4px; }
.dkflash-stock-label .is-low { color: #e11d48; }
.dkflash-stock .dkflash-bar { height: 6px; background: #eef1f6; }

.dkflash-actions { display: flex; gap: 8px; margin-top: 12px; }
.dkflash-actions .dkpg-btn { flex: 1 1 auto; padding: 9px 8px; font-size: 12.5px; border-radius: 10px; }
.dkflash-actions .dkpg-btn-solid {
    background: var(--fs-grad);
    box-shadow: 0 8px 16px -8px rgba(225, 29, 72, .65);
}
.dkflash-actions .dkpg-btn-solid:hover { filter: brightness(1.06); }
.dkflash-actions .dkpg-btn-outline { border-color: #e8ebf2; color: #3f4658 !important; }
.dkflash-actions .dkpg-btn-outline:hover { border-color: #e11d48; color: #e11d48 !important; background: #fff; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .dkflash-layout { grid-template-columns: 1fr; }
    .dkflash-sidebar { position: static; }
    .dkflash-sidebar .dkpg-card { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 12px 12px; }
    .dkflash-side-title { flex: 1 1 100%; padding: 6px 4px; }
    .dkflash-cat { margin: 0; border-radius: 999px; padding: 7px 13px; background: #f6f7fb; }
    .dkflash-filterbar > div { flex: 1 1 46%; min-width: 46%; }
    .dkflash-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .dkflash-hero { padding: 32px 28px; }
    .dkflash-hero::after { font-size: 150px; }
    /* Countdown panel drops below the title and spans full width. */
    .dkflash-hero-head { gap: 20px; }
    .dkflash-countdown-panel { width: 100%; justify-content: space-between; }
    /* Alert card was flattened into the chip row above; restore its block look. */
    .dkflash-alert-card { flex: 1 1 100%; }
}
@media (max-width: 767.98px) {
    .dkflash-hero-title { font-size: 34px; }
    .dkflash-title-bolt { font-size: 26px; }
    .dkflash-hero::after { display: none; }
    .dkflash-countdown-num { min-width: 52px; font-size: 20px; }
    /* Countdown panel stacks its blocks vertically on phones. */
    .dkflash-countdown-panel { flex-wrap: wrap; gap: 14px; padding: 16px; }
    .dkflash-cd-divider { display: none; }
    .dkflash-cd-block, .dkflash-cd-progress { flex: 1 1 100%; min-width: 0; max-width: none; }
    .dkflash-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 11px;
        scrollbar-width: none;
        padding-bottom: 6px;
    }
    .dkflash-grid::-webkit-scrollbar { display: none; }
    .dkflash-grid > * { flex: 0 0 52vw; max-width: 210px; scroll-snap-align: start; }
    .dkflash-section-sub { display: none; }
}

/* ============================================================
   TOP SELLER DEALS (page 9)
   ============================================================ */
.dkts-scope { --dkts-purple: #7c3aed; --dkts-red: #ef4444; }
.dkts-layout { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: 22px; margin-top: 22px; align-items: start; }

/* Sidebar */
.dkts-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 16px; }
.dkts-side-card { padding: 16px; }
.dkts-side-head { font-size: 12px; font-weight: 900; letter-spacing: .05em; color: var(--dkts-purple); display: flex; align-items: center; gap: 7px; margin-bottom: 12px; }
.dkts-seller-list { display: flex; flex-direction: column; gap: 4px; }
.dkts-seller-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 10px; text-decoration: none; transition: background .12s ease; }
.dkts-seller-item:hover { background: #f6f4fe; }
.dkts-seller-avatar { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%; background: #ede9fe; color: var(--dkts-purple); display: grid; place-items: center; font-size: 12px; font-weight: 900; }
.dkts-seller-info { flex: 1 1 auto; min-width: 0; }
.dkts-seller-nm { display: block; font-size: 13px; font-weight: 800; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dkts-seller-meta { font-size: 11px; color: #64748b; font-weight: 600; }
.dkts-seller-meta .fa-star { color: #f59e0b; }
.dkts-seller-arrow { color: #cbd5e1; }
.dkts-side-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12.5px; font-weight: 800; color: var(--dkts-purple); text-decoration: none; }
.dkts-benefit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.dkts-benefit-list li { display: flex; align-items: flex-start; gap: 10px; }
.dkts-benefit-ic { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 8px; background: #ede9fe; color: var(--dkts-purple); display: grid; place-items: center; font-size: 13px; }
.dkts-benefit-list strong { display: block; font-size: 12.5px; color: #0f172a; }
.dkts-benefit-list small { font-size: 11px; color: #64748b; }

/* Main head */
.dkts-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.dkts-title { font-size: 30px; font-weight: 900; letter-spacing: -.02em; color: #1e1b4b; }
.dkts-sub { font-size: 13.5px; color: #64748b; margin-top: 5px; }
.dkts-sortform label, .dkts-ratingfilter { font-size: 12.5px; color: #64748b; font-weight: 700; }
.dkts-sortform select, .dkts-ratingfilter select { border: 1px solid #e2e8f0; border-radius: 8px; padding: 6px 26px 6px 10px; font-size: 12.5px; font-weight: 600; margin-left: 6px; cursor: pointer; }
.dkts-filters { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 16px 0 4px; flex-wrap: wrap; }

/* Sections + grid */
.dkts-section { margin-top: 22px; }
/* Auto-fill keeps cards a compact fixed width (mockup) instead of stretching
   to fill 4 wide columns — more cards per row on wider screens. */
.dkts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 14px; margin-top: 14px; }

/* Product card */
.dkts-card { overflow: hidden; display: flex; flex-direction: column; transition: all .15s ease; }
.dkts-card:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -18px rgba(15, 23, 42, .4); }
.dkts-media { position: relative; }
.dkts-media img { width: 100%; height: 150px; object-fit: cover; display: block; }
.dkts-badge { position: absolute; top: 9px; left: 9px; display: inline-flex; align-items: center; gap: 4px; background: var(--dkts-purple); color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: .03em; padding: 4px 8px; border-radius: 7px; }
.dkts-off { position: absolute; top: 9px; right: 9px; background: #f97316; color: #fff; font-size: 10px; font-weight: 900; padding: 4px 8px; border-radius: 7px; }
.dkts-fav { position: absolute; bottom: 9px; right: 9px; width: 30px; height: 30px; border: none; border-radius: 50%; background: rgba(255,255,255,.94); color: #64748b; display: grid; place-items: center; font-size: 13px; cursor: pointer; box-shadow: 0 2px 6px rgba(15,23,42,.2); transition: all .15s ease; }
.dkts-fav:hover { transform: scale(1.08); }
.dkts-fav.is-fav, .dkts-fav .fa-heart { color: var(--dkts-red); }
.dkts-body { padding: 12px 13px 13px; display: flex; flex-direction: column; flex: 1 1 auto; }
.dkts-name { font-size: 13px; font-weight: 800; line-height: 1.3; min-height: 34px; }
.dkts-seller { display: flex; align-items: center; gap: 6px; margin-top: 7px; }
.dkts-seller-badge { width: 18px; height: 18px; border-radius: 50%; background: var(--dkts-purple); color: #fff; font-size: 8px; font-weight: 800; display: grid; place-items: center; }
.dkts-seller-name { font-size: 11.5px; color: #64748b; font-weight: 700; }
.dkts-rating { margin-left: auto; font-size: 11.5px; font-weight: 800; color: #0f172a; }
.dkts-rating .fa-star { color: #f59e0b; }
.dkts-price-row { display: flex; align-items: baseline; gap: 7px; margin: 9px 0 11px; }
.dkts-price { font-size: 17px; font-weight: 900; color: var(--dkts-red); }
.dkts-old { font-size: 12px; color: #94a3b8; text-decoration: line-through; }
.dkts-btn { margin-top: auto; display: block; text-align: center; padding: 9px 10px; border-radius: 9px; font-size: 12.5px; font-weight: 800; color: #fff !important; text-decoration: none; background: linear-gradient(90deg, #f97316, #7c3aed); transition: filter .15s ease; }
.dkts-btn:hover { filter: brightness(1.06); }

/* Featured top sellers */
.dkts-featured { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.dkts-featured-card { padding: 16px 12px; text-align: center; }
.dkts-featured-avatar { width: 46px; height: 46px; border-radius: 50%; background: #ede9fe; color: var(--dkts-purple); display: grid; place-items: center; font-size: 15px; font-weight: 900; margin: 0 auto 9px; }
.dkts-featured-nm { font-size: 12.5px; font-weight: 800; color: #0f172a; }
.dkts-featured-nm .fa-check-circle { color: #0d9488; font-size: 11px; }
.dkts-featured-meta { font-size: 10.5px; color: #64748b; margin-top: 3px; }
.dkts-featured-meta .fa-star { color: #f59e0b; }
.dkts-featured-btn { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 800; color: var(--dkts-purple); border: 1px solid #ddd6fe; border-radius: 8px; padding: 5px 12px; text-decoration: none; }
.dkts-featured-btn:hover { background: #f6f4fe; }

/* Benefits section */
.dkts-benefits-wrap { margin-top: 34px; }
.dkts-benefits-title { font-size: 22px; font-weight: 900; text-align: center; color: #1e1b4b; }
.dkts-benefits-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 13px; margin-top: 18px; }
.dkts-benefit-box { padding: 20px 14px; text-align: center; }
.dkts-benefit-box-ic { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, #f97316, #7c3aed); color: #fff; display: grid; place-items: center; font-size: 18px; margin: 0 auto 11px; }
.dkts-benefit-box-title { font-size: 13px; font-weight: 800; color: #0f172a; }
.dkts-benefit-box-sub { font-size: 11px; color: #64748b; margin-top: 4px; line-height: 1.4; }

/* Seller CTA */
.dkts-cta { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: linear-gradient(100deg, #faf5ff, #f5f3ff); border: 1px solid #ede9fe; flex-wrap: wrap; }
.dkts-cta-left { display: flex; align-items: center; gap: 14px; }
.dkts-cta-ic { width: 42px; height: 42px; border-radius: 50%; background: var(--dkts-purple); color: #fff; display: grid; place-items: center; font-size: 17px; }
.dkts-cta-title { font-size: 17px; font-weight: 900; color: #1e1b4b; }
.dkts-cta-sub { font-size: 13px; color: #64748b; margin-top: 2px; }
.dkts-cta-btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; background: var(--dkts-purple); color: #fff !important; font-size: 13.5px; font-weight: 800; border-radius: 10px; text-decoration: none; transition: background .15s ease; }
.dkts-cta-btn:hover { background: #6d28d9; }

@media (max-width: 1100px) {
    .dkts-layout { grid-template-columns: 1fr; }
    .dkts-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .dkts-sidebar > * { flex: 1 1 280px; }
    .dkts-grid, .dkts-featured, .dkts-benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
    .dkts-grid, .dkts-featured, .dkts-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dkts-cta { flex-direction: column; align-items: flex-start; }
}
.dkts-promoted { position: absolute; top: 34px; left: 9px; display: inline-flex; align-items: center; gap: 4px; background: #f59e0b; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .03em; padding: 3px 7px; border-radius: 6px; }

/* ============================================================
   SHARED DEAL DETAIL PAGES (City / Coupon / Auction) — premium
   ============================================================ */
.dkdt-layout { --dkdt-accent: #E94E1B; --dkdt-accent-2: #ff2e88; --dkdt-soft: #fff1ec;
    display: grid; grid-template-columns: minmax(0, 1fr) 372px; gap: 26px; align-items: start; padding-bottom: 40px; }
.dkcity-scope .dkdt-layout { --dkdt-accent: #E94E1B; --dkdt-accent-2: #ff5da2; --dkdt-soft: #fff1ec; }
.dkcoup-scope .dkdt-layout { --dkdt-accent: #7c3aed; --dkdt-accent-2: #a855f7; --dkdt-soft: #f3edff; }
.dkpg[data-auction-id] .dkdt-layout { --dkdt-accent: #4f46e5; --dkdt-accent-2: #7c3aed; --dkdt-soft: #eef0ff; }

.dkdt-crumbs { display: flex; align-items: center; gap: 8px; margin: 18px 0 16px; font-size: 12.5px; color: #94a3b8; font-weight: 600; }
.dkdt-crumbs a { color: #64748b; font-weight: 700; text-decoration: none; }
.dkdt-crumbs a:hover { color: var(--dkdt-accent, #E94E1B); }

.dkdt-main { display: flex; flex-direction: column; gap: 18px; }

/* Hero */
.dkdt-hero { padding: 0; overflow: hidden; border-radius: 20px; box-shadow: 0 18px 44px -26px rgba(15,23,42,.35); border: 1px solid #eef1f6; }
.dkdt-hero-media { position: relative; }
.dkdt-hero-media img { width: 100%; height: 440px; object-fit: contain; display: block; }
.dkdt-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, transparent 26%, transparent 62%, rgba(0,0,0,.5) 100%); pointer-events: none; }
.dkdt-off { position: absolute; top: 16px; left: 16px; z-index: 2; background: linear-gradient(135deg, var(--dkdt-accent), var(--dkdt-accent-2)); color: #fff; font-size: 13px; font-weight: 900; padding: 7px 14px; border-radius: 999px; box-shadow: 0 8px 20px -6px rgba(0,0,0,.4); letter-spacing: .01em; }
.dkdt-hero-fav { position: absolute; top: 16px; right: 16px; z-index: 2; width: 40px; height: 40px; border: none; border-radius: 50%; background: rgba(255,255,255,.92); color: #64748b; font-size: 15px; display: grid; place-items: center; cursor: pointer; box-shadow: 0 6px 16px -6px rgba(0,0,0,.4); transition: transform .15s ease; }
.dkdt-hero-fav:hover { transform: scale(1.08); }
.dkdt-hero-fav.is-fav, .dkdt-hero-fav .fa-heart { color: #ff2e88; }
.dkdt-hero-caption { position: absolute; left: 18px; bottom: 16px; z-index: 2; display: flex; gap: 8px; flex-wrap: wrap; }
.dkdt-hero-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(15,23,42,.62); backdrop-filter: blur(6px); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.dkdt-hero-chip .fa-star { color: #fbbf24; }
.dkdt-hero-chip.verify { background: rgba(16,185,129,.9); }

/* Quick-fact tiles */
.dkdt-facts { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.dkdt-fact { background: #fff; border: 1px solid #eef1f6; border-radius: 14px; padding: 14px; text-align: center; }
.dkdt-fact-ic { width: 34px; height: 34px; margin: 0 auto 8px; border-radius: 10px; display: grid; place-items: center; font-size: 14px; background: var(--dkdt-soft); color: var(--dkdt-accent); }
.dkdt-fact-val { font-size: 16px; font-weight: 900; color: #0f172a; line-height: 1.1; }
.dkdt-fact-lbl { font-size: 11px; color: #94a3b8; font-weight: 600; margin-top: 3px; }

/* Section cards */
.dkdt-block { padding: 22px 24px; border-radius: 18px; border: 1px solid #eef1f6; box-shadow: 0 10px 30px -24px rgba(15,23,42,.4); }
.dkdt-h2 { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 900; color: #0f172a; margin-bottom: 14px; letter-spacing: -.01em; }
.dkdt-h2 .fa { width: 30px; height: 30px; border-radius: 9px; background: var(--dkdt-soft); color: var(--dkdt-accent); display: inline-grid; place-items: center; font-size: 14px; margin: 0; }
.dkdt-h3 { font-size: 14px; font-weight: 800; color: #0f172a; margin: 18px 0 8px; }
.dkdt-desc { font-size: 14.5px; line-height: 1.75; color: #475569; }
.dkdt-muted { color: #64748b; font-size: 13px; }
.dkdt-map { margin-top: 6px; border-radius: 14px; overflow: hidden; border: 1px solid #eef1f6; }
.dkdt-map iframe { display: block; }
.dkdt-hours { list-style: none; margin: 0; padding: 0; }
.dkdt-hours li { display: flex; justify-content: space-between; padding: 10px 4px; font-size: 13.5px; border-bottom: 1px solid #f4f6fa; color: #475569; }
.dkdt-hours li:last-child { border-bottom: none; }
.dkdt-hours li.is-today { font-weight: 800; color: #0f172a; background: var(--dkdt-soft); border-radius: 8px; padding-left: 10px; padding-right: 10px; }
.dkdt-hours li.is-today span:last-child::after { content: ' · Open today'; color: #16a34a; font-weight: 700; }
.dkdt-list { margin: 0; padding-left: 4px; list-style: none; font-size: 13.5px; line-height: 1.5; color: #475569; }
.dkdt-list li { position: relative; padding: 7px 0 7px 26px; border-bottom: 1px solid #f6f8fb; }
.dkdt-list li:last-child { border-bottom: none; }
.dkdt-list li::before { content: '\f00c'; font-family: FontAwesome; position: absolute; left: 0; top: 7px; color: var(--dkdt-accent); font-size: 12px; }
.dkdt-list.steps { counter-reset: step; }
.dkdt-list.steps li::before { content: counter(step); counter-increment: step; width: 18px; height: 18px; border-radius: 50%; background: var(--dkdt-accent); color: #fff; font-family: inherit; font-size: 11px; font-weight: 800; display: grid; place-items: center; top: 8px; }
.dkdt-rev-summary { display: flex; align-items: center; gap: 18px; margin-bottom: 8px; padding: 14px 16px; background: var(--dkdt-soft); border-radius: 14px; }
.dkdt-rev-score { font-size: 42px; font-weight: 900; color: #0f172a; line-height: 1; }
.dkdt-stars { color: #fbbf24; font-size: 15px; letter-spacing: 1px; }
.dkdt-stars.sm { font-size: 12px; }
.dkdt-rev { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f4f6fa; }
.dkdt-rev:last-child { border-bottom: none; }
.dkdt-rev-av { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%; background: var(--dkdt-soft); color: var(--dkdt-accent); display: grid; place-items: center; font-weight: 800; }
.dkdt-rev p { margin: 5px 0 0; font-size: 13px; color: #64748b; line-height: 1.6; }

/* Sticky buy box */
.dkdt-side { position: sticky; top: 16px; }
.dkdt-buybox { padding: 22px; border-radius: 20px; border: 1px solid #eef1f6; box-shadow: 0 20px 50px -30px rgba(15,23,42,.5); }
.dkdt-cat { display: inline-block; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--dkdt-accent); background: var(--dkdt-soft); padding: 4px 11px; border-radius: 999px; }
.dkdt-title { font-size: 24px; font-weight: 900; color: #0f172a; margin: 12px 0 8px; line-height: 1.22; letter-spacing: -.02em; }
.dkdt-inline-rating { font-size: 13px; font-weight: 800; color: #0f172a; }
.dkdt-inline-rating .fa-star { color: #fbbf24; }
.dkdt-price-box { margin: 16px 0; padding: 16px; background: linear-gradient(135deg, var(--dkdt-soft), #fff); border: 1px solid #f1f0f6; border-radius: 16px; }
.dkdt-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.dkdt-price { font-size: 34px; font-weight: 900; color: var(--dkdt-accent); letter-spacing: -.02em; }
.dkdt-old { font-size: 16px; color: #94a3b8; text-decoration: line-through; font-weight: 600; }
.dkdt-save { font-size: 11.5px; font-weight: 800; color: #16a34a; background: #dcfce7; padding: 3px 9px; border-radius: 999px; }
.dkdt-save-note { font-size: 12px; font-weight: 700; color: #16a34a; margin-top: 6px; }
.dkdt-cta { margin-top: 4px; padding: 14px !important; font-size: 15px !important; border-radius: 13px !important; background: linear-gradient(135deg, var(--dkdt-accent), var(--dkdt-accent-2)) !important; border: none !important; box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--dkdt-accent) 60%, transparent); }
.dkdt-cta:hover { filter: brightness(1.05); }
.dkdt-side-actions { display: flex; gap: 8px; margin-top: 12px; }
.dkdt-side-actions > * { flex: 1 1 0; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid #e8ecf2; background: #fff; border-radius: 11px; padding: 10px 4px; font-size: 12px; font-weight: 700; color: #475569; cursor: pointer; text-decoration: none; transition: all .13s ease; }
.dkdt-side-actions > *:hover { border-color: var(--dkdt-accent, #E94E1B); color: var(--dkdt-accent, #E94E1B); background: var(--dkdt-soft); }
.dkdt-expiry { margin-top: 14px; font-size: 12.5px; font-weight: 800; color: #dc2626; text-align: center; background: #fef2f2; border-radius: 10px; padding: 9px; }
.dkdt-trust { margin-top: 16px; padding-top: 16px; border-top: 1px dashed #e2e8f0; display: flex; flex-direction: column; gap: 11px; }
.dkdt-trust-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #475569; font-weight: 600; }
.dkdt-trust-row .fa { width: 26px; height: 26px; border-radius: 8px; background: #f1f5f9; color: var(--dkdt-accent); display: grid; place-items: center; font-size: 12px; }

@media (max-width: 992px) {
    .dkdt-layout { grid-template-columns: 1fr; }
    .dkdt-side { position: static; }
    .dkdt-hero-media img { height: 300px; }
    .dkdt-facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* ============================================================
   COUPON DETAIL — premium (matches mockup)
   ============================================================ */
.dkcoup-scope .dkcpd-hero { position: relative; overflow: hidden; padding: 26px 28px; }
.dkcpd-illus { position: absolute; top: 24px; right: 28px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle at 50% 40%, #f3edff, #faf7ff); display: grid; place-items: center; color: #c4b5fd; font-size: 58px; pointer-events: none; }
.dkcpd-illus .fa { opacity: .85; }

.dkcpd-store { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; position: relative; z-index: 1; }
.dkcpd-logo { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 14px; background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 18px; box-shadow: 0 8px 18px -8px rgba(124,58,237,.6); }
.dkcpd-logo.sm { width: 40px; height: 40px; flex: 0 0 40px; font-size: 14px; border-radius: 11px; box-shadow: none; }
.dkcpd-brand { font-size: 16px; font-weight: 800; color: #0f172a; display: flex; align-items: center; gap: 6px; }
.dkcpd-brand.sm { font-size: 13.5px; }
.dkcpd-verified-ic { color: #16a34a; font-size: 13px; }
.dkcpd-substore { font-size: 12.5px; color: #64748b; margin-top: 2px; font-weight: 600; }
.dkcpd-substore .fa { color: #7c3aed; }
.dkcpd-dot { color: #cbd5e1; }
.dkcpd-title { font-size: 32px; font-weight: 900; color: #0f172a; margin: 4px 0 8px; letter-spacing: -.03em; line-height: 1.1; position: relative; z-index: 1; }
.dkcpd-lead { font-size: 14.5px; color: #64748b; margin-bottom: 20px; position: relative; z-index: 1; max-width: 560px; }

/* Ticket-style code — two separate panels with a perforated gap */
.dkcpd-ticket { display: flex; align-items: stretch; gap: 26px; margin: 4px 0 18px; position: relative; z-index: 1; }
.dkcpd-ticket-code { flex: 1 1 auto; border: 2px dashed #d8ccf5; border-radius: 16px; background: #f6f2ff; padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; }
.dkcpd-ticket-copy { flex: 0 0 236px; border: 2px dashed #d8ccf5; border-radius: 16px; background: #fff; padding: 18px 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; position: relative; }
/* perforation holes sitting fully inside the gap between the two panels */
.dkcpd-ticket-copy::before, .dkcpd-ticket-copy::after { content: ''; position: absolute; left: -22px; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 2px dashed #d8ccf5; display: none;}
.dkcpd-ticket-copy::before { top: 6px; }
.dkcpd-ticket-copy::after { bottom: 6px; }
.dkcpd-ticket-lbl { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #7c3aed; }
.dkcpd-code { font-size: 34px; font-weight: 900; letter-spacing: .04em; color: #7c3aed; margin-top: 5px; line-height: 1; }
.dkcpd-copy { border: none; cursor: pointer; white-space: nowrap; font-weight: 800; }
.dkcpd-copy.dark { background: #0f172a; color: #fff; font-size: 13.5px; padding: 11px 18px; border-radius: 10px; }
.dkcpd-copy.dark:hover { background: #1e293b; }
.dkcpd-casenote { font-size: 11px; color: #94a3b8; }

/* Meta strip */
.dkcpd-metastrip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #eef1f6; border-radius: 12px; overflow: hidden; position: relative; z-index: 1; }
.dkcpd-metacell { padding: 14px 10px; text-align: center; font-size: 12.5px; font-weight: 700; color: #475569; border-right: 1px solid #eef1f6; }
.dkcpd-metacell:last-child { border-right: none; }
.dkcpd-metacell .fa { color: #7c3aed; margin-right: 6px; }

/* QR card */
.dkcpd-qr { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.dkcpd-qr-info { display: flex; align-items: flex-start; gap: 14px; }
.dkcpd-qr-ic { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; background: linear-gradient(135deg,#7c3aed,#a855f7); color: #fff; display: grid; place-items: center; font-size: 18px; }
.dkcpd-qr-title { font-size: 16px; font-weight: 900; color: #0f172a; margin: 0 0 4px; }
.dkcpd-qr-frame { padding: 8px; border: 1px solid #eef1f6; border-radius: 14px; background: #fff; }
.dkcpd-qrimg { width: 150px; height: 150px; display: block; }

/* Terms with purple checks */
.dkcpd-terms { list-style: none; margin: 0; padding: 0; }
.dkcpd-terms li { position: relative; padding: 11px 0 11px 32px; font-size: 13.5px; color: #475569; border-bottom: 1px dashed #eef1f6; }
.dkcpd-terms li:last-child { border-bottom: none; }
.dkcpd-terms li::before { content: '\f058'; font-family: FontAwesome; position: absolute; left: 0; top: 10px; color: #7c3aed; font-size: 16px; }

/* Related */
.dkcpd-related { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.dkcpd-rel { padding: 18px 14px; text-decoration: none; text-align: center; transition: all .15s ease; border-radius: 16px; }
.dkcpd-rel:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -18px rgba(124,58,237,.5); }
.dkcpd-rel-amt { font-size: 20px; font-weight: 900; color: #7c3aed; }
.dkcpd-rel-brand { font-size: 13px; font-weight: 700; color: #0f172a; margin-top: 4px; }

/* Sidebar buy box */
.dkcpd-buybox { position: relative; overflow: hidden; padding: 24px; }
.dkcpd-ribbon { position: absolute; top: 0; right: 0; width: 74px; height: 74px; background: linear-gradient(135deg, #7c3aed, #a855f7); clip-path: polygon(100% 0, 0 0, 100% 100%); display: block; }
.dkcpd-ribbon .fa { position: absolute; top: 12px; right: 12px; color: #fff; font-size: 15px; }
.dkcpd-side-amt { font-size: 40px; font-weight: 900; color: #7c3aed; letter-spacing: -.03em; line-height: 1; }
.dkcpd-side-sub { font-size: 14px; color: #64748b; font-weight: 600; margin: 6px 0 18px; }
.dkcpd-clip { width: 100%; border: none; cursor: pointer; background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; font-weight: 800; font-size: 15px; padding: 14px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 12px 24px -10px rgba(249,115,22,.6); transition: filter .15s ease; }
.dkcpd-clip:hover { filter: brightness(1.05); }
.dkcpd-clip.is-clipped { background: #16a34a !important; box-shadow: 0 12px 24px -10px rgba(22,163,74,.5); }
.dkcpd-copybtn { width: 100%; border: none; cursor: pointer; background: #0f172a; color: #fff; font-weight: 800; font-size: 14px; padding: 13px; border-radius: 12px; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.dkcpd-copybtn:hover { background: #1e293b; }
.dkcpd-shopbtn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 10px; padding: 12px; border-radius: 12px; background: #f3edff; color: #7c3aed !important; font-weight: 800; font-size: 13.5px; text-decoration: none; }
.dkcpd-store-profile { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid #eef1f6; }
.dkcpd-store-link { display: inline-block; margin-top: 3px; font-size: 12.5px; font-weight: 800; color: #7c3aed; text-decoration: none; }
.dkcpd-trust { margin-top: 18px; padding-top: 18px; border-top: 1px solid #eef1f6; display: flex; flex-direction: column; gap: 14px; }
.dkcpd-trust-row { display: flex; align-items: center; gap: 11px; font-size: 13px; color: #334155; font-weight: 600; }
.dkcpd-trust-ic { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: #f3edff; color: #7c3aed; display: grid; place-items: center; font-size: 13px; }
.dkcpd-trusted { display: flex; gap: 12px; margin-top: 18px; padding: 14px; background: #f6f2ff; border: 1px solid #ece4fb; border-radius: 14px; }
.dkcpd-trusted-ic { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 10px; background: #ede4fd; color: #7c3aed; display: grid; place-items: center; font-size: 15px; }
.dkcpd-trusted-title { font-size: 13px; font-weight: 800; color: #0f172a; }
.dkcpd-trusted-sub { font-size: 11.5px; color: #64748b; line-height: 1.5; margin-top: 2px; }

.dkcoup-details-link { margin-left: 10px; font-size: 11.5px; font-weight: 700; color: #7c3aed; text-decoration: none; }
.dkcoup-deal-title a { color: inherit; text-decoration: none; }
.dkcoup-deal-title a:hover { color: #7c3aed; }

@media (max-width: 680px) {
    .dkcpd-related { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .dkcpd-qr { flex-direction: column; align-items: flex-start; }
    .dkcpd-ticket { grid-template-columns: 1fr; }
    .dkcpd-ticket-code { border-right: 2px dashed #d8ccf5; border-bottom: none; border-radius: 14px 14px 0 0; }
    .dkcpd-ticket-copy { border-left: 2px dashed #d8ccf5; border-top: none; border-radius: 0 0 14px 14px; }
    .dkcpd-ticket-copy::before, .dkcpd-ticket-copy::after { display: none; }
    .dkcpd-illus { display: none; }
    .dkcpd-title { font-size: 26px; }
}

/* Auction detail */
.dkau-timer { position: absolute; top: 14px; left: 14px; background: rgba(15,23,42,.85); color: #fff; font-size: 14px; font-weight: 800; padding: 7px 13px; border-radius: 999px; }
.dkau-timer.ended { background: #64748b; }
.dkau-history { list-style: none; margin: 0; padding: 0; }
.dkau-history li { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 10px 2px; border-bottom: 1px solid #f1f5f9; font-size: 13px; }
.dkau-hist-user { font-weight: 700; color: #0f172a; }
.dkau-hist-amt { font-weight: 900; color: #7c3aed; }
.dkau-hist-time { color: #94a3b8; font-size: 12px; }
.dkau-bidcount { font-size: 13px; font-weight: 700; color: #64748b; }
.dkau-bid-panel { background: #f8fafc; border-radius: 12px; padding: 14px 16px; margin: 14px 0; text-align: center; }
.dkau-current-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #64748b; font-weight: 700; }
.dkau-current { font-size: 34px; font-weight: 900; color: #0f172a; }
.dkau-form { display: flex; flex-direction: column; gap: 10px; }
.dkau-lbl { font-size: 12px; font-weight: 700; color: #475569; }                  
.dkau-input { display: flex; align-items: center; gap: 4px; border: 1px solid #e2e8f0; border-radius: 9px; padding: 8px 12px; font-weight: 800; }
.dkau-input span { color: #64748b; }
.dkau-input input { border: none; outline: none; width: 100%; font-size: 16px; font-weight: 800; }
.dkau-auto, .dkau-terms { font-size: 12.5px; color: #475569; display: flex; align-items: center; gap: 7px; cursor: pointer; }
.dkau-place:disabled { opacity: .5; cursor: not-allowed; } 

.dkau-watch { border: 1px solid #e2e8f0; background: #fff; border-radius: 9px; padding: 9px; font-size: 13px; font-weight: 800; color: #475569; cursor: pointer; margin-top: 4px; }
.dkau-watch.is-watching { color: #e11d48; border-color: #fbcfe8; background: #fff1f5; }
.dkau-ended-note { background: #f1f5f9; border-radius: 10px; padding: 14px; text-align: center; font-weight: 700; color: #64748b; }
.dkau-seller { margin-top: 16px; padding-top: 14px; border-top: 1px solid #eef1f6; }
.dkau-seller-row { display: flex; align-items: center; gap: 10px; }
.dkau-seller-av { width: 38px; height: 38px; border-radius: 50%; background: #ede9fe; color: #7c3aed; display: grid; place-items: center; font-weight: 900; }
.dkau-seller-name { font-weight: 800; color: #0f172a; font-size: 13.5px; }
.dkau-ship { margin-top: 10px; font-size: 12.5px; font-weight: 700; color: #334155; }
.dkau-ship .fa { color: #7c3aed; margin-right: 6px; }

/* Flash Sales — extra filter controls (stock/shipping/seller-online) */
.dkflash-filterbar .dkflash-checks { flex: 1 1 180px; min-width: 170px; display: flex; flex-direction: column; gap: 8px; justify-content: flex-end; padding-bottom: 4px; }
.dkflash-filterbar .dkflash-check { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #334155; margin: 0 0 0 0; cursor: pointer; white-space: nowrap; text-transform: none; letter-spacing: normal; }
.dkflash-filterbar .dkflash-check input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin: 0; padding: 0; border: 1.5px solid #cbd5e1; border-radius: 4px; background: #fff; }

/* Flash Sales — boosted badge */
.dkflash-boosted { position: absolute; top: 40px; left: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 4px; background: linear-gradient(135deg,#7c3aed,#a855f7); color: #fff; font-size: 9.5px; font-weight: 800; padding: 3px 8px; border-radius: 999px; box-shadow: 0 6px 14px -6px rgba(124,58,237,.6); }

/* Flash Sales — fulfilment / max-order line on card */
.dkflash-fulfil { display: flex; flex-wrap: wrap; gap: 4px 12px; margin: 8px 0 0; font-size: 11px; font-weight: 600; color: #64748b; }
.dkflash-fulfil .fa { color: #e11d48; margin-right: 4px; }
