/* =============================================================================
   scuk.css — SpeedCamerasUK.com site-wide stylesheet
   Built: 2026 | Font: Inter (Google Fonts)
   Replaces: location.css (for redesigned pages)
   ============================================================================= */

/* --- GOOGLE FONT IMPORT ----------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS CUSTOM PROPERTIES (design tokens) ---------------------------------- */
:root {
  /* Brand colours */
  --blue-primary:   #0099FF;
  --blue-dark:      #0077CC;
  --blue-light:     #e8f0fb;
  --blue-mid:       #2d6bbf;

  /* Neutrals */
  --grey-900:  #1a1a1a;
  --grey-800:  #2d2d2d;
  --grey-700:  #444444;
  --grey-600:  #666666;
  --grey-400:  #999999;
  --grey-200:  #e8e8e8;
  --grey-100:  #f5f5f5;
  --white:     #ffffff;

  /* Semantic */
  --text-primary:   #1a1a1a;
  --text-secondary: #555555;
  --text-light:     #777777;
  --border:         #e0e0e0;
  --bg-page:        #f8f8f8;

  /* Accent colours */
  --amber:          #e8a000;
  --amber-bg:       #fff8e6;
  --amber-border:   #f0c040;
  --green:          #2e7d32;
  --green-bg:       #f1f8f1;
  --detector-bg:    #eef4ff;
  --detector-border:#c5d8f5;
  --legal-bg:       #f0f7f0;
  --legal-border:   #b8d8b8;

  /* Typography */
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.8125rem;  /* 13px */
  --text-base:  0.9375rem;  /* 15px */
  --text-md:    1.0625rem;  /* 17px */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   1.875rem;   /* 30px */

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  /* Layout */
  --max-width: 1100px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow:    0 2px 8px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
}

/* --- RESET & BASE ----------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--blue-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

/* --- LAYOUT WRAPPER --------------------------------------------------------- */
#scuk-wrap {
  width: 100%;
  background: var(--white);
}

/* --- TOP BAR (AdSense banner) ----------------------------------------------- */
#scuk-topbar {
  background: var(--white);
  text-align: center;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
}

/* --- HEADER ----------------------------------------------------------------- */
#scuk-header-wrap {
  background: #0099FF;
  width: 100%;
}

#scuk-header {
  background: #0099FF;
  padding: var(--space-4) 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#scuk-logo img {
  width: 160px;
  height: auto;
}

#scuk-leaderboard {
  text-align: center;
}

/* --- NAVIGATION ------------------------------------------------------------- */
#scuk-nav {
  width: 100%;
  background: #0066CC;
  position: relative;
  z-index: 100;
}

/* Desktop nav */
#scuk-navmenu {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

#scuk-navmenu > ul {
  display: flex;
  width: 100%;
}

#scuk-navmenu > ul > li {
  position: relative;
}

#scuk-navmenu > ul > li > a {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3) var(--space-4);
  color: #dddddd;
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  border-right: 1px solid #3a3a3a;
  transition: background 0.15s, color 0.15s;
}

#scuk-navmenu > ul > li > a:hover,
#scuk-navmenu > ul > li:hover > a {
  background: #0044BB;
  color: var(--white);
  text-decoration: none;
}

#scuk-navmenu > ul > li > a.nav-active {
  background: var(--blue-primary);
  color: var(--white);
}

/* Dropdown arrow */
#scuk-navmenu > ul > li > a.has-drop::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.7;
  margin-left: var(--space-1);
}

/* Dropdown menu */
#scuk-navmenu > ul > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0055AA;
  min-width: 220px;
  border-top: 3px solid var(--blue-primary);
  box-shadow: var(--shadow-md);
  z-index: 200;
}

#scuk-navmenu > ul > li:hover > ul {
  display: block;
}

#scuk-navmenu > ul > li > ul > li > a {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: #cccccc;
  font-size: var(--text-sm);
  border-bottom: 1px solid #333;
  transition: background 0.12s, color 0.12s;
}

