:root {
  --bb-green-dark: #0b3d1e;
  --bb-green: #0e4d26;
  --bb-green-darker: #072d15;
  --bb-yellow: #f5c518;
  --bb-yellow-dark: #e0ac00;
  --bb-cream: #fdf8e8;
  --bb-red: #d92b2b;
  --bb-text: #1a1a1a;
  --bb-muted: #6b6b6b;
  --bb-border: #e5e5e5;
  --radius: 10px;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--bb-text);
  background: #fff;
}

h1, h2, h3, h4, .fw-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a { text-decoration: none; }

/* Top announcement bar */
.bb-topbar {
  background: var(--bb-green-darker);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 0;
}
.bb-topbar a { color: #fff; margin-left: 10px; }

/* Navbar — flex order control so mobile can rearrange without touching desktop */
.bb-nav-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.bb-nav-toggler { order: 1; }
.bb-nav-brand { order: 2; }
.bb-nav-container > .navbar-collapse { order: 3; }
.bb-nav-actions { order: 4; }

@media (min-width: 992px) {
  .bb-nav-actions .btn-bb-primary { margin-right: 0; }
}

@media (max-width: 991.98px) {
  .bb-nav-container { justify-content: space-between; }
  .bb-nav-toggler {
    border: none;
    box-shadow: none !important;
    padding: 4px 6px;
    order: 1;
  }
  .bb-nav-brand {
    order: 2;
    flex: 1 1 auto;
    justify-content: center;
    margin: 0 6px;
  }
  .bb-nav-brand-text { display: none; }
  .bb-nav-logo-img,
  .bb-nav-brand .bb-logo-badge {
    height: 42px !important;
    width: auto !important;
  }
  .bb-nav-actions {
    order: 3;
    gap: 0 !important;
  }
  .bb-nav-actions .btn-bb-primary { display: none; }
  .bb-nav-container > .navbar-collapse { order: 4; flex-basis: 100%; }
  .bb-nav-mobile-cta { margin-top: 14px; }
}

/* Navbar */
.bb-navbar {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.bb-navbar .navbar-brand small {
  display: block;
  font-size: 0.7rem;
  color: var(--bb-muted);
}
.bb-navbar .nav-link {
  color: var(--bb-text);
  font-weight: 600;
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}
.bb-navbar .nav-link.active,
.bb-navbar .nav-link:hover {
  color: var(--bb-green);
}
.btn-bb-primary {
  background: var(--bb-green);
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-bb-primary:hover { background: var(--bb-green-dark); color: #fff; }
.btn-bb-outline {
  border: 2px solid var(--bb-green);
  color: var(--bb-green);
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
}

/* Floating social bar */
.bb-floating-social {
  position: fixed;
  right: 16px;
  top: 45%;
  z-index: 999;
  background: var(--bb-green-darker);
  border-radius: 30px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bb-floating-social a {
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
}

/* Optional promo banner (Admin > Banners) — used lower on the page */
.bb-promo-banner {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 15px;
}
.bb-promo-banner .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.bb-promo-banner .carousel-indicators button {
  background-color: var(--bb-green-dark, #1b5e20);
}

/* Full-width hero banner (when used at the very top of the home page) */
.bb-promo-banner-top {
  max-width: none;
  margin: 0 0 40px;
  padding: 0;
}
.bb-promo-banner-top .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Logo badge */
.bb-logo-badge { flex-shrink: 0; }
.bb-footer h5 { display: flex; align-items: center; }

/* Hero */
.bb-hero {
  background: linear-gradient(135deg, #fdf3d3, #f6e7ae);
  padding: 60px 0;
}
.bb-hero .eyebrow {
  font-style: italic;
  color: var(--bb-green);
  font-size: 1.4rem;
}
.bb-hero h1 {
  font-size: 3rem;
  color: var(--bb-green-dark);
  line-height: 1.1;
}
.badge-since {
  background: var(--bb-yellow);
  color: var(--bb-green-darker);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  display: inline-block;
}

.bb-trust-badge {
  position: absolute;
  top: 0;
  right: 10px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px dashed var(--bb-green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bb-green-dark);
  line-height: 1.3;
  background: var(--bb-cream);
  z-index: 2;
}
@media (max-width: 991px) {
  .bb-trust-badge { display: none; }
}

.bb-stat-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bb-border);
  border-radius: 50%;
  margin: 0 auto 8px;
  color: var(--bb-green);
}

/* Feature strip */
.bb-feature-strip {
  background: var(--bb-green-dark);
  padding: 22px 28px;
  border-radius: 14px;
  margin: 0 auto 40px;
  max-width: 1180px;
  box-shadow: 0 10px 30px rgba(11,61,30,0.18);
  color: #fff;
}
.bb-feature-strip .container { max-width: 100%; padding: 0; }
.bb-feature-strip i { margin-right: 0; }
.bb-feature-strip .text-warning { color: var(--bb-yellow) !important; }
.bb-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  vertical-align: middle;
}

/* Product cards */
.bb-product-card {
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.2s;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bb-product-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.bb-product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #fff;
  padding: 0;
}
.bb-product-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bb-product-card .card-body h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.bb-product-card .card-body small {
  display: block;
  min-height: 1.3em;
  margin-bottom: 6px;
}
.bb-product-card .card-body .btn {
  margin-top: auto;
  align-self: center;
  white-space: nowrap;
  font-size: 0.78rem;
  padding: 8px 16px;
}
.bb-product-card .price { color: var(--bb-green); font-weight: 700; }
.bb-product-card .mrp { color: var(--bb-muted); text-decoration: line-through; font-size: 0.85rem; }

/* Products listing card — View + Add to Cart action row that never overflows the card */
.bb-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bb-card-actions > a,
.bb-card-actions > form { flex: 1 1 100px; min-width: 0; }
.bb-card-actions .btn {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 8px;
  padding-right: 8px;
}
@media (max-width: 420px) {
  .bb-card-actions > a,
  .bb-card-actions > form { flex: 1 1 100%; }
}

/* About Us — product slider */
.bb-product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.bb-product-slider::-webkit-scrollbar {
  display: none;
}
.bb-product-slide {
  flex: 0 0 auto;
  width: 190px;
  scroll-snap-align: start;
}
.bb-product-slide .bb-product-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.bb-product-slide .bb-product-card img {
  background: #fff;
  padding: 10px;
  aspect-ratio: 4/3;
}
.bb-product-slide .bb-product-card:hover {
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
  transform: translateY(-6px);
}
.bb-product-slide .bb-product-card h6 {
  color: var(--bb-green-darker);
  font-weight: 700;
}
.bb-product-slide .bb-product-card small {
  color: var(--bb-muted) !important;
}
.bb-product-slide .bb-product-card .price {
  color: var(--bb-green);
  font-weight: 700;
}
.bb-slider-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--bb-green-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.bb-slider-arrow:hover {
  background: var(--bb-yellow);
  transform: translateY(-50%) scale(1.08);
}
.bb-slider-prev { left: -6px; }
.bb-slider-next { right: -6px; }
@media (max-width: 767px) {
  .bb-slider-arrow { width: 34px; height: 34px; }
  .bb-slider-prev { left: -2px; }
  .bb-slider-next { right: -2px; }
}

/* Free Shipping Combos */
.section-title-plain {
  text-align: center;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2rem;
  font-size: 1.7rem;
}
.bb-combo-card {
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
}
.bb-combo-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.bb-combo-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bb-red, #d32f2f);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px 22px 18px 10px;
  clip-path: polygon(0 0, 100% 0, 40% 100%, 0 70%);
  z-index: 2;
}
.bb-combo-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
}
.bb-combo-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bb-combo-card .card-body h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.badge-discount {
  background: var(--bb-red);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
}
.badge-best-seller {
  background: var(--bb-yellow);
  color: var(--bb-green-darker);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

/* CTA offer banner */
.bb-offer-banner {
  background: var(--bb-yellow);
  color: var(--bb-green-darker);
  padding: 22px 0;
  font-weight: 700;
}
.bb-offer-banner-dynamic {
  background: none;
  padding: 0;
}
.bb-offer-banner-dynamic img { display: block; }
.bb-offer-banner .pill {
  background: var(--bb-green-darker);
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  display: inline-block;
}
.bb-offer-banner .bb-offer-img-left {
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  object-fit: cover;
  order: -1;
}
@media (max-width: 767px) {
  .bb-offer-banner .bb-offer-img-left { max-height: 90px !important; margin: 0 auto; }
  .bb-offer-banner .container { justify-content: center !important; text-align: center; }
}
.bb-offer-banner .offer-subtext {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bb-green-darker);
}
.bb-offer-banner .offer-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--bb-red);
  line-height: 1.15;
}
@media (max-width: 767px) {
  .bb-offer-banner .offer-headline { font-size: 1.3rem; }
}

