/* =============================================
   JEFF'S DAILY DEALS — style.css v5
   Fixed: price cut off, promo/deal-type styles
   Cache bust: 20260518
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --fire:       #F04E23;
  --fire-dark:  #C93D18;
  --fire-light: #FF6B42;
  --blue:       #1E63CC;
  --blue-dark:  #1550A8;
  --blue-light: #4A8FE8;
  --gold:       #FFB800;
  --green:      #25D366;

  /* Dark theme defaults */
  --bg:         #0F0F0F;
  --bg-2:       #1A1A1A;
  --bg-3:       #242424;
  --border:     #2E2E2E;
  --text:       #E8E8E0;
  --text-muted: #888880;

  --radius:    8px;
  --radius-lg: 14px;
  --trans:     0.2s ease;
}

/* ---- LIGHT THEME ---- */
[data-theme="light"] {
  --bg:         #F2F2ED;
  --bg-2:       #FFFFFF;
  --bg-3:       #E6E6E0;
  --border:     #D8D8D0;
  --text:       #1A1A1A;
  --text-muted: #5A5A54;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---- ACCESSIBILITY ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--fire);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--fire); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---- NOTICE BAR ---- */
.notice-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
  flex-wrap: wrap;
  text-align: center;
}
.notice-bar a { color: var(--fire-light); text-decoration: none; border-bottom: 1px dotted var(--fire-light); }

/* ---- HEADER ---- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 12px;
  min-height: 64px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; max-width: 260px; }
.logo-img { height: 42px; width: auto; display: block; flex-shrink: 0; object-fit: contain; }
[data-theme="light"] .logo-img { background: #0F0F0F; border-radius: 6px; padding: 3px 6px; }
.logo-slogan { font-size: 10px; color: var(--fire); letter-spacing: 1.8px; text-transform: uppercase; font-weight: 600; white-space: nowrap; display: block; line-height: 1.2; }

.header-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.main-nav { display: flex; gap: 2px; }
.nav-link { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: var(--radius); transition: color var(--trans), background var(--trans); white-space: nowrap; }
.nav-link:hover  { color: var(--text); background: var(--bg-3); }
.nav-link.active { color: var(--fire-light); background: var(--bg-3); }

/* THEME TOGGLE */
.theme-toggle { background: var(--bg-3); border: 1px solid var(--border); color: var(--text); width: 38px; height: 38px; border-radius: var(--radius); cursor: pointer; font-size: 17px; display: flex; align-items: center; justify-content: center; transition: border-color var(--trans), background var(--trans); flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--fire); background: var(--bg-2); }
.t-icon-dark  { display: block; }
.t-icon-light { display: none; }
[data-theme="light"] .t-icon-dark  { display: none; }
[data-theme="light"] .t-icon-light { display: block; }

/* MOBILE */
.mobile-menu-btn { display: none; background: var(--bg-3); border: 1px solid var(--border); color: var(--text); font-size: 18px; width: 38px; height: 38px; border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center; }
.mobile-nav { display: flex; flex-direction: column; border-top: 1px solid var(--border); background: var(--bg); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { color: var(--text); text-decoration: none; padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--border); transition: background var(--trans); }
.mobile-nav a:hover { background: var(--bg-3); }

