/* BorderCityDeals orange/white theme. Scoped under body.site-bcd so the
   shared legacy stylesheet (style.css) and the BajanRandomSell (brs) site
   are unaffected. Loaded after style.css so specificity (2 classes) wins
   over style.css's single-class !important rules without extra hacks. */

/* Custom properties also declared on html.site-bcd (not just body) because
   CSS variables only inherit to descendants — html is body's ANCESTOR, so
   the ::-webkit-scrollbar rules below (which must target html, not body,
   to actually own the viewport scrollbar) couldn't see var(--bcd-primary)
   at all otherwise and silently fell back to the browser's default gray. */
html.site-bcd,
body.site-bcd {
  --bcd-primary: #ff7a1a;
  --bcd-primary-dark: #d9600a;
  --bcd-ink: #1a1a1a;
  --bcd-muted: #6b6b6b;
  --bcd-border: #f0e2d6;
}

body.site-bcd {
  background: #fff !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}

/* ---- Accessibility: visible keyboard focus on every interactive element.
   Nothing in the shared legacy CSS defines :focus-visible at all, so
   keyboard users previously had no reliable focus indicator anywhere. ---- */
body.site-bcd a:focus-visible,
body.site-bcd button:focus-visible,
body.site-bcd input:focus-visible,
body.site-bcd select:focus-visible,
body.site-bcd textarea:focus-visible,
body.site-bcd [tabindex]:focus-visible {
  outline: 3px solid var(--bcd-primary) !important;
  outline-offset: 2px !important;
}

/* Softer, slimmer type throughout — legacy templates lean on 600-800 weight
   headings; bring everything down a notch and drop the heavy letter-spacing. */
body.site-bcd h1, body.site-bcd h2, body.site-bcd h3,
body.site-bcd h4, body.site-bcd h5, body.site-bcd h6,
body.site-bcd .uk-modal-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600 !important;
  letter-spacing: normal !important;
}
body.site-bcd p, body.site-bcd li, body.site-bcd label {
  font-weight: 400;
}

body.site-bcd .workingbtns,
body.site-bcd .workingbtns-alt,
body.site-bcd .postedtag,
body.site-bcd .canvas-nav-header {
  background: var(--bcd-primary) !important;
  color: #fff !important;
  font-weight: 500 !important;
}
body.site-bcd .workingbtns:hover,
body.site-bcd .workingbtns-alt:hover {
  background: var(--bcd-primary-dark) !important;
}
body.site-bcd .header-color { background: #ffffff !important; box-shadow: 0 2px 10px rgba(0,0,0,.08) !important; }
body.site-bcd .headerlinks {
  color: var(--bcd-ink) !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  position: relative;
  display: inline-block;
  padding-bottom: 6px !important;
}
body.site-bcd .headerlinks::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--bcd-primary);
  border-radius: 2px;
  transition: width .18s ease;
}
body.site-bcd .headerlinks:hover { color: var(--bcd-primary) !important; }
body.site-bcd .headerlinks:hover::after { width: 100%; }
body.site-bcd .bcd-navlink { font-size: 13.5px !important; }

/* ---- Hamburger menu trigger: white card, orange icon ---- */
body.site-bcd .bcd-hamburger-btn {
  background: #fff !important;
  color: var(--bcd-primary) !important;
  border: 1px solid var(--bcd-border) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
}
body.site-bcd .bcd-hamburger-btn:hover {
  background: #fff3e9 !important;
  color: var(--bcd-primary-dark) !important;
}
body.site-bcd .bcd-hamburger-btn i { color: inherit; }