/* Footer */
.bb-footer {
  background: var(--bb-green-darker);
  color: #d9e7dd;
  padding: 50px 0 20px;
}
.bb-footer h6 {
  color: var(--bb-yellow);
  font-weight: 700;
  margin-bottom: 16px;
}
.bb-footer a {
  color: #d9e7dd;
  display: block;
  margin-bottom: 8px;
}
.bb-footer a:hover { color: var(--bb-yellow); }
.bb-footer .social-icons a {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  align-items: center; justify-content: center;
  margin-right: 8px;
}
.bb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #b7c9bd;
}

/* Section titles */
.section-title {
  text-align: center;
  color: var(--bb-green-dark);
  position: relative;
  margin-bottom: 30px;
}

/* Category explorer — horizontal slider (Products page) */
.bb-cat-slider-wrap { padding: 0 42px; }
.bb-cat-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 4px 14px;
  scrollbar-width: none;
}
.bb-cat-track::-webkit-scrollbar { display: none; }
.bb-cat-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 20px 18px;
  text-decoration: none;
  min-width: 200px;
  transition: 0.2s;
}
.bb-cat-pill:hover, .bb-cat-pill.active {
  border-color: var(--bb-green);
  background: var(--bb-cream);
}
.bb-cat-pill-icon {
  font-size: 1.9rem;
  line-height: 1;
  flex-shrink: 0;
}
.bb-cat-pill-text {
  font-weight: 700;
  color: var(--bb-green-darker);
  line-height: 1.35;
  font-size: 1rem;
}
.bb-cat-pill-text small {
  display: block;
  font-weight: 500;
  color: var(--bb-muted);
  font-size: 0.78rem;
}
.bb-cat-pill-arrow { margin-left: auto; color: var(--bb-muted); flex-shrink: 0; }
.bb-cat-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bb-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-green-darker);
}
.bb-cat-arrow:hover { background: var(--bb-green-darker); color: #fff; }
.bb-cat-arrow-left { left: 0; }
.bb-cat-arrow-right { right: 0; }
@media (max-width: 576px) {
  .bb-cat-slider-wrap { padding: 0 8px; }
  .bb-cat-arrow { display: none; }
}

/* Basket / cart page */
.bb-basket-table th { background: var(--bb-green-darker); color: #fff; font-weight: 600; }
.bb-order-summary {
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.bb-order-summary .header { background: var(--bb-green-darker); color: #fff; padding: 14px 18px; font-weight: 700; }
.bb-order-summary .body { padding: 18px; }
.btn-checkout {
  background: var(--bb-yellow);
  color: var(--bb-green-darker);
  font-weight: 700;
  border-radius: 30px;
  padding: 12px;
  width: 100%;
  border: none;
}

/* Quantity stepper (Basket page) */
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--bb-border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.qty-stepper .qty-btn {
  background: #f4f4f4;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--bb-green-darker);
}
.qty-stepper .qty-btn:hover { background: var(--bb-cream); }
.qty-stepper input {
  width: 42px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--bb-border);
  border-right: 1px solid var(--bb-border);
  height: 32px;
}

/* Trust strip (Basket page) */
.bb-trust-strip {
  background: var(--bb-cream);
  border-radius: var(--radius);
  padding: 20px 10px;
  margin-left: 0;
  margin-right: 0;
}
.bb-trust-strip i { font-size: 1.4rem; color: var(--bb-green); display: block; margin-bottom: 6px; }
.bb-trust-strip strong { display: block; font-size: 0.85rem; }
.bb-trust-strip small { color: var(--bb-muted); font-size: 0.75rem; }

/* Why shop with us (Basket page sidebar) */
.bb-why-shop {
  background: #eef7ee;
  border-radius: var(--radius);
  padding: 18px;
}
.bb-why-shop h6 { color: var(--bb-green-darker); font-weight: 800; margin-bottom: 14px; }
.bb-why-shop .why-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.bb-why-shop .why-item:last-child { margin-bottom: 0; }
.bb-why-shop .why-item i { color: var(--bb-green); font-size: 1.1rem; margin-top: 2px; }
.bb-why-shop .why-item strong { display: block; font-size: 0.88rem; }
.bb-why-shop .why-item small { color: var(--bb-muted); font-size: 0.78rem; }

/* Need help box (Basket page sidebar) */
.bb-need-help {
  background: var(--bb-cream);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bb-need-help i { font-size: 1.6rem; color: var(--bb-green-darker); }

/* Generic horizontal product slider (Basket / etc) */
.bb-slider-wrap { padding: 0 42px; }
.bb-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 4px 14px;
  scrollbar-width: none;
}
.bb-slider-track::-webkit-scrollbar { display: none; }
.bb-slider-item { flex: 0 0 auto; width: 190px; scroll-snap-align: start; }
.bb-slider-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bb-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-green-darker);
}
.bb-slider-arrow:hover { background: var(--bb-green-darker); color: #fff; }
.bb-slider-arrow-left { left: 0; }
.bb-slider-arrow-right { right: 0; }
@media (max-width: 576px) {
  .bb-slider-wrap { padding: 0 8px; }
  .bb-slider-arrow { display: none; }
}

/* Contact form */
.bb-contact-form .form-control {
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid var(--bb-border);
}

/* Feature strip — responsive grid instead of loose flex-wrap */
.bb-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px 10px;
  text-align: center;
  align-items: center;
}
.bb-feature-grid > div { font-size: 0.92rem; }
@media (max-width: 991px) {
  .bb-feature-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .bb-feature-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .bb-feature-grid > div { font-size: 0.82rem; line-height: 1.3; }
  .bb-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    background: var(--bb-yellow);
    border-radius: 50%;
  }
  .bb-feature-icon i {
    font-size: 1.1rem;
    line-height: 1;
    color: var(--bb-green-dark) !important;
  }
}

