/* ============================================
   GETLOW.CO.UK - MAIN STYLESHEET
   ============================================ */

/* ---- THEME VARIABLES ---- */
:root {
  --primary-yellow: #FFC107;
  --gold-deep: #E5AD06;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* LIGHT THEME (default) */
[data-theme="light"] {
  --text-main: #333333;
  --text-muted: #666666;
  --heading: #1A1A1A;
  --price: #1A1A1A;
  --bg-page: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-hero: linear-gradient(180deg, #ffffff 0%, #F8F9FA 100%);
  --bg-nav: rgba(255, 255, 255, 0.85);
  --bg-search: #FFFFFF;
  --bg-deal-img: #F4F5F7;
  --bg-card-2: #F4F5F7;
  --bg-footer: #FFFFFF;
  --border-color: #EAEAEA;
  --nav-link: #333333;
  --nav-cta-bg: #1A1A1A;
  --nav-cta-text: #FFFFFF;
  --footer-link: #1A1A1A;
  --save-green: #138A43;
  --save-badge-bg: #22A65A;
  --save-badge-text: #063019;
  --hero-glow: rgba(255,193,7,0.07);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
}

/* DARK THEME */
[data-theme="dark"] {
  --text-main: #F0F0F0;
  --text-muted: #999999;
  --heading: #FFFFFF;
  --price: #FFC107;
  --bg-page: #111111;
  --bg-card: #1E1E1E;
  --bg-hero: linear-gradient(180deg, #000000 0%, #111111 100%);
  --bg-nav: rgba(0, 0, 0, 0.95);
  --bg-search: #1E1E1E;
  --bg-deal-img: #2A2A2A;
  --bg-card-2: #242424;
  --bg-footer: #000000;
  --border-color: #2A2A2A;
  --nav-link: #FFFFFF;
  --nav-cta-bg: #FFC107;
  --nav-cta-text: #111111;
  --footer-link: #FFC107;
  --save-green: #2ECC71;
  --save-badge-bg: #2ECC71;
  --save-badge-text: #063019;
  --hero-glow: rgba(255,193,7,0.10);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.55);
}

/* ---- RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Google Sans Text','Google Sans','Product Sans','DM Sans', Helvetica, Arial, sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ---- NAVIGATION ---- */
nav {
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 5%;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-logo { line-height: 0; }
.nav-logo img { height: 52px; width: auto; display: block; }

/* theme-aware logo: light variant on light bg, dark variant on dark bg */
.nav-logo .logo-dark { display: none; }
[data-theme="dark"] .nav-logo .logo-light { display: none; }
[data-theme="dark"] .nav-logo .logo-dark { display: block; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--nav-link);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary-yellow); }
.nav-links a.active { color: var(--primary-yellow); font-weight: 700; }

.nav-cta {
  background: var(--nav-cta-bg);
  color: var(--nav-cta-text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { transform: translateY(-2px); }

/* ---- THEME TOGGLE ---- */
.theme-toggle { background: transparent; border: 1px solid var(--border-color); border-radius: 50px; width: 64px; height: 32px; cursor: pointer; position: relative; transition: border-color 0.3s ease; flex-shrink: 0; padding: 0; }
.theme-toggle:hover { border-color: var(--primary-yellow); }
.theme-toggle .tt-ico { position: absolute; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--nav-link); opacity: .5; pointer-events: none; }
.theme-toggle .tt-sun { left: 8px; }
.theme-toggle .tt-moon { right: 8px; }
.theme-toggle .knob { position: absolute; top: 2px; left: 2px; width: 26px; height: 26px; border-radius: 50%; background: var(--primary-yellow, #FFC107); color: #141414; box-shadow: 0 1px 6px rgba(0,0,0,.35); display: flex; align-items: center; justify-content: center; transition: transform 0.3s cubic-bezier(.4,1.4,.6,1); }
.theme-toggle .knob svg { width: 15px; height: 15px; }
.theme-toggle .k-moon { display: none; }
[data-theme="dark"] .theme-toggle .knob { transform: translateX(32px); }
[data-theme="dark"] .theme-toggle .k-sun { display: none; }
[data-theme="dark"] .theme-toggle .k-moon { display: block; }

/* ---- HERO ---- */
.hero {
  position: relative;
  text-align: center;
  padding: 70px 20px 44px;
  background: var(--bg-hero);
  transition: background 0.3s ease;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px; left: 50%;
  width: 900px; height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--hero-glow), transparent 75%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-yellow);
  background: rgba(255,193,7,0.08);
  border: 1px solid rgba(255,193,7,0.28);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: var(--heading);
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--primary-yellow); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.5;
}

/* legacy: hide the old giant logo if still present */
.hero-logo { display: none; }

/* ---- SEARCH BAR ---- */
.search-wrap {
  display: flex;
  max-width: 650px;
  margin: 0 auto 30px;
  border-radius: 50px;
  background: var(--bg-search);
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 6px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.3s ease;
  position: relative;
}

.search-wrap:hover { box-shadow: 0 1px 10px rgba(0,0,0,0.16); }

.search-wrap:focus-within {
  border-color: var(--primary-yellow);
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
}

.search-wrap input {
  flex: 1;
  padding: 18px 25px;
  font-size: 1.1rem;
  border: none;
  outline: none;
  background: transparent;
  color: var(--heading);
  border-radius: 50px 0 0 50px;
  font-family: 'Google Sans Text','Google Sans','Product Sans','DM Sans', Helvetica, Arial, sans-serif;
}

.search-wrap input::placeholder { color: var(--text-muted); }

.search-wrap button[type="submit"] {
  background: var(--primary-yellow);
  color: #1A1A1A;
  font-weight: 800;
  font-size: 1rem;
  padding: 0 35px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 0 45px 45px 0;
  font-family: 'Google Sans Text','Google Sans','Product Sans','DM Sans', Helvetica, Arial, sans-serif;
}

.search-wrap button[type="submit"]:hover { background: var(--gold-deep); }

/* clear (✕) button — appears when input has text */
.search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: auto 4px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.search-clear:hover { background: var(--bg-deal-img); color: var(--heading); }
.search-wrap.has-text .search-clear { display: inline-flex; }

/* ---- MOBILE PHONES BRAND STRIP (below nav) ---- */
.brandbar {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.brandbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 5%;
}
/* every item on the strip is an outlined button with a faint border */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 7px 16px;
  border: 1px solid var(--border-color);
  background: transparent;
  border-radius: 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.brand:hover { color: var(--primary-yellow); border-color: var(--primary-yellow); }
.brand svg { width: 17px; height: 17px; flex-shrink: 0; }
.brand-all { font-weight: 700; color: var(--heading); }
.brand .wm-samsung { font-weight: 800; letter-spacing: 0.5px; color: #1428A0; transition: color 0.2s ease; }
[data-theme="dark"] .brand .wm-samsung { color: #6c84e8; }
.brand:hover .wm-samsung,
[data-theme="dark"] .brand:hover .wm-samsung { color: var(--primary-yellow); }

/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 99;
  overflow: hidden;
  display: none;
}

.search-suggestions.active { display: block; }

.suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
}

.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: var(--bg-deal-img); }
.suggestion-item span { color: var(--text-muted); font-size: 0.85rem; }