/* ---- Header dropdown menus (UIkit uk-dropdown) ---- */
body.site-bcd .uk-dropdown {
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.14) !important;
  border: 1px solid var(--bcd-border) !important;
  padding: 10px !important;
  min-width: 210px;
}
body.site-bcd .uk-dropdown-nav > li {
  margin: 0 !important;
}
body.site-bcd .uk-dropdown-nav > li > a,
body.site-bcd .uk-dropdown .dropdownitem,
body.site-bcd .uk-dropdown .bcd-navlink {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: var(--bcd-ink) !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  border-radius: 8px !important;
  padding: 9px 10px !important;
  text-decoration: none !important;
  transition: background .12s ease, color .12s ease;
}
body.site-bcd .uk-dropdown-nav > li > a:hover,
body.site-bcd .uk-dropdown .dropdownitem:hover,
body.site-bcd .uk-dropdown .bcd-navlink:hover {
  background: #fff3e9 !important;
  color: var(--bcd-primary) !important;
}
body.site-bcd .uk-dropdown-nav > li > a i,
body.site-bcd .uk-dropdown .dropdownitem i {
  color: var(--bcd-primary);
  width: 16px;
  text-align: center;
}
body.site-bcd .uk-dropdown-nav > li > a button,
body.site-bcd .uk-dropdown-nav > li button.ui.button {
  width: 100%;
  text-align: left;
  justify-content: flex-start !important;
}

/* ---- Share buttons (deal/business pages) ---- */
body.site-bcd .bcd-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fbf3ea;
  color: var(--bcd-primary);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  transition: background .12s ease, color .12s ease;
}
body.site-bcd .bcd-share-btn:hover { background: var(--bcd-primary); color: #fff; }

/* ---- Save deal button ---- */
body.site-bcd .bcd-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--bcd-primary);
  color: var(--bcd-primary);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