#scuk-navmenu > ul > li > ul > li > a:hover {
  background: var(--blue-primary);
  color: var(--white);
  text-decoration: none;
}

/* Hamburger button — hidden on desktop */
#scuk-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-3) var(--space-4);
  margin-left: auto;
}

#scuk-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.25s;
}

/* Hamburger active state */
#scuk-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#scuk-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
#scuk-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer — hidden by default */
#scuk-mobilenav {
  display: none;
  background: var(--grey-900);
  border-top: 3px solid var(--blue-primary);
}

#scuk-mobilenav ul li a {
  display: block;
  padding: var(--space-3) var(--space-5);
  color: #cccccc;
  font-size: var(--text-base);
  border-bottom: 1px solid #333;
}

#scuk-mobilenav ul li a:hover {
  background: var(--blue-primary);
  color: var(--white);
  text-decoration: none;
}

#scuk-mobilenav ul li.mob-section > a {
  color: var(--white);
  font-weight: 600;
  background: #333;
}

#scuk-mobilenav.is-open {
  display: block;
}

/* --- PAGE BODY -------------------------------------------------------------- */
#scuk-page {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  padding: 0 var(--space-6);
}

/* --- MAIN CONTENT COLUMN ---------------------------------------------------- */
#scuk-main {
  padding: var(--space-6) var(--space-8) var(--space-8);
  max-width: 100%;
}

/* Breadcrumb */
.scuk-breadcrumb {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.scuk-breadcrumb a {
  color: #0099FF;
  font-weight: 600;
  text-decoration: none;
}

.scuk-breadcrumb a:hover {
  text-decoration: underline;
  color: #0077CC;
}

.scuk-breadcrumb span {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0 4px;
}

/* Page H1 */
.scuk-h1 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: var(--space-5);
}

/* Hero section: intro text + icons */
.scuk-hero {
  margin-bottom: var(--space-6);
  overflow: hidden;
}

.scuk-hero-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
}

.scuk-hero-text p + p {
  margin-top: var(--space-3);
}

/* --- FACT CARDS ------------------------------------------------------------- */
.scuk-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: var(--space-6);
  border: 1px solid #d0daf8;
  border-radius: var(--radius-lg);
  background: #eef2ff;
  overflow: hidden;
}

.scuk-fact-card {
  background: #eef2ff;
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-right: 1px solid #d0daf8;
  border-bottom: 1px solid #d0daf8;
}

.scuk-fact-card:nth-child(3),
.scuk-fact-card:nth-child(6) {
  border-right: none;
}

.scuk-fact-card:nth-child(4),
.scuk-fact-card:nth-child(5),
.scuk-fact-card:nth-child(6) {
  border-bottom: none;
}

.scuk-fact-icon {
  width: 46px;
  height: 46px;
  background: #1e3a7b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scuk-fact-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.scuk-fact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.scuk-fact-value {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-primary);
}

.scuk-fact-value a {
  font-weight: 600;
}

/* --- CALLOUT BOX ------------------------------------------------------------ */
.scuk-callout {
  background: var(--amber-bg);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
}

.scuk-callout-title {
  font-size: var(--text-md);
  font-weight: 600;
  color: #7a4f00;
  margin-bottom: var(--space-2);
}

.scuk-callout p {
  font-size: var(--text-base);
  color: #7a5c00;
  line-height: 1.6;
}

.scuk-callout a {
  color: var(--blue-primary);
  font-weight: 500;
}

/* --- SECTION HEADINGS ------------------------------------------------------- */
.scuk-section-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--blue-light);
}

/* --- BODY TEXT -------------------------------------------------------------- */
.scuk-body-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.scuk-body-text p + p {
  margin-top: var(--space-3);
}

.scuk-body-text a {
  color: var(--blue-primary);
}

/* Camera type description block (Gatso, SPECS etc.) */
.scuk-camera-type {
  background: var(--grey-100);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
  overflow: hidden;
}