/* ---- CATEGORIES ---- */
.cats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cat {
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.cat:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* ---- FLAT ICONS (replace emoji) ---- */
.cat svg { width: 17px; height: 17px; flex-shrink: 0; }
.hero-eyebrow svg { width: 15px; height: 15px; }
.section-title svg { width: 22px; height: 22px; color: var(--primary-yellow); }
.search-wrap button svg { width: 18px; height: 18px; vertical-align: -4px; margin-right: 6px; }
.cat svg, .section-title svg, .search-wrap button svg, .hero-eyebrow svg { stroke-width: 2; }

/* ---- STATS ---- */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 36px 5% 8px;
  max-width: 980px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.stat-num { font-size: 1.9rem; font-weight: 900; color: var(--price); letter-spacing: -0.5px; }
.stat-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ---- SECTIONS ---- */
.section { max-width: 1200px; margin: 0 auto; padding: 3rem 5% 3.5rem; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--heading);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-link { color: var(--primary-yellow); font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.section-link:hover { text-decoration: underline; }

/* ---- DEAL CARDS ---- */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.deal-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.deal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--primary-yellow);
}

/* discount badge (top-left) */
.deal-disc {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  background: var(--save-badge-bg);
  color: var(--save-badge-text);
  padding: 5px 11px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(46,204,113,0.32);
}

.deal-img {
  position: relative;
  width: 100%;
  height: 190px;
  background: linear-gradient(180deg, #ffffff, #f1f1f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  padding: 22px;
  overflow: hidden;
}

.deal-img img { max-width: 100%; max-height: 100%; object-fit: contain; }

.deal-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }

.deal-retailer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  background: var(--bg-card-2);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 4px 11px 4px 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.deal-retailer .ico {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary-yellow);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.32;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.64em;
}

.deal-foot { margin-top: auto; }
.deal-prices { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.deal-price { font-size: 1.65rem; font-weight: 900; color: var(--price); letter-spacing: -0.5px; }
.deal-was { font-size: 0.92rem; color: var(--text-muted); text-decoration: line-through; }

.deal-save { margin-top: 8px; display: inline-block; font-size: 0.82rem; font-weight: 800; color: var(--save-green); }

.deal-btn {
  margin-top: 14px;
  text-align: center;
  background: rgba(255,193,7,0.10);
  border: 1px solid rgba(255,193,7,0.35);
  color: var(--primary-yellow);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 11px;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
}
.deal-card:hover .deal-btn { background: var(--primary-yellow); color: #111; }

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 5%;
}

.page-header h1 { font-size: 2rem; font-weight: 800; color: var(--heading); margin-bottom: 0.5rem; }
.page-header p { color: var(--text-muted); font-size: 0.95rem; }

/* ---- CONTENT (inner pages) ---- */
.content { max-width: 860px; margin: 0 auto; padding: 3rem 5%; }
.content h2 { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin: 2rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-yellow); display: inline-block; }
.content p { color: var(--text-main); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.content ul li { color: var(--text-main); line-height: 1.8; font-size: 0.95rem; margin-bottom: 0.25rem; }
.content a { color: var(--primary-yellow); text-decoration: none; font-weight: 600; }

.highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-yellow);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p { margin: 0; }

