body {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a:hover {
  cursor: hand;
}

p {
  cursor: pointer;
}

.navbar-toggler {
  color: transparent !important;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: transparent !important;
}

.min-font {
  font-size: min(3em, 24px);
}

div::-webkit-scrollbar {
  display: none;
}

body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.loader {
  z-index: 9999;
  border: 16px solid #723812;
  border-radius: 50%;
  border-top: 16px solid #fff;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  75% {
    opacity: 0.75;
  }
}

.strokeme {
  color: #414f28;
  text-shadow: -1px -1px 0 #f9a01b, 1px -1px 0 #f9a01b, -1px 1px 0 #f9a01b, 1px 1px 0 #f9a01b;
}

/* ---------- Scope: bb-product ---------- */

#bb-product {
  --bg: #fbf3e6;
  --text: #4b1e0e;
  --brown: #a05b2a;
  --brown-dark: #7c3e1b;
  --cta: #2d6a2f;
  --cta-dark: #1f4a21;
  --paper: #fff7ea;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--text);
  padding: clamp(20px, 4vw, 48px);
}

/* Header */

#bb-product .headline {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 32px);
}

#bb-product .headline h2 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(28px, 4.5vw, 56px);
  color: #5a2a14;
}

#bb-product .tagline {
  display: inline-block;
  margin-top: 8px;
  background: var(--brown);
  color: #ffdca6;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .01em;
}

/* Responsive grid */

#bb-product .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2.8vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */

#bb-product .card {
  padding: clamp(14px, 2vw, 22px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

#bb-product .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* Image + subtle “mat” */

#bb-product .mat {
  width: 78%;
  height: 12px;
  background: #d4b189;
  opacity: .75;
  margin: 0 auto 8px;
  transform: perspective(600px) rotateX(50deg) scaleY(.36);
  border-radius: 8px;
  filter: blur(1px);
}

#bb-product .media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  margin: 0 auto 10px;
  max-width: 360px;
}

#bb-product .media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.18));
}

/* Badge */

#bb-product .badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #b81f31;
  color: #fff;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(15deg);
  box-shadow: 0 8px 22px rgba(184,31,49,.35);
}

#bb-product .badge span {
  line-height: 1.05;
  text-align: center;
}

/* Text */

#bb-product .title {
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px);
  margin: 2px 0 4px;
  color: #5a2a14;
}

#bb-product .weight {
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 12px;
}

/* CTA */

#bb-product .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(#2f7a31, var(--cta));
  color: #ffe59a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  border: 0;
  box-shadow: 0 6px 0 var(--cta-dark), 0 12px 24px rgba(45,106,47,.35);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

#bb-product .cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

#bb-product .cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 0 var(--cta-dark);
}

/* Small screens tweaks */

@media (max-width: 420px) {
  #bb-product .badge {
    width: 64px;
    height: 64px;
    font-size: 11px;
  }
}

/* ===================== SCOPE: #bb-bite ===================== */

#bb-bite {
  --olive: #384e2d;
  --amber: #e79a23;
  --paper: #fbf3e6;
  --ink: #2b2018;
  --cream: #fff7ea;
  --shadow: 0 12px 34px rgba(0,0,0,.12);
  padding: clamp(20px,5vw,60px) 0;
  position: relative;
  overflow: hidden;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
}

#bb-bite .bb-wrap {
  width: min(1200px,92%);
  margin: 0 auto;
}

/* Title */

#bb-bite .bb-title {
  margin: 0 0 clamp(16px,3vw,28px);
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  font-weight: 900;
  color: #5b2f12;
  filter: drop-shadow(0 3px 0 #e2caa3);
  transform: rotate(-6deg);
  letter-spacing: .02em;
}

#bb-bite .bb-title span:first-child {
  font-size: clamp(20px,3.2vw,30px);
}

#bb-bite .bb-title span:last-child {
  font-size: clamp(26px,4.4vw,46px);
}

/* Layout */

#bb-bite .bb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: clamp(16px,3.2vw,32px);
  align-items: start;
}

/* Cards */

#bb-bite .bb-card {
  position: relative;
  border-radius: 16px;
  isolation: isolate;
}

#bb-bite .bb-card__inner {
  padding: clamp(18px,3.2vw,36px);
}

/* Text */

#bb-bite p {
  margin: 0 0 14px;
  color: #fdf7e9;
  font-size: clamp(15px,1.6vw,18px);
}

#bb-bite .bb-card--amber p {
}

/* Highlights */

#bb-bite .hl {
  position: relative;
  font-weight: 800;
  color: #fff;
}

#bb-bite .bb-card--amber .hl {
  color: #5a2a14;
}

#bb-bite .hl-bar {
  background: linear-gradient(transparent 58%, #e7c471 58% 92%, transparent 0);
  padding: 0 .14em;
  border-radius: 3px;
}

#bb-bite .hl-oval {
  padding: 0 .25em;
}

#bb-bite .hl-oval::after {
  content: "";
  position: absolute;
  inset: -.2em -.15em;
  background: radial-gradient(120% 65% at 50% 50%, rgba(255,210,110,.55) 45%, rgba(255,210,110,0) 47% 100%);
  border: 3px solid rgba(255,210,110,.85);
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

#bb-bite .hl-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.12em;
  height: .5em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="180" height="10" viewBox="0 0 180 10"><path d="M2 8 C 28 2, 52 11, 86 5 S140 11,178 4" fill="none" stroke="%23e7c471" stroke-width="6" stroke-linecap="round" stroke-opacity=".95"/></svg>') repeat-x left bottom/120px 10px;
  pointer-events: none;
}