.scuk-camera-type h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.scuk-camera-type p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.scuk-camera-type img {
  border-radius: var(--radius-sm);
}

/* --- ADSENSE UNITS ---------------------------------------------------------- */
.scuk-ad-inline {
  margin: var(--space-6) 0;
  text-align: center;
}

.scuk-ad-inline ins {
  display: block;
  margin: 0 auto;
}

/* --- DETECTOR SECTION ------------------------------------------------------- */
.scuk-detector {
  background: var(--detector-bg);
  border: 1px solid var(--detector-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.scuk-detector-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: var(--space-3);
}

.scuk-detector-intro {
  font-size: var(--text-base);
  color: #2a4a70;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

/* Product card */
.scuk-product {
  background: var(--white);
  border: 1px solid var(--detector-border);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-5);
  align-items: start;
  box-shadow: var(--shadow-sm);
}

.scuk-product-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--grey-100);
}

.scuk-product-img img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  padding: var(--space-2);
  display: block;
  min-height: 100px;
  width: 100%;
  max-width: 200px;
  height: auto;
}

.scuk-product-img-placeholder {
  width: 120px;
  height: 120px;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: var(--radius-sm);
}

.scuk-product-name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: var(--space-1);
}

.scuk-product-price {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--green);
  margin-bottom: var(--space-3);
}

.scuk-product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-1) var(--space-5);
  margin-bottom: var(--space-4);
  list-style: none;
}

.scuk-product-features li {
  font-size: var(--text-base);
  color: var(--text-secondary);
  padding: var(--space-1) 0;
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
}

.scuk-product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.scuk-product-cta {
  display: inline-block;
  background: var(--blue-primary);
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.scuk-product-cta:hover {
  background: var(--blue-dark);
  color: var(--white);
  text-decoration: none;
}

.scuk-detector-footer {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: #4a6a90;
  line-height: 1.6;
}

.scuk-detector-footer a {
  color: var(--blue-primary);
}

/* --- LEGAL SECTION ---------------------------------------------------------- */
.scuk-legal {
  background: var(--legal-bg);
  border: 1px solid var(--legal-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.scuk-legal-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #1a4a1a;
  margin-bottom: var(--space-2);
}

.scuk-legal-intro {
  font-size: var(--text-md);
  color: #2a4a2a;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.scuk-legal-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.scuk-legal-link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--white);
  border: 1px solid var(--legal-border);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  transition: box-shadow 0.15s, border-color 0.15s;
}

.scuk-legal-link:hover {
  box-shadow: var(--shadow);
  border-color: #6a9a6a;
  text-decoration: none;
}

.scuk-legal-link-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.scuk-legal-link-text strong {
  display: block;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 2px;
}

.scuk-legal-link-text span {
  font-size: var(--text-base);
  color: var(--text-light);
  line-height: 1.4;
}

/* --- UPDATE SECTION --------------------------------------------------------- */
.scuk-update {
  border-top: 1px solid var(--border);
  padding-top: var(--space-5);
  margin-bottom: var(--space-6);
}

.scuk-update-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.scuk-update-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.scuk-update-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #0099FF;
  border: 1px solid #0077CC;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-base);
  color: var(--white);
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}

.scuk-update-btn:hover {
  background: #0077CC;
  border-color: #0055AA;
  color: var(--white);
  text-decoration: none;
}

/* --- RELATED / LEARN MORE LINKS --------------------------------------------- */
.scuk-related {
  margin-bottom: var(--space-6);
  background: #fffbf0;
  border: 1px solid #ffe082;
  border-top: 4px solid #FFB800;
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

.scuk-related-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.scuk-related-list a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  color: var(--blue-primary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.scuk-related-list a::before {
  content: '→';
  color: var(--grey-400);
  flex-shrink: 0;
}

.scuk-related-list a:hover {
  color: var(--blue-dark);
}

/* YouTube embed */
.scuk-video {
  margin-bottom: var(--space-6);
}

.scuk-video iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border: 0;
  border-radius: var(--radius);
}

/* Social share */
.scuk-share {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  color: var(--text-light);
}

.scuk-share a {
  color: var(--blue-primary);
  font-weight: 500;
}

/* --- FOOTER ----------------------------------------------------------------- */
#scuk-footer {
  background: var(--grey-900);
  color: #aaaaaa;
  margin-top: var(--space-8);
  border-top: 3px solid #0099FF;
}

.scuk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-6) var(--space-8);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.scuk-footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.scuk-footer-col ul li {
  margin-bottom: var(--space-2);
}