/* =========================================================
   MOBILE / PREMIUM POLISH PASS
   ========================================================= */

@media (max-width: 991px) {
  /* Tighter, calmer section rhythm on tablets/phones */
  section.py-5 { padding-top: 2.4rem !important; padding-bottom: 2.4rem !important; }
  .section-title, .section-title-plain { font-size: 1.35rem; margin-bottom: 1.4rem; }
}

@media (max-width: 767px) {
  body { overflow-x: hidden; }
  .container { padding-left: 16px; padding-right: 16px; }

  /* Topbar — keep it short and legible on small screens */
  .bb-topbar { font-size: 0.72rem; padding: 7px 0; }
  .bb-topbar .container { flex-wrap: nowrap; }

  /* Navbar */
  .bb-navbar { padding: 10px 0; }
  .bb-navbar .navbar-brand strong { font-size: 1.15rem; }
  .navbar-toggler { border-radius: 8px; padding: 6px 10px; }
  .navbar-collapse { margin-top: 12px; border-top: 1px solid var(--bb-border); padding-top: 10px; }
  .bb-navbar .nav-link { margin: 2px 0; font-size: 0.9rem; }

  /* Hero */
  .bb-hero { padding: 34px 0; }
  .bb-hero .eyebrow { font-size: 1.1rem; }
  .bb-hero h1 { font-size: clamp(1.6rem, 8vw, 2.1rem); }
  .bb-hero .lead { font-size: 0.95rem; }
  .bb-hero .btn-bb-primary { width: 100%; text-align: center; }
  .bb-banner-img { border-radius: 0; }

  /* Section titles */
  .section-title, .section-title-plain { font-size: 1.2rem; }

  /* Product & combo cards — tighter, more app-like on small screens */
  .bb-product-card .card-body,
  .bb-combo-card .card-body { padding: 10px 12px; }
  .bb-product-card .card-body h6,
  .bb-combo-card .card-body h6 { font-size: 0.86rem; min-height: 2.3em; }
  .bb-product-card .card-body .btn { font-size: 0.72rem; padding: 7px 12px; width: 100%; }
  .bb-product-card .price { font-size: 0.95rem; }

  /* Buttons — full-width, touch-friendly on forms */
  .bb-contact-form .btn,
  form .btn-checkout,
  .btn-bb-primary.w-100-mobile { width: 100%; }
  .btn, .btn-bb-primary, .btn-bb-outline { min-height: 40px; }

  /* Tables that don't fit — scroll instead of squeezing/breaking layout */
  .table-responsive, .bb-basket-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Footer — center on mobile for a tidier look */
  .bb-footer { padding: 34px 0 16px; text-align: center; }
  .bb-footer h6 { margin-top: 18px; }
  .bb-footer .d-flex.align-items-center.gap-2.mb-2 { justify-content: center; }
  .bb-footer .social-icons { justify-content: center; display: flex; }
  .bb-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Category pill slider — smaller pills on phones */
  .bb-cat-pill { min-width: 160px; padding: 14px 12px; }
  .bb-cat-pill-icon { font-size: 1.5rem; }
  .bb-cat-pill-text { font-size: 0.88rem; }
}

/* Slim floating WhatsApp button for mobile (desktop keeps the full vertical bar) */
.bb-mobile-whatsapp {
  display: none;
}
@media (max-width: 767px) {
  .bb-mobile-whatsapp {
    display: flex;
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 1000;
  }
}

@media (max-width: 767px) {
  .bb-hero h1 { font-size: 2rem; }
  .bb-floating-social { display: none; }
}