/* ---- HERO ---- */
.hero { position: relative; overflow: hidden; padding: 80px 0 70px; min-height: 460px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240,78,35,.14) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 15% 30%, rgba(30,99,204,.09) 0%, transparent 60%), var(--bg-2); }
[data-theme="light"] .hero-bg { background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240,78,35,.06) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 15% 30%, rgba(30,99,204,.05) 0%, transparent 60%), var(--bg-2); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(128,128,128,.03) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(128,128,128,.03) 40px); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { display: inline-block; background: rgba(240,78,35,.13); border: 1px solid rgba(240,78,35,.35); color: var(--fire-light); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; font-family: 'DM Mono', monospace; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(54px, 8.5vw, 96px); line-height: 0.95; letter-spacing: 2px; color: var(--text); margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--fire); }
.hero-sub { font-size: 17px; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-stats { display: flex; align-items: center; gap: 24px; margin-top: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--text); line-height: 1; }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* ---- BUTTONS ---- */
.btn-primary { display: inline-block; background: var(--fire); color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: var(--radius); transition: background var(--trans), transform var(--trans), box-shadow var(--trans); box-shadow: 0 0 28px rgba(240,78,35,.28); }
.btn-primary:hover { background: var(--fire-dark); transform: translateY(-2px); box-shadow: 0 0 40px rgba(240,78,35,.45); }
.btn-secondary { display: inline-block; border: 1px solid var(--border); color: var(--text); text-decoration: none; font-weight: 500; font-size: 14px; padding: 12px 24px; border-radius: var(--radius); transition: border-color var(--trans), color var(--trans); }
.btn-secondary:hover { border-color: var(--fire); color: var(--fire-light); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: var(--radius); transition: background var(--trans), transform var(--trans); white-space: nowrap; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }

/* ---- FLOATING WHATSAPP ---- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 500; background: var(--green); color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px; border-radius: 50px; box-shadow: 0 4px 20px rgba(37,211,102,.45); font-weight: 700; font-size: 14px; transition: background var(--trans), transform var(--trans), box-shadow var(--trans); }
.wa-float:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { flex-shrink: 0; }
.wa-label { white-space: nowrap; }

/* ---- WHATSAPP BANNER ---- */
.whatsapp-banner { background: linear-gradient(135deg, rgba(37,211,102,.1) 0%, rgba(30,99,204,.07) 100%); border-top: 1px solid rgba(37,211,102,.18); border-bottom: 1px solid rgba(37,211,102,.18); padding: 22px 0; }
.whatsapp-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.whatsapp-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; color: var(--text); margin-bottom: 3px; }
.whatsapp-text p  { font-size: 13px; color: var(--text-muted); }