.scuk-footer-col ul li a {
  font-size: var(--text-sm);
  color: #999999;
  transition: color 0.12s;
}

.scuk-footer-col ul li a:hover {
  color: var(--white);
  text-decoration: none;
}

/* Social icons row */
.scuk-footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.scuk-footer-social a img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.12s;
}

.scuk-footer-social a:hover img {
  opacity: 1;
}

/* Footer copyright bar */
.scuk-footer-copy {
  background: #111111;
  border-top: 1px solid #333;
  text-align: center;
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-xs);
  color: #666666;
}

.scuk-footer-copy a {
  color: #888888;
}

.scuk-footer-copy a:hover {
  color: var(--white);
}

/* --- UTILITY CLASSES -------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.scuk-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-6) 0;
}

/* --- RESPONSIVE: TABLET (max 900px) ---------------------------------------- */
@media (max-width: 900px) {

  /* Header */
  #scuk-header {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    text-align: center;
  }

  #scuk-logo {
    text-align: center;
  }

  /* Nav — hide desktop, show hamburger */
  #scuk-navmenu {
    display: none;
  }

  #scuk-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  #scuk-nav {
    display: flex;
    align-items: center;
    padding: 0 var(--space-4);
  }

  /* Fact cards: 2 columns on tablet */
  .scuk-facts {
    grid-template-columns: repeat(2, 1fr);
  }


  /* Footer: 2 columns */
  .scuk-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  /* Legal links: 1 column */
  .scuk-legal-links {
    grid-template-columns: 1fr;
  }

  /* Product card: stack */
  .scuk-product {
    grid-template-columns: 1fr;
  }

  .scuk-product-img img,
  .scuk-product-img-placeholder {
    width: 100px;
    height: 100px;
  }
}

/* --- RESPONSIVE: MOBILE (max 600px) ---------------------------------------- */
@media (max-width: 600px) {

  #scuk-main {
    padding: var(--space-4);
  }

  .scuk-h1 {
    font-size: var(--text-xl);
  }

  /* Fact cards: 1 column on small phones */
  .scuk-facts {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer: 1 column */
  .scuk-footer-inner {
    grid-template-columns: 1fr;
    padding: var(--space-6) var(--space-4);
  }

  .scuk-update-links {
    flex-direction: column;
  }

  .scuk-update-btn {
    width: 100%;
    justify-content: center;
  }

  /* Video responsive */
  .scuk-video iframe {
    height: 200px;
  }
}

/* --- NEARBY CAMERAS GRID ---------------------------------------------------- */
.scuk-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.scuk-nearby-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.scuk-nearby-card:hover {
  border-color: #0099FF;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.scuk-nearby-camera {
  font-size: var(--text-base);
  font-weight: 600;
  color: #0099FF;
}

.scuk-nearby-road {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 500;
}

.scuk-nearby-meta {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-top: var(--space-1);
}

.scuk-nearby-meta span {
  background: var(--grey-100);
  padding: 2px 8px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .scuk-nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .scuk-nearby-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .scuk-product {
    grid-template-columns: 1fr;
  }
  .scuk-product-features {
    grid-template-columns: 1fr;
  }
  .scuk-product-img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .scuk-product-img img {
    width: 100%;
    height: auto;
  }
}

/* Hide leaderboard ad on mobile — not a mobile format */
@media (max-width: 768px) {
  #scuk-leaderboard {
    display: none;
  }
  #scuk-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .scuk-desktop-only {
    display: none !important;
  }
}