/* ---- SEARCH RESULTS PAGE ---- */
.results-header {
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card);
}

.results-header h2 { font-size: 1.2rem; font-weight: 700; color: var(--heading); }
.results-header p { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }

.results-search-wrap {
  display: flex;
  max-width: 500px;
  margin: 1rem 0 0;
  border-radius: 50px;
  background: var(--bg-search);
  border: 2px solid var(--primary-yellow);
  overflow: hidden;
}

.results-search-wrap input {
  flex: 1;
  padding: 12px 20px;
  font-size: 0.95rem;
  border: none;
  outline: none;
  background: transparent;
  color: var(--heading);
  font-family: 'Google Sans Text','Google Sans','Product Sans','DM Sans', Helvetica, Arial, sans-serif;
}

.results-search-wrap button {
  background: var(--primary-yellow);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 20px;
  border: none;
  cursor: pointer;
  font-family: 'Google Sans Text','Google Sans','Product Sans','DM Sans', Helvetica, Arial, sans-serif;
}

.results-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 2rem 5%; }

.filters { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.5rem; height: fit-content; }
.filters h3 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 1.25rem; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group input[type="range"] { width: 100%; accent-color: var(--primary-yellow); }
.filter-group select { width: 100%; padding: 8px 12px; background: var(--bg-page); color: var(--text-main); border: 1px solid var(--border-color); border-radius: var(--radius-sm); font-family: 'Google Sans Text','Google Sans','Product Sans','DM Sans', Helvetica, Arial, sans-serif; font-size: 0.9rem; outline: none; }
.filter-price-display { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

.results-count { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 860px; margin: 0 auto; padding: 3rem 5%; }
.contact-info h2, .contact-form h2 { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-yellow); display: inline-block; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--heading); margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.contact-item a { color: var(--primary-yellow); text-decoration: none; font-weight: 600; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--heading); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; font-size: 0.95rem; font-family: 'Google Sans Text','Google Sans','Product Sans','DM Sans', Helvetica, Arial, sans-serif; background: var(--bg-card); color: var(--text-main); border: 1px solid var(--border-color); border-radius: var(--radius-md); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-yellow); }
.form-group textarea { height: 130px; resize: vertical; }
.submit-btn { width: 100%; padding: 14px; background: var(--primary-yellow); color: #1A1A1A; font-size: 1rem; font-weight: 800; border: none; border-radius: var(--radius-md); cursor: pointer; transition: transform 0.2s; font-family: 'Google Sans Text','Google Sans','Product Sans','DM Sans', Helvetica, Arial, sans-serif; }
.submit-btn:hover { transform: translateY(-2px); }

/* ---- ABOUT VALUES ---- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 2rem 0; }
.value-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; transition: border-color 0.2s; }
.value-card:hover { border-color: var(--primary-yellow); }
.value-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.mission-box { background: var(--primary-yellow); border-radius: var(--radius-lg); padding: 2.5rem; margin: 2rem 0; text-align: center; }
.mission-box h2 { font-size: 1.5rem; font-weight: 800; color: #1A1A1A; margin-bottom: 0.75rem; }
.mission-box p { color: #1A1A1A; font-size: 1.05rem; line-height: 1.7; margin: 0; }

/* ---- ALERTS / MESSAGES ---- */
.alert { padding: 1rem 1.5rem; border-radius: var(--radius-md); margin-bottom: 1rem; font-size: 0.95rem; font-weight: 500; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

/* ---- NO RESULTS ---- */
.no-results { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.no-results h3 { font-size: 1.5rem; font-weight: 700; color: var(--heading); margin-bottom: 0.5rem; }
.no-results p { font-size: 0.95rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg-footer);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 5%;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
  font-weight: 500;
  transition: background 0.3s ease;
}

footer a { color: var(--footer-link); text-decoration: none; font-weight: 600; }
footer a:hover { color: var(--primary-yellow); }

/* ---- LOADING SPINNER ---- */
.spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid var(--border-color); border-top: 3px solid var(--primary-yellow); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: 1fr; gap: 15px; padding: 20px 5%; }
  .search-wrap { flex-direction: column; border-radius: var(--radius-md); }
  .search-wrap input { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .search-wrap button { border-radius: 0 0 var(--radius-md) var(--radius-md); padding: 15px; }
  .results-layout { grid-template-columns: 1fr; }
  .filters { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .deals-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
}