/* ---- STORES BAR ---- */
.stores-bar { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
.stores-bar .container { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.stores-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; font-family: 'DM Mono', monospace; }
.stores-list { display: flex; gap: 8px; flex-wrap: wrap; }
.store-badge { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.store-badge.amazon    { background: rgba(255,153,0,.13); color: #FF9900; border: 1px solid rgba(255,153,0,.3); }
.store-badge.ebay      { background: rgba(0,100,210,.13); color: #5ba3f5; border: 1px solid rgba(0,100,210,.3); }
.store-badge.bestbuy   { background: rgba(0,48,135,.18);  color: #7aaeff; border: 1px solid rgba(0,100,200,.3); }
.store-badge.walmart   { background: rgba(0,113,206,.13); color: #5bb0ff; border: 1px solid rgba(0,113,206,.3); }
.store-badge.lowes     { background: rgba(0,73,144,.13);  color: #6aacff; border: 1px solid rgba(0,73,144,.3);  }
.store-badge.homedepot { background: rgba(249,99,2,.13);  color: #ff9a60; border: 1px solid rgba(249,99,2,.3);  }

/* ---- DEALS GRID ---- */
.section-deals { padding: 56px 0; }
.section-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 32px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 2px; color: var(--text); }
.section-title.centered { text-align: center; }
.section-tag { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.deal-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: visible; display: flex; flex-direction: column; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; text-decoration: none; color: inherit; }
.deal-card:hover { border-color: rgba(240,78,35,.4); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(240,78,35,.12); }
.deal-img-wrap { background: var(--bg-3); height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.deal-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 16px; }
.deal-img-placeholder { font-size: 52px; opacity: .25; }
.deal-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; overflow: visible; }
.deal-store-tag { font-size: 10px; font-family: 'DM Mono', monospace; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; display: inline-block; width: fit-content; }
.tag-amazon    { background: rgba(255,153,0,.13); color: #FF9900; }
.tag-ebay      { background: rgba(0,100,210,.13); color: #5ba3f5; }
.tag-bestbuy   { background: rgba(0,100,200,.13); color: #7aaeff; }
.tag-walmart   { background: rgba(0,113,206,.13); color: #5bb0ff; }
.tag-lowes     { background: rgba(0,73,144,.13);  color: #6aacff; }
.tag-homedepot { background: rgba(249,99,2,.13);  color: #ff9a60; }
.deal-title { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.4; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* PRICE ROW — fixed cut off */
.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
  padding-left: 1px;    /* prevents left clip */
  overflow: visible;    /* prevents any clipping */
}
.deal-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  display: inline-block; /* ensures full render */
  overflow: visible;
  padding-left: 1px;     /* prevents $ from clipping */
}
.deal-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.deal-savings  { font-size: 11px; font-weight: 600; color: #4ade80; background: rgba(74,222,128,.1); padding: 2px 6px; border-radius: 4px; }
.deal-cta { display: block; text-align: center; background: var(--fire); color: #fff; font-weight: 600; font-size: 14px; padding: 11px; border-radius: var(--radius); margin-top: 12px; transition: background var(--trans); text-decoration: none; }
.deal-cta:hover { background: var(--fire-dark); }
.deal-promo-badge { font-size: 12px; font-weight: 600; color: #FFB800; background: rgba(255,184,0,.1); border: 1px solid rgba(255,184,0,.25); padding: 4px 10px; border-radius: 6px; display: inline-block; margin-top: 2px; }

.view-all-wrap { text-align: center; margin-top: 40px; }
.no-results { text-align: center; color: var(--text-muted); padding: 60px 0; font-size: 16px; }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.step { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: rgba(240,78,35,.09); line-height: 1; position: absolute; top: 8px; right: 12px; }
.step-icon { font-size: 30px; margin-bottom: 10px; }
.step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text); letter-spacing: 1px; margin-bottom: 8px; }
.step p   { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---- CTA BANNER ---- */
.cta-banner { padding: 64px 0; background: linear-gradient(135deg, rgba(240,78,35,.09) 0%, rgba(30,99,204,.07) 100%); border-bottom: 1px solid var(--border); }
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--text); letter-spacing: 2px; margin-bottom: 10px; }
.cta-inner p  { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 48px 0 38px; }
.page-title { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--text); letter-spacing: 2px; margin-bottom: 8px; }
.page-sub   { color: var(--text-muted); font-size: 16px; }

/* ---- DEAL LANDING PAGE ---- */
.deal-landing { min-height: 60vh; display: flex; align-items: center; padding: 60px 0; }
.deal-landing-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; max-width: 600px; margin: 0 auto; width: 100%; box-shadow: 0 8px 40px rgba(0,0,0,.25); }
.deal-landing-img { background: var(--bg-3); height: 280px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.deal-landing-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 24px; }
.deal-landing-img .big-emoji { font-size: 80px; opacity: .2; }
.deal-landing-body { padding: 28px 32px 32px; }
.deal-landing-store { margin-bottom: 10px; }
.deal-landing-title { font-size: 20px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 16px; }
.deal-landing-price { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.deal-landing-orig  { font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.deal-landing-save  { font-size: 13px; font-weight: 600; color: #4ade80; background: rgba(74,222,128,.1); display: inline-block; padding: 3px 10px; border-radius: 4px; margin-bottom: 20px; }
.deal-landing-btn { display: block; width: 100%; text-align: center; background: var(--fire); color: #fff; text-decoration: none; font-weight: 700; font-size: 17px; padding: 16px; border-radius: var(--radius); transition: background var(--trans), transform var(--trans); box-shadow: 0 0 28px rgba(240,78,35,.3); }
.deal-landing-btn:hover { background: var(--fire-dark); transform: translateY(-1px); }
.deal-landing-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; font-family: 'DM Mono', monospace; }
.deal-gone { text-align: center; padding: 40px 20px; }
.deal-gone h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--text); margin-bottom: 10px; }
.deal-gone p  { color: var(--text-muted); margin-bottom: 24px; }

/* Subscribe/Save and Coupon notices */
.deal-type-notice { display: flex; align-items: flex-start; gap: 12px; border-radius: 10px; padding: 14px 16px; margin: 14px 0; }
.deal-type-notice.subscribe { background: rgba(30,99,204,.08); border: 1px solid rgba(30,99,204,.3); }
.deal-type-notice.coupon    { background: rgba(74,222,128,.07); border: 1px solid rgba(74,222,128,.25); }
.deal-type-notice.both      { background: rgba(255,184,0,.07);  border: 1px solid rgba(255,184,0,.25); }
.deal-type-icon { font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.deal-type-content strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.deal-type-content p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Promo code box */
.promo-box { background: rgba(255,184,0,.07); border: 2px dashed rgba(255,184,0,.4); border-radius: 10px; padding: 14px 16px; margin: 14px 0 18px; }
.promo-label { font-size: 12px; font-weight: 600; color: #FFB800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.promo-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.promo-code { font-family: 'DM Mono', monospace; font-size: 22px; font-weight: 600; color: #FFB800; letter-spacing: 3px; background: rgba(255,184,0,.1); padding: 8px 16px; border-radius: 8px; border: 1px solid rgba(255,184,0,.3); flex: 1; text-align: center; min-width: 120px; user-select: all; }
.promo-copy-btn { background: #FFB800; color: #000; border: none; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 8px; cursor: pointer; transition: background 0.2s, transform 0.2s; white-space: nowrap; }
.promo-copy-btn:hover { background: #e0a200; transform: translateY(-1px); }
.promo-copied { display: none; font-size: 13px; color: #4ade80; margin-top: 8px; font-weight: 600; }

/* ---- FILTERS ---- */
.deals-section { padding: 36px 0 60px; }
.filters-bar { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.search-wrap { position: relative; max-width: 460px; }
.search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 15px; pointer-events: none; }
.search-input { width: 100%; background: var(--bg-2); border: 1px solid var(--border); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 11px 14px 11px 40px; border-radius: var(--radius); outline: none; transition: border-color var(--trans); }
.search-input:focus { border-color: var(--fire); }
.search-input::placeholder { color: var(--text-muted); }
.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { background: var(--bg-2); border: 1px solid var(--border); color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 100px; cursor: pointer; transition: all var(--trans); }
.filter-btn:hover  { border-color: var(--fire); color: var(--text); }
.filter-btn.active { background: var(--fire); border-color: var(--fire); color: #fff; }

/* ---- PROSE PAGES ---- */
.prose-section { padding: 48px 0 80px; }
.prose-container { max-width: 760px; display: flex; flex-direction: column; gap: 20px; }
.prose-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px; }
.prose-card.highlight { border-color: rgba(240,78,35,.3); background: rgba(240,78,35,.04); }
.prose-card h2 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; color: var(--text); margin-bottom: 12px; }
.prose-card p  { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.prose-card p:last-child { margin-bottom: 0; }
.prose-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin: 12px 0; }
.prose-card li { font-size: 15px; color: var(--text-muted); padding-left: 20px; position: relative; }
.prose-card li::before { content: '→'; position: absolute; left: 0; color: var(--fire); }
.prose-card strong { color: var(--text); }
.prose-card a { color: var(--fire-light); }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-field label { display: block; font-size: 12px; font-family: 'DM Mono', monospace; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.form-field input, .form-field textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--border); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 11px 14px; border-radius: var(--radius); outline: none; transition: border-color var(--trans); resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--fire); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field textarea { min-height: 120px; }
.contact-submit { background: var(--fire); color: #fff; border: none; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px; padding: 13px 28px; border-radius: var(--radius); cursor: pointer; transition: background var(--trans); }
.contact-submit:hover { background: var(--fire-dark); }
.form-success { display: none; background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.3); border-radius: var(--radius); padding: 14px 18px; color: #4ade80; font-size: 14px; margin-top: 8px; }
.form-success.show { display: block; }

/* ---- FOOTER ---- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 48px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 42px; width: auto; margin-bottom: 10px; }
[data-theme="light"] .footer-logo { background: #0F0F0F; border-radius: 6px; padding: 3px 6px; }
.footer-slogan { display: block; font-size: 11px; color: var(--fire); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer-links, .footer-stores { display: flex; flex-direction: column; gap: 6px; }
.footer-links h3, .footer-stores h3 { font-size: 11px; font-family: 'DM Mono', monospace; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color var(--trans); }
.footer-links a:hover { color: var(--fire-light); }
.footer-stores span { font-size: 14px; color: var(--text-muted); display: block; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.footer-legal { font-size: 11px !important; opacity: .65; max-width: 760px; }

/* ---- ADMIN ---- */
.admin-body { background: #080808 !important; }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.admin-login-box { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 400px; text-align: center; }
.admin-login-mark { width: 52px; height: 52px; margin: 0 auto 12px; }
.admin-login-box h1 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--text); margin-bottom: 6px; }
.admin-login-box p  { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 230px; background: var(--bg-2); border-right: 1px solid var(--border); flex-shrink: 0; display: flex; flex-direction: column; }
.admin-sidebar-top { padding: 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.admin-sidebar-mark { width: 32px; height: 32px; flex-shrink: 0; }
.admin-sidebar-title { font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: var(--text); line-height: 1; display: block; }
.admin-sidebar-tag   { font-size: 9px; color: var(--fire); letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; }
.admin-sidebar nav { flex: 1; padding: 10px 0; display: flex; flex-direction: column; }
.admin-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: var(--text-muted); text-decoration: none; font-size: 14px; transition: all var(--trans); }
.admin-nav-link:hover  { color: var(--text); background: var(--bg-3); }
.admin-nav-link.active { color: var(--text); background: var(--bg-3); border-left: 3px solid var(--fire); padding-left: 17px; }
.admin-nav-link.danger { color: #f87171; margin-top: auto; }
.admin-main { flex: 1; padding: 32px; overflow-y: auto; }
.admin-header { margin-bottom: 24px; }
.admin-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--text); letter-spacing: 1px; }
.admin-header p  { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.admin-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.admin-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text); letter-spacing: 1px; margin-bottom: 18px; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.stat-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-card .num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--text); line-height: 1; }
.stat-card .lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-family: 'DM Mono', monospace; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.form-input, .form-select { width: 100%; background: var(--bg-3); border: 1px solid var(--border); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 11px 14px; border-radius: var(--radius); outline: none; transition: border-color var(--trans); }
.form-input:focus, .form-select:focus { border-color: var(--fire); }
.form-input::placeholder { color: #555; }
.form-select option { background: #1a1a1a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-hint { font-size: 11px; color: var(--text-muted); margin-top: 5px; font-family: 'DM Mono', monospace; }
.btn-admin { background: var(--fire); color: #fff; border: none; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: var(--radius); cursor: pointer; transition: background var(--trans); width: 100%; }
.btn-admin:hover { background: var(--fire-dark); }
.btn-fetch { background: var(--blue); color: #fff; border: none; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px; padding: 11px 16px; border-radius: var(--radius); cursor: pointer; transition: background var(--trans); white-space: nowrap; }
.btn-fetch:hover { background: var(--blue-dark); }
.btn-fetch:disabled { opacity: .5; cursor: not-allowed; }
.fetch-row { display: flex; gap: 8px; }
.fetch-row .form-input { flex: 1; }
.fetch-status { font-size: 12px; font-family: 'DM Mono', monospace; margin-top: 6px; min-height: 18px; }
.fetch-status.loading { color: var(--blue-light); }
.fetch-status.ok  { color: #4ade80; }
.fetch-status.err { color: #f87171; }
.btn-sm    { background: none; border: 1px solid var(--border); color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 12px; padding: 4px 9px; border-radius: 4px; cursor: pointer; transition: all var(--trans); }
.btn-sm:hover { border-color: var(--fire); color: var(--fire-light); }
.btn-sm-wa { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3); color: #25D366; font-family: 'DM Sans', sans-serif; font-size: 12px; padding: 4px 9px; border-radius: 4px; cursor: pointer; }
.btn-sm-wa:hover { background: rgba(37,211,102,.2); }
.btn-danger { background: none; border: 1px solid rgba(239,68,68,.3); color: #f87171; font-family: 'DM Sans', sans-serif; font-size: 12px; padding: 4px 9px; border-radius: 4px; cursor: pointer; }
.btn-danger:hover { background: rgba(239,68,68,.1); }
.success-box { background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.3); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 16px; display: none; }
.success-box.show { display: block; }
.success-box h4 { color: #4ade80; font-size: 14px; margin-bottom: 8px; }
.success-box code { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--text); background: var(--bg-3); padding: 8px 12px; border-radius: 4px; display: block; word-break: break-all; margin-bottom: 12px; }
.copy-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-copy    { background: var(--bg-3); border: 1px solid var(--border); color: var(--text); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px; padding: 9px 16px; border-radius: var(--radius); cursor: pointer; transition: all var(--trans); }
.btn-copy:hover { border-color: var(--fire); color: var(--fire-light); }
.btn-copy-wa { background: #25D366; border: none; color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: var(--radius); cursor: pointer; transition: background var(--trans); }
.btn-copy-wa:hover { background: #1da851; }
.deals-table { width: 100%; border-collapse: collapse; }
.deals-table th { font-size: 10px; font-family: 'DM Mono', monospace; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.deals-table td { padding: 11px 12px; border-bottom: 1px solid var(--bg-3); font-size: 13px; color: var(--text-muted); vertical-align: middle; }
.deals-table tr:last-child td { border-bottom: none; }
.deals-table tr:hover td { background: rgba(255,255,255,.02); }
.td-title { color: var(--text); max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-empty { text-align: center; color: var(--text-muted); padding: 40px; font-size: 14px; }
.img-preview { display: none; margin-bottom: 16px; }
.img-preview img { max-height: 110px; max-width: 180px; object-fit: contain; background: var(--bg-3); padding: 8px; border-radius: var(--radius); border: 1px solid var(--border); }
.click-count { display: inline-block; background: rgba(30,99,204,.15); color: var(--blue-light); font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 100px; border: 1px solid rgba(30,99,204,.3); white-space: nowrap; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .steps-grid    { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 28px; }
  .admin-sidebar { display: none; }
  .admin-main    { padding: 20px; }
  .stats-row     { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .main-nav        { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero            { padding: 48px 0; }
  .hero-title      { font-size: 52px; }
  .deals-grid      { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); }
  .form-row        { grid-template-columns: 1fr; }
  .fetch-row       { flex-direction: column; }
  .whatsapp-inner  { flex-direction: column; align-items: flex-start; }
  .deal-landing-body { padding: 20px 20px 24px; }
}
@media (max-width: 480px) {
  .hero-stats  { gap: 16px; }
  .stores-bar .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .logo-slogan  { display: none; }
  .wa-label     { display: none; }
  .wa-float     { padding: 12px; border-radius: 50%; }
  .stats-row    { grid-template-columns: 1fr; }
  .copy-btns    { flex-direction: column; }
}

/* ---- SVG LOGO STYLES ---- */
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; display: block; }
.logo-text-wrap { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--text); line-height: 1; white-space: nowrap; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.footer-logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--text); display: block; line-height: 1; }
/* ============================================
   PASTE THIS AT THE VERY BOTTOM OF style.css
   Fixes: price first digit clipped on deal cards
   ============================================ */

/* Override any overflow hidden on deal cards */
.deal-card,
.deal-body,
.deal-price-row {
  overflow: visible !important;
}

.deal-price {
  padding-left: 2px !important;
  overflow: visible !important;
  display: inline-block !important;
}
/* ================================================
   JEFF'S DAILY DEALS — CSS Additions
   Paste at the very bottom of style.css
   ================================================ */

/* Price display fix — proper approach, no overflow hiding */
.deal-body {
  padding: 16px 16px 16px 18px;
}
.deal-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
  position: relative;
  left: 0;
}

/* Promo code box — fix width so long codes don't overflow */
.promo-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-code {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  color: #FFB800;
  letter-spacing: 2px;
  background: rgba(255,184,0,.1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,184,0,.3);
  flex: 1;
  min-width: 0;
  word-break: break-all;
  text-align: center;
}
.promo-copy-btn {
  flex-shrink: 0;
  background: #FFB800;
  color: #000;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.promo-copy-btn:hover { background: #e0a200; }

/* Price appears in cart deal type notice */
.deal-type-notice.cart {
  background: rgba(74,222,128,.07);
  border: 1px solid rgba(74,222,128,.25);
}