/* Decorative images (positions mirror your reference) */

#bb-bite .bb-deco {
  position: absolute;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.25));
}

/* Right/bottom of GREEN card */

#bb-bite .bb-deco--biscuits {
  width: min(28vw,220px);
  right: -8px;
  bottom: -18px;
  transform: rotate(6deg);
}

/* Left/outside of GREEN card */

#bb-bite .bb-deco--scoop {
  width: min(34vw,260px);
  left: -16vw;
  bottom: -26px;
  transform: rotate(-10deg);
}

/* Right/bottom of AMBER card */

#bb-bite .bb-deco--house {
  width: min(36vw,300px);
  right: 10px;
  bottom: 4px;
  opacity: .95;
}

/* Right/outside of AMBER card (top) */

#bb-bite .bb-deco--pin {
  width: min(34vw,260px);
  right: -18vw;
  top: -14px;
  transform: rotate(-12deg);
}

/* Smaller screens tweak */

@media (max-width: 820px) {
  #bb-bite .bb-deco--scoop {
    left: -10vw;
    width: min(40vw,240px);
  }
}

@media (max-width: 820px) {
  #bb-bite .bb-deco--pin {
    right: -12vw;
    width: min(40vw,240px);
  }
}

@media (max-width: 560px) {
  #bb-bite .bb-deco--biscuits {
    width: 180px;
    right: -6px;
    bottom: -14px;
  }
}

@media (max-width: 560px) {
  #bb-bite .bb-deco--house {
    width: 220px;
    right: 6px;
    bottom: 2px;
  }
}

/* ==================== SCOPE: #bb-about ==================== */

#bb-about {
  background: url("brick-bg.png") repeat center/cover, #7a3a1a;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #f8f6f2;
}

#bb-about .bb-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

#bb-about .bb-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin: 0;
  color: #ffe8b4;
  letter-spacing: .02em;
}

#bb-about .bb-tagline {
  display: inline-block;
  margin-top: 12px;
  background: #e79a23;
  color: #4b1e0e;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 6px;
  transform: skewX(-8deg);
}

#bb-about .bb-tagline::before, #bb-about .bb-tagline::after {
  content: "";
  display: inline-block;
}

#bb-about .bb-grid {
  margin-top: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

#bb-about .bb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#bb-about .bb-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
  border: 6px solid transparent;
  border-radius: 6px;
}

#bb-about .bb-card:nth-child(1) img, #bb-about .bb-card:nth-child(3) img {
  border-color: #2f6d30;
}

#bb-about .bb-card:nth-child(2) img {
  border-color: #f6a623;
}

#bb-about .bb-card:nth-child(4) img {
  border-color: #2f6d30;
}

#bb-about .bb-card p {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #fff1da;
  margin: 0;
  line-height: 1.4;
}

/* ======================= SCOPE: #bb-double ======================= */

#bb-double {
  position: relative;
  isolation: isolate;
  min-height: 62vh;
  color: #f6efe3;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  overflow: hidden;
}

/* Background photo — replace the URL below */

#bb-double .bb-double__bg {
  position: absolute;
  inset: 0;
  background-image: url("hero-double.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

/* subtle vignette for readability */

#bb-double::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* content container */

#bb-double .bb-double__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(16px, 4vw, 48px);
  align-items: center;
}

/* Headline (left) */

#bb-double .bb-double__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: .02em;
  font-size: clamp(36px, 7vw, 96px);
  text-shadow: 0 6px 18px rgba(0,0,0,.5);
}

/* Copy panel (right) with angled edges */

#bb-double .bb-double__panel {
  padding: clamp(16px, 3vw, 28px);
  color: #f3e9d2;
  border-radius: 8px;
  clip-path: polygon(0% 8%, 92% 0%, 100% 8%, 100% 92%, 8% 100%, 0% 92%);
}

#bb-double .bb-double__panel p {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.55;
}

#bb-double .bb-double__panel p:last-child {
  margin-bottom: 0;
}

/* ------- Responsive ------- */

@media (max-width: 980px) {
  #bb-double .bb-double__wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 980px) {
  #bb-double .bb-double__title {
    order: 0;
  }
}

@media (max-width: 980px) {
  #bb-double .bb-double__panel {
    order: 1;
    max-width: 720px;
  }
}

@media (max-width: 520px) {
  #bb-double {
    min-height: 70vh;
  }
}

@media (max-width: 520px) {
  #bb-double .bb-double__title {
    font-size: clamp(34px, 12vw, 64px);
  }
}

/* ==================== SCOPE: #bb-about ==================== */

#bb-social {
  background: url("brick-bg.png") repeat center/cover, #7a3a1a;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #f8f6f2;
}

#bb-social .bb-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

#bb-social .bb-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin: 0;
  color: #ffe8b4;
  letter-spacing: .02em;
}

#bb-social .bb-tagline {
  display: inline-block;
  margin-top: 12px;
  background: #e79a23;
  color: #4b1e0e;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 6px;
  transform: skewX(-8deg);
}

@media (max-width:600px) {
  .gm-style-iw {
    width: 100vw!important;
    max-width: 100vw!important;
  }
}

@media (max-width:600px) {
  .gm-style-iw-d {
    max-height: none!important;
    overflow: hidden!important;
  }
}