body.site-bcd .bcd-save-btn:hover { background: #fff3e9; }
body.site-bcd .bcd-save-btn.is-saved {
  background: var(--bcd-primary);
  color: #fff;
}
body.site-bcd .bcd-save-btn.is-saved:hover { background: var(--bcd-primary-dark); }

/* ---- Header row: replace float layout with flex so the search bar can
   actually sit centered instead of pinned via a stray left:80% offset. ---- */
body.site-bcd .bcd-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
body.site-bcd .bcd-header-row .uk-float-left,
body.site-bcd .bcd-header-row .uk-float-right {
  float: none !important;
}
body.site-bcd .bcd-header-row .uk-float-left { order: 1; flex-shrink: 0; }
body.site-bcd .bcd-header-row .bcd-search-wrap {
  order: 2;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  left: auto !important;
  max-width: 480px !important;
  margin: 0 auto !important;
}
body.site-bcd .bcd-header-row .bcd-search-wrap .bcd-search-form { width: 100%; }
body.site-bcd .bcd-header-row .bcd-search-pill { margin-top: 18px !important; width: 100%; }
body.site-bcd .bcd-header-row .uk-float-right { order: 3; flex-shrink: 0; }

@media (max-width: 900px) {
  body.site-bcd .bcd-header-row .bcd-search-wrap { display: none; }
}
/* ---- Footer: soft cream instead of near-black, dark text for contrast
   (the markup hardcodes w3-text-white classes, so flip them here). ---- */
body.site-bcd .footer-color {
  background: #fbf3ea !important;
  border-top: 1px solid var(--bcd-border);
}
body.site-bcd footer.footer-color .w3-text-white { color: var(--bcd-ink) !important; }
body.site-bcd footer.footer-color h3 { font-weight: 600 !important; font-size: 16px !important; }
body.site-bcd footer.footer-color .footer-link,
body.site-bcd footer.footer-color p a.w3-text-white { color: var(--bcd-muted) !important; }
body.site-bcd footer.footer-color .footer-link:hover,
body.site-bcd footer.footer-color p a.w3-text-white:hover { color: var(--bcd-primary) !important; }
body.site-bcd footer.footer-color li p { font-size: 14px; }

/* ---- Scrollbar. <html> is the ONE scroll owner — body must never become
   a second independent scroll container or the two stack as a visible
   "double" scrollbar. body still inherits height:100% from style.css plus
   an inline height:100%, which clips it to exactly the viewport height;
   with overflow-y left un-set that box became its own scroller once html
   was forced to overflow-y:scroll. Explicitly overriding body's height to
   auto/min-height and its overflow-y to visible removes that second
   scroller for good — only html keeps overflow-y:scroll and gets the
   themed bar. */
html.site-bcd { overflow-y: scroll !important; overflow-x: hidden !important; }
body.site-bcd {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: 100%;
}
html.site-bcd::-webkit-scrollbar { width: 10px; height: 6px; background: #f4f0ea; }
html.site-bcd::-webkit-scrollbar-thumb { background: var(--bcd-primary); border-radius: 20px; }
html.site-bcd::-webkit-scrollbar-thumb:hover { background: var(--bcd-primary-dark); }
html.site-bcd::-webkit-scrollbar-track { background: #f4f0ea; }
html.site-bcd::-webkit-scrollbar-button { display: none; background: transparent; }
html.site-bcd::-webkit-scrollbar-corner { background: #f4f0ea; }
html.site-bcd { scrollbar-width: thin; scrollbar-color: var(--bcd-primary) #f4f0ea; }

/* ---- data-tooltip (back2Top, filter button): Semantic UI's markup
   convention but its JS popup() module is never initialized anywhere in
   the codebase, so these never actually rendered anything — a pure-CSS
   tooltip driven off the same attributes, no JS dependency. ---- */
body.site-bcd [data-tooltip] { position: relative; }
body.site-bcd [data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bcd-primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease;
  z-index: 2000;
}
body.site-bcd [data-position="left center"][data-tooltip]::after { right: 100%; margin-right: 10px; }
body.site-bcd [data-position="right center"][data-tooltip]::after { left: 100%; margin-left: 10px; }
body.site-bcd [data-tooltip]:hover::after,
body.site-bcd [data-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
}

/* ---- Back to top button ---- */
body.site-bcd #back2Top.bcd-totop {
  background: var(--bcd-primary) !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 14px rgba(217,96,10,.35) !important;
  transition: background .15s ease, transform .15s ease;
}
body.site-bcd #back2Top.bcd-totop:hover {
  background: var(--bcd-primary-dark) !important;
  transform: translateY(-2px);
}

/* ---- Header search pill ---- */
body.site-bcd .bcd-search-pill {
  display: flex !important;
  align-items: center;
  background: #fff;
  border: 1px solid var(--bcd-border) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  padding: 0 6px 0 16px;
  height: 46px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
body.site-bcd .bcd-search-pill:focus-within {
  border-color: var(--bcd-primary) !important;
  box-shadow: 0 0 0 3px rgba(255,122,26,.15) !important;
}
body.site-bcd .bcd-search-pill-icon { color: var(--bcd-muted); width: 16px; height: 16px; margin-right: 8px; flex-shrink: 0; }
body.site-bcd .bcd-search-pill input[type="text"] {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  height: 100% !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  flex-grow: 1;
}
body.site-bcd .bcd-search-pill-btn {
  background: var(--bcd-primary) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.site-bcd .bcd-search-pill-btn:hover { background: var(--bcd-primary-dark) !important; }
body.site-bcd .bcd-search-pill-btn i { width: 15px; height: 15px; }

/* ---- On-page search bar (bcd-search.php) — bcd-search-pill above styles
   only the header's copy; this page renders its own form with different
   class names that otherwise have no rules at all (unstyled inputs). ---- */
body.site-bcd .bcd-search-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
body.site-bcd .bcd-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--bcd-border);
  border-radius: 999px;
  padding: 0 18px;
  height: 48px;
  flex: 1 1 260px;
}
body.site-bcd .bcd-search-field:focus-within {
  border-color: var(--bcd-primary);
  box-shadow: 0 0 0 3px rgba(255,122,26,.15);
}
body.site-bcd .bcd-search-field i { color: var(--bcd-muted); flex-shrink: 0; }
body.site-bcd .bcd-search-field input {
  border: none;
  outline: none;
  background: transparent;
  flex-grow: 1;
  font-size: 15px;
  font-family: inherit;
  height: 100%;
}
body.site-bcd .bcd-search-bar .bcd-btn-primary { flex-shrink: 0; height: 48px; padding: 0 26px; }
@media (max-width: 480px) {
  body.site-bcd .bcd-search-bar .bcd-btn-primary { width: 100%; }
}

body.site-bcd .bcd-btn-primary {
  background: var(--bcd-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 500 !important;
  text-decoration: none !important;
}
body.site-bcd .bcd-btn-primary:hover { background: var(--bcd-primary-dark) !important; }

body.site-bcd .bcd-btn-outline {
  background: #fff !important;
  color: var(--bcd-primary) !important;
  border: 1.5px solid var(--bcd-primary) !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

body.site-bcd .bcd-navlink { color: var(--bcd-ink) !important; font-weight: 500; text-decoration: none !important; }
body.site-bcd .bcd-navlink:hover { color: var(--bcd-primary) !important; }

/* ---- Section shell ---- */
body.site-bcd .bcd-section { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
body.site-bcd .bcd-section-title { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 25px; color: var(--bcd-ink); margin-bottom: 4px; }
body.site-bcd .bcd-section-sub { color: var(--bcd-muted); margin-bottom: 22px; }

/* ---- Hero ---- */
body.site-bcd .bcd-hero {
  background: linear-gradient(135deg, var(--bcd-primary), var(--bcd-primary-dark));
  color: #fff;
  padding: 56px 20px;
  text-align: center;
}
body.site-bcd .bcd-hero h1 { font-family: 'Raleway', sans-serif; font-weight: 600 !important; font-size: 32px; margin: 0 0 8px; }
body.site-bcd .bcd-hero p { opacity: .92; margin: 0; }

/* ---- Homepage hero: bigger, decorated, with an embedded search bar ---- */
body.site-bcd .bcd-hero-home {
  position: relative;
  overflow: hidden;
  padding: 72px 20px 64px;
}
body.site-bcd .bcd-hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.16) 0, rgba(255,255,255,0) 42%),
    radial-gradient(circle at 88% 78%, rgba(255,255,255,.14) 0, rgba(255,255,255,0) 38%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.10) 0, rgba(255,255,255,0) 30%);
}
body.site-bcd .bcd-hero-content { position: relative; max-width: 640px; margin: 0 auto; }
body.site-bcd .bcd-hero-kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
body.site-bcd .bcd-hero-home h1 { font-size: 40px; line-height: 1.15; margin: 0 0 14px; }
body.site-bcd .bcd-hero-home p { font-size: 16.5px; margin: 0 0 26px; }
body.site-bcd .bcd-hero-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 0 8px 0 20px;
  height: 56px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
body.site-bcd .bcd-hero-search i { color: var(--bcd-muted); flex-shrink: 0; }
body.site-bcd .bcd-hero-search input {
  border: none;
  outline: none;
  background: transparent;
  flex-grow: 1;
  font-size: 15px;
  font-family: inherit;
  color: var(--bcd-ink);
  height: 100%;
}
body.site-bcd .bcd-hero-search .bcd-btn-primary { flex-shrink: 0; height: 42px; padding: 0 22px; }
@media (max-width: 560px) {
  body.site-bcd .bcd-hero-home h1 { font-size: 30px; }
  body.site-bcd .bcd-hero-search { flex-wrap: wrap; height: auto; padding: 14px 18px; border-radius: 20px; }
  body.site-bcd .bcd-hero-search input { flex-basis: 100%; height: 40px; }
  body.site-bcd .bcd-hero-search .bcd-btn-primary { width: 100%; }
}

/* ---- Explore grid ---- */
body.site-bcd .bcd-explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
body.site-bcd .bcd-explore-card {
  display: block;
  background: #fff;
  border: 1px solid var(--bcd-border);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
  text-decoration: none !important;
  color: var(--bcd-ink) !important;
  font-weight: 500;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
body.site-bcd .bcd-explore-card:hover { box-shadow: 0 6px 18px rgba(255,122,26,.18); transform: translateY(-2px); border-color: var(--bcd-primary); }
body.site-bcd .bcd-explore-card i { display: block; font-size: 24px; color: var(--bcd-primary); margin-bottom: 8px; }

/* ---- Featured cards (businesses + deals) ---- */
body.site-bcd .bcd-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
body.site-bcd .bcd-card {
  background: #fff;
  border: 1px solid var(--bcd-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: box-shadow .15s ease, transform .15s ease;
}
body.site-bcd .bcd-card:hover { box-shadow: 0 10px 22px rgba(0,0,0,.1); transform: translateY(-2px); }
body.site-bcd .bcd-card-link { display: block; color: inherit !important; text-decoration: none !important; cursor: pointer; }
body.site-bcd .bcd-card-media {
  height: 120px;
  background: linear-gradient(135deg, var(--bcd-primary), var(--bcd-primary-dark));
  display: flex; align-items: center; justify-content: center; color: #fff;
}
body.site-bcd .bcd-card-body { padding: 14px 16px; }
body.site-bcd .bcd-card-body h4 { margin: 0 0 4px; font-family: 'Raleway', sans-serif; font-weight: 600 !important; font-size: 17px; color: var(--bcd-ink); }
body.site-bcd .bcd-card-body p { margin: 0; color: var(--bcd-muted); font-size: 14px; font-weight: 400; }
body.site-bcd .bcd-badge {
  display: inline-block; background: var(--bcd-primary); color: #fff; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: .03em; padding: 3px 9px; border-radius: 999px; margin-bottom: 6px;
}
body.site-bcd .bcd-empty { color: var(--bcd-muted); text-align: center; padding: 30px; border: 1px dashed var(--bcd-border); border-radius: 10px; }

/* ---- Newsletter ---- */
body.site-bcd .bcd-newsletter {
  background: #fff7ef;
  border-top: 1px solid var(--bcd-border);
  border-bottom: 1px solid var(--bcd-border);
  text-align: center;
  padding: 40px 20px;
}
body.site-bcd .bcd-newsletter h3 { font-family: 'Raleway', sans-serif; color: var(--bcd-ink); margin: 0 0 6px; }
body.site-bcd .bcd-newsletter p { color: var(--bcd-muted); margin: 0 0 16px; }
body.site-bcd .bcd-newsletter-form { display: inline-flex; flex-wrap: wrap; gap: 8px; max-width: 420px; width: 100%; }
body.site-bcd .bcd-newsletter-form input[type="email"] {
  flex-grow: 1; min-width: 0; border: 1px solid var(--bcd-border); border-radius: 6px; padding: 0 14px; height: 46px; font-size: 15px;
}
@media (max-width: 480px) {
  body.site-bcd .bcd-newsletter-form input[type="email"] { flex-basis: 100%; }
  body.site-bcd .bcd-newsletter-form button { width: 100%; }
}

/* ---- Password reveal toggle ---- */
body.site-bcd .bcd-pw-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--bcd-muted);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.site-bcd .bcd-pw-toggle:hover { color: var(--bcd-primary); }
body.site-bcd .bcd-pw-toggle i { font-size: 14px; }

/* ---- Login / Register modals ---- */
body.site-bcd .uk-modal-dialog {
  background: #fff !important;
  color: var(--bcd-ink);
  border-radius: 14px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.18) !important;
  padding: 30px !important;
}
body.site-bcd .uk-modal-title { color: var(--bcd-ink) !important; }
body.site-bcd .uk-modal-close-default {
  color: var(--bcd-muted) !important;
  opacity: 1 !important;
}
body.site-bcd .uk-modal-close-default:hover { color: var(--bcd-ink) !important; }
body.site-bcd .uk-input {
  background: #faf9f7 !important;
  border: 1px solid var(--bcd-border) !important;
  color: var(--bcd-ink) !important;
  border-radius: 8px !important;
  height: 44px !important;
  font-size: 14px !important;
  transition: border-color .15s ease, background .15s ease;
}
body.site-bcd .uk-input:focus {
  background: #fff !important;
  border-color: var(--bcd-primary) !important;
  box-shadow: 0 0 0 3px rgba(255,122,26,.15) !important;
}
body.site-bcd .uk-modal-dialog label,
body.site-bcd .uk-modal-dialog .w3-left a,
body.site-bcd .uk-modal-dialog .w3-left li a {
  color: var(--bcd-muted) !important;
  font-size: 13px !important;
}
body.site-bcd .uk-modal-dialog .w3-left a:hover { color: var(--bcd-primary) !important; }

/* ---- Modern status states for the login/register forms ---- */
body.site-bcd .bcd-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  margin: 10px 0;
}
body.site-bcd .bcd-alert-error { background: #fdecec; color: #b3261e; }
body.site-bcd .bcd-alert-success { background: #e8f7ec; color: #1d7a3c; }
body.site-bcd .bcd-spinner {
  width: 22px;
  height: 22px;
  margin: 12px auto;
  border: 3px solid rgba(255,122,26,.2);
  border-top-color: var(--bcd-primary);
  border-radius: 50%;
  animation: bcd-spin .7s linear infinite;
}
@keyframes bcd-spin { to { transform: rotate(360deg); } }

body.site-bcd input[type="checkbox"],
body.site-bcd input[type="radio"] {
  accent-color: var(--bcd-primary);
}

/* ---- Auth (Google button) ---- */
body.site-bcd .bcd-google-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff !important; color: #1a1a1a !important; border: 1px solid #dadce0 !important;
  border-radius: 6px; height: 46px; width: 100%; font-weight: 500; text-decoration: none !important;
}
body.site-bcd .bcd-google-btn:hover { background: #f7f7f7 !important; }
body.site-bcd .bcd-auth-divider { color: var(--bcd-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin: 12px 0; }

/* ---- Address autocomplete dropdown (js/bcd-address-autocomplete.js) ---- */
body.site-bcd .bcd-address-suggestions {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  background: #fff;
  border: 1px solid var(--bcd-border);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  margin-top: 4px;
  max-height: 220px;
  overflow-y: auto;
}
body.site-bcd .bcd-address-suggestion {
  padding: 9px 14px;
  font-size: 13.5px;
  cursor: pointer;
  border-bottom: 1px solid var(--bcd-border);
}
body.site-bcd .bcd-address-suggestion:last-child { border-bottom: none; }
body.site-bcd .bcd-address-suggestion:hover,
body.site-bcd .bcd-address-suggestion.is-active { background: #fff3e9; color: var(--bcd-primary); }

/* ---- List Your Business form ---- */
body.site-bcd .bcd-form-card { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--bcd-border); border-radius: 12px; padding: 28px; }
body.site-bcd .bcd-form-card label { display: block; font-weight: 500; color: var(--bcd-ink); margin: 14px 0 6px; }
body.site-bcd .bcd-form-card input,
body.site-bcd .bcd-form-card select,
body.site-bcd .bcd-form-card textarea {
  width: 100%; border: 1px solid var(--bcd-border); border-radius: 6px; padding: 10px 12px; font-size: 15px; font-family: inherit;
}

@media (max-width: 900px) {
  body.site-bcd .bcd-explore-grid { grid-template-columns: repeat(2, 1fr); }
  body.site-bcd .bcd-card-grid { grid-template-columns: 1fr; }
}

/* ---- Cookie consent banner ---- */
body.site-bcd .bcd-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border-top: 1px solid var(--bcd-border);
  box-shadow: 0 -8px 28px rgba(0,0,0,.14);
  padding: 16px 22px;
  font-family: 'Raleway', sans-serif;
  transition: transform .2s ease, opacity .2s ease;
}
body.site-bcd .bcd-cookie-banner.bcd-cookie-banner-hide {
  transform: translateY(12px);
  opacity: 0;
}
body.site-bcd .bcd-cookie-banner-text {
  color: var(--bcd-ink);
  font-size: 13.5px;
  line-height: 1.5;
  flex: 1 1 320px;
  max-width: 720px;
}
body.site-bcd .bcd-cookie-banner-text a { color: var(--bcd-primary); font-weight: 600; }
body.site-bcd .bcd-cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  body.site-bcd .bcd-cookie-banner { flex-direction: column; align-items: stretch; }
  body.site-bcd .bcd-cookie-banner-actions { justify-content: stretch; }
  body.site-bcd .bcd-cookie-banner-actions button { flex: 1; }
}
