/* ============================================================
   BEBIOTIC — Page-specific styles
   Styles used by a single page only. Anything reused across
   2+ pages belongs in bebiotic-style.css instead.
   ============================================================ */

/* ============================================================
   HOME — Hero banner
   NOTE: not currently wired into LandingPageViewV3 markup
   (the live hero uses .banner-homepage1 / swiper-banner), kept
   as a ready-made hero component for future use.
   ============================================================ */
.bb-hero {
  background: linear-gradient(135deg, #d6effc 0%, #ebf6ff 50%, #e0f0ff 100%);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.bb-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(59, 158, 232, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.bb-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.bb-hero-eyebrow {
  display: inline-block;
  background: rgba(59, 158, 232, 0.12);
  color: var(--bb-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.bb-hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--bb-blue-dark);
  margin: 0 0 16px;
}

.bb-hero-title span {
  color: var(--bb-blue);
}

.bb-hero-subtitle {
  font-size: 15px;
  color: var(--bb-text-muted);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 380px;
}

.bb-hero-cta {
  display: inline-block;
  background: var(--bb-pink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(244, 114, 182, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.bb-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 114, 182, 0.45);
  color: #fff;
  text-decoration: none;
}

.bb-hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.bb-hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--bb-text);
  border: 1.5px solid rgba(59, 158, 232, 0.15);
}

.bb-hero-badge .badge-icon {
  font-size: 16px;
}

.bb-hero-badge-sub {
  font-weight: 400;
  color: var(--bb-text-muted);
  font-size: 10px;
}

.bb-hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.bb-hero-mascot {
  width: 320px;
  height: 320px;
  background: linear-gradient(145deg, #c8e8fa, #a8d8f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 130px;
  box-shadow: 0 20px 60px rgba(59, 158, 232, 0.2);
  position: relative;
}

.bb-hero-callout {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--bb-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(30, 95, 173, 0.3);
}

.bb-hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.bb-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bb-blue-light);
  transition: all 0.3s;
}

.bb-hero-dot.active {
  background: var(--bb-blue);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .bb-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .bb-hero-image-wrap {
    display: none;
  }

  .bb-hero-subtitle {
    max-width: 100%;
  }

  .bb-hero-badges {
    justify-content: center;
  }
}

/* ============================================================
   HOME — Kategori Produk
   ============================================================ */
.bb-categories {
  background: var(--bb-white);
}

.bb-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .bb-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .bb-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bb-category-card {
  border-radius: var(--bb-radius);
  padding: 20px 12px 16px;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bb-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow-card);
  text-decoration: none;
}

.bb-cat-blue {
  background: #dbf0fc;
}

.bb-cat-pink {
  background: #fce4f0;
}

.bb-cat-lavender {
  background: #ede8fc;
}

.bb-cat-green {
  background: #d4f5e9;
}

.bb-cat-yellow {
  background: #fff0e0;
}

.bb-cat-cream {
  background: #fbf0e8;
}

.bb-category-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  /* display: flex;
  align-items: center;
  justify-content: center; */
  font-size: 36px;
  object-fit: contain;
}

.bb-category-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--bb-text);
}

.bb-cat-blue .bb-category-name {
  color: var(--bb-blue-dark);
}

.bb-cat-green .bb-category-name {
  color: #10563d;
}

.bb-cat-yellow .bb-category-name {
  color: #b45309;
}

/* ============================================================
   HOME — Kenapa Bebiotic
   ============================================================ */
.bb-why {
  background: var(--bb-blue-bg);
}

/* .bb-why-grid / .bb-why-item / .bb-why-icon component moved to
   bebiotic-style.css — shared by Home (Kenapa Bebiotic) and
   About (Misi Kami). */

/* ============================================================
   HOME — Promo Banner
   ============================================================ */
.bb-promo {
  background: linear-gradient(120deg, #c8e8fa 0%, #d6f0fd 100%);
}

.bb-promo-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 48px;
}

@media (max-width: 768px) {
  .bb-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bb-promo-image {
    margin: 0 auto;
  }

  .bb-promo-features {
    justify-content: center;
  }
}

.bb-promo-image {
  width: 260px;
  height: 260px;
  background: linear-gradient(145deg, #a8d8f0, #c8e8fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: 0 16px 40px rgba(59, 158, 232, 0.2);
}

.bb-promo-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--bb-blue-dark);
  line-height: 1.3;
  margin: 0 0 10px;
}

.bb-promo-title span {
  color: var(--bb-pink);
}

.bb-promo-subtitle {
  font-size: 14px;
  color: var(--bb-text-muted);
  margin: 0 0 24px;
}

.bb-promo-cta {
  display: inline-block;
  background: var(--bb-pink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(244, 114, 182, 0.3);
  transition: transform 0.2s;
  margin-bottom: 28px;
}

.bb-promo-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.bb-promo-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.bb-promo-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.bb-promo-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--bb-shadow-card);
}

.bb-promo-feature-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--bb-text);
}

.bb-promo-feature-sub {
  font-size: 11px;
  color: var(--bb-text-muted);
}

/* ============================================================
   HOME — New In Store (product grid)
   ============================================================ */
.bb-products {
  background: var(--bb-white);
}

.bb-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

@media (max-width: 900px) {
  .bb-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   HOME — Trending Products
   ============================================================ */
.bb-trending {
  background: var(--bb-blue-bg);
}

/* ============================================================
   HOME — Shop by Category
   ============================================================ */
.bb-shop-cat {
  background: var(--bb-white);
}

/* Fix filter_data grid — override Bootstrap .row + .col-* */
.bb-shop-cat .filter_data {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}

@media (max-width: 768px) {
  .bb-shop-cat .filter_data {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.bb-shop-cat-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .bb-shop-cat-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOME — Instagram
   ============================================================ */
.bb-instagram {
  background: var(--bb-blue-bg);
  text-align: center;
}

.bb-instagram-handle {
  font-size: 14px;
  color: var(--bb-blue);
  font-weight: 700;
  margin-bottom: 28px;
  display: block;
  text-decoration: none;
}

.bb-instagram-handle:hover {
  color: var(--bb-blue-dark);
  text-decoration: none;
}

/* ============================================================
   PRODUCT — Shop layout (sidebar + grid)
   ============================================================ */
.bb-shop {
  background: var(--bb-white);
  padding: 24px;
}

.bb-shop-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bb-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .bb-shop-layout {
    grid-template-columns: 1fr;
  }
}

.bb-product-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bb-product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bb-product-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-text-muted);
}

.bb-product-count strong {
  color: var(--bb-blue-dark);
}

.bb-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-text-muted);
}

.bb-sort select {
  border: 1.5px solid var(--bb-blue-light);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-text);
  background: var(--bb-white);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.bb-sort select:focus {
  border-color: var(--bb-blue);
}

/* Filter_data grid — JS renders .col-* inside .row.filter_data */
.bb-product-area .filter_data {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important;
}

@media (max-width: 1100px) {
  .bb-product-area .filter_data {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .bb-product-area .filter_data {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Product listing renders slightly denser cards than other
   sections (3-up grid vs 4-up), so trim the shared card type. */
.bb-product-area .cardTitle {
  font-size: 13px !important;
}

.bb-product-area .lbl-hot {
  font-size: 10px !important;
  padding: 3px 8px !important;
}

/* Empty state */
.bb-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--bb-text-muted);
}

.bb-empty-icon {
  font-size: 56px;
  margin-bottom: 12px;
}

.bb-empty p {
  font-size: 15px;
  font-weight: 600;
}

/* ============================================================
   PRODUCT — Recommended Products (swiper)
   ============================================================ */
.bb-recommended {
  background: var(--bb-blue-bg);
  padding: 60px 24px;
}

.bb-recommended-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bb-recommended-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.bb-recommended-header h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--bb-blue-dark);
  margin: 0 0 4px;
}

.bb-recommended-header p {
  font-size: 13px;
  color: var(--bb-text-muted);
  margin: 0;
}

/* Instagram CTA (.bb-instagram-product) moved to bebiotic-style.css —
   shared by Product and Contact pages. */

/* ============================================================
   PRODUCT DETAIL — Gallery + info + tabs
   ============================================================ */
.bb-detail {
  background: var(--bb-white);
  padding: 48px 24px 60px;
}

.bb-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bb-detail-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .bb-detail-layout {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.bb-detail-gallery {
  display: flex;
  gap: 12px;
}

.bb-detail-gallery-thumbs {
  width: 84px;
  height: 420px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.bb-detail-gallery-thumbs .swiper-slide {
  border-radius: var(--bb-radius);
  overflow: hidden;
  border: 1.5px solid #e8f0f8;
  aspect-ratio: 1;
  cursor: pointer;
  opacity: 0.6;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}

.bb-detail-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}

.bb-detail-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--bb-blue);
}

.bb-detail-gallery-main {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--bb-radius-lg);
  overflow: hidden;
  background: var(--bb-blue-bg);
  position: relative;
}

.bb-detail-gallery-main .swiper-slide {
  width: 100%;
  height: 100%;
}

.bb-detail-gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}

.bb-detail-gallery-main .swiper-button-prev,
.bb-detail-gallery-main .swiper-button-next {
  width: 36px;
  height: 36px;
  background: var(--bb-white);
  border-radius: 50%;
  box-shadow: var(--bb-shadow-card);
  --swiper-navigation-color: var(--bb-blue-dark);
  --swiper-navigation-size: 14px;
}

@media (max-width: 480px) {
  .bb-detail-gallery-thumbs {
    width: 64px;
    height: 320px;
  }
}

/* Info column */
.bb-detail-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bb-detail-discount:empty {
  display: none;
}

.bb-detail-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--bb-blue-dark);
  margin: 4px 0 10px;
}

.bb-detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.bb-detail-rating .star-rating {
  font-size: 18px;
}

.bb-detail-rating-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-text-muted);
}

.bb-detail-price {
  margin-bottom: 18px;
}

.bb-detail-price .price-main {
  font-size: 26px;
  font-weight: 900;
  color: var(--bb-blue-dark);
}

.bb-detail-price .price-line {
  font-size: 15px;
  color: var(--bb-text-muted);
  text-decoration: line-through;
  margin-left: 10px;
}

.bb-detail-brief {
  font-size: 14px;
  color: var(--bb-text-muted);
  line-height: 1.7;
  margin: 0 0 24px;

  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(251, 111, 146, 0.12);
  overflow-wrap: break-word;
  word-break: break-word;

  height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bb-detail-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.bb-detail-quantity-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--bb-text);
}

.bb-detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.bb-detail-actions .btn-brand-1-border {
  display: inline-block;
  border: none;
  background: var(--bb-blue-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 8px 20px rgba(30, 95, 173, 0.25);
}

.bb-detail-actions .btn-brand-1-border:hover {
  background: var(--bb-blue);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.bb-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1.5px solid var(--bb-blue-light);
}

.bb-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.bb-detail-meta-item span {
  color: var(--bb-text-muted);
  font-weight: 600;
  min-width: 70px;
}

.bb-detail-meta-item strong {
  color: var(--bb-text);
  font-weight: 700;
}

/* Tabs */
.bb-detail-tabs-card {
  margin-top: 56px;
}

.bb-detail-tabs {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-bottom: 1.5px solid var(--bb-blue-light);
}

.bb-detail-tab {
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bb-text-muted);
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.bb-detail-tab:hover {
  color: var(--bb-blue-dark);
}

.bb-detail-tab.active {
  color: var(--bb-blue-dark);
  border-bottom-color: var(--bb-blue);
}

/* Informations tab — Skin Type / Skin Concerns / Benefits / Ingredients,
   populated as <li> tags by fetchDetailProduct(). */
.bb-detail-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

@media (max-width: 600px) {
  .bb-detail-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.bb-detail-info-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--bb-blue-dark);
  margin: 0 0 12px;
}

.bb-detail-tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.bb-detail-tag-list:empty::after {
  content: "—";
  color: var(--bb-text-muted);
  font-size: 13px;
}

.bb-detail-tag-list li {
  background: var(--bb-blue-bg);
  color: var(--bb-text);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================================================
   CONTACT — Info cards + map
   ============================================================ */
.bb-contact {
  background: var(--bb-white);
  padding: 0 24px 60px;
}

.bb-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bb-contact-map {
  border-radius: var(--bb-radius-lg);
  overflow: hidden;
  box-shadow: var(--bb-shadow-card);
  margin-bottom: 40px;
}

.bb-contact-map iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.bb-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .bb-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .bb-contact-grid {
    grid-template-columns: 1fr;
  }
}

.bb-contact-card {
  background: var(--bb-white);
  border: 1.5px solid #e8f0f8;
  border-radius: var(--bb-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.bb-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow-card);
}

.bb-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bb-blue-bg);
  color: var(--bb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bb-contact-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--bb-blue-dark);
  margin: 0;
}

.bb-contact-value {
  font-size: 13px;
  color: var(--bb-text-muted);
  line-height: 1.6;
  margin: 0;
}

.bb-contact-value a {
  color: var(--bb-text-muted);
  text-decoration: none;
}

.bb-contact-value a:hover {
  color: var(--bb-blue);
  text-decoration: none;
}

/* Get in touch form — currently hidden pending backend wiring,
   kept styled and ready for when the form is activated. */
.bb-contact-form-section {
  padding-top: 48px;
}

.bb-contact-form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--bb-blue-dark);
  margin: 0 0 28px;
}

.bb-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 860px) {
  .bb-contact-form-grid {
    grid-template-columns: 1fr;
  }
}

.bb-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.bb-contact-form .bb-form-group.full {
  grid-column: 1 / -1;
}

.bb-contact-form textarea.bb-form-control {
  resize: vertical;
  min-height: 130px;
}

.bb-contact-form .bb-btn-primary {
  width: auto;
  padding: 12px 32px;
}

.bb-contact-support h4,
.bb-contact-address h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--bb-blue-dark);
  margin: 0 0 10px;
}

.bb-contact-support p,
.bb-contact-address p {
  font-size: 13px;
  color: var(--bb-text-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}

/* ============================================================
   ABOUT
   Warm storytelling palette, scoped to .bb-about so it never
   collides with the core --bb-* brand tokens used site-wide.
   ============================================================ */
.bb-about {
  --bb-about-cream: #fffbf4;
  --bb-about-cream-deep: #fff4e6;
  --bb-about-lavender: #eae3f7;
  --bb-about-lavender-deep: #c9b7ec;
  --bb-about-lavender-text: #7a5fb5;
  --bb-about-pink: #fde4ea;
  --bb-about-pink-deep: #f6afc1;
  --bb-about-pink-text: #d6678a;
  --bb-about-sage: #e1f0e2;
  --bb-about-sage-deep: #a9d6ae;
  --bb-about-sage-text: #5c9468;
  --bb-about-gold: #f8d77e;
  --bb-about-gold-text: #c99a2e;
  --bb-about-brown: #5b4b3f;
  --bb-about-brown-soft: #8a776a;
  background: var(--bb-white);
  padding: 0 24px 60px;
}

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

.bb-about-feature-image {
  border-radius: var(--bb-radius-lg);
  overflow: hidden;
  box-shadow: var(--bb-shadow-card);
  margin-bottom: 48px;
}

.bb-about-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bb-about-content {
  max-width: 760px;
  margin: 0 auto;
}

.bb-about-content h2 {
  position: relative;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bb-text);
}

.bb-about-deco {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bb-about-pink-text);
  margin-bottom: 4px;
}

.bb-about-section-title .bb-about-deco,
.bb-about-storybook-card .bb-about-deco {
  text-align: center;
  color: var(--bb-about-sage-text);
}

.bb-about-section-gap {
  margin-top: 56px;
}

.bb-about-content p {
  font-size: 15px;
  color: var(--bb-about-brown-soft);
  line-height: 1.75;
  margin: 0 0 16px;
}

.bb-about-content p strong {
  color: var(--bb-about-brown);
}

.bb-about-content p.center {
  text-align: center;
}

/* Highlight quote */
.bb-about-highlight {
  background: var(--bb-about-pink);
  border-radius: 18px;
  padding: 24px 30px;
  margin: 28px 0;
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--bb-about-pink-text) !important;
  text-align: center;
  line-height: 1.6;
  position: relative;
}

.bb-about-highlight::before,
.bb-about-highlight::after {
  content: '"';
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--bb-about-pink-deep);
  position: absolute;
  line-height: 1;
}

.bb-about-highlight::before {
  top: 8px;
  left: 16px;
}

.bb-about-highlight::after {
  bottom: -2px;
  right: 16px;
}

/* Signoff icons row */
.bb-about-signoff {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

/* Mission statement box */
.bb-about-quote {
  background: var(--bb-about-lavender);
  border-radius: 24px;
  padding: 40px 36px;
  margin-top: 48px;
  text-align: center;
}

.bb-about-quote .quote-icon {
  width: 34px;
  height: 34px;
  color: var(--bb-about-lavender-deep);
  margin-bottom: 14px;
}

.bb-about-quote h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  text-align: center;
}

.bb-about-quote p {
  font-size: 1rem;
  color: var(--bb-about-brown);
  max-width: 620px;
  margin: 0 auto;
}

/* Gallery (hidden — kept styled and ready to activate) */
.bb-about-gallery {
  padding: 60px 0;
}

.bb-about-gallery-inner {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 24px;
}

.bb-about-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.bb-about-gallery-list {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

@media (max-width: 720px) {
  .bb-about-gallery-list {
    grid-template-columns: 1fr;
  }
}

.bb-about-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--bb-radius);
  display: block;
}

.bb-about-gallery-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bb-about-gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--bb-radius);
  display: block;
}

/* Reviews (hidden — kept styled and ready to activate) */
.bb-about-reviews {
  padding: 40px 0 60px;
  background: var(--bb-blue-bg);
}

.bb-about-review-card {
  background: var(--bb-white);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow-card);
  padding: 24px;
  margin: 8px;
}

.bb-about-review-rating img {
  width: 16px;
  height: 16px;
}

.bb-about-review-text {
  font-size: 14px;
  color: var(--bb-text);
  line-height: 1.6;
  margin: 12px 0;
}

.bb-about-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-about-review-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.bb-about-review-author span {
  font-weight: 700;
  color: var(--bb-blue-dark);
}

/* Stats (hidden — kept styled and ready to activate) */
.bb-about-stats {
  padding: 32px 0;
}

.bb-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 680px) {
  .bb-about-stats-grid {
    grid-template-columns: 1fr;
  }
}

.bb-about-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--bb-text);
  margin-bottom: 6px;
}

.bb-about-stat p {
  font-size: 13px;
  color: var(--bb-text-muted);
  margin: 0;
}

/* Storybook */
.bb-about-storybook {
  padding: 64px 0 16px;
}

.bb-about-storybook-card {
  position: relative;
  background: var(--bb-about-lavender);
  border-radius: 28px;
  padding: 48px 52px;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .bb-about-storybook-card {
    padding: 32px 24px;
  }
}

.bb-about-storybook-card h2 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  color: var(--bb-text);
}

.bb-about-storybook-card p {
  font-size: 15px;
  color: var(--bb-about-brown-soft);
  margin-bottom: 16px;
}

.bb-about-characters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0 28px;
}

.bb-about-character-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
}

.bb-about-character-pill svg {
  width: 14px;
  height: 14px;
}

.bb-about-character-pill--bebi {
  background: var(--bb-about-gold);
  color: var(--bb-about-gold-text);
}

.bb-about-character-pill--aloe {
  background: var(--bb-about-sage);
  color: var(--bb-about-sage-text);
}

.bb-about-character-pill--kapas {
  background: var(--bb-white);
  color: var(--bb-about-lavender-text);
}

.bb-about-character-pill--lavender {
  background: var(--bb-about-pink);
  color: var(--bb-about-pink-text);
}

.bb-about-dialogue {
  border-radius: 16px;
  padding: 14px 20px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--bb-about-brown);
  font-style: italic;
  position: relative;
  padding-left: 54px;
  background: var(--bb-white);
}

.bb-about-speaker {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  font-style: normal;
  color: #fff;
}

.bb-about-dialogue--aloe .bb-about-speaker {
  background: var(--bb-about-sage-deep);
}

.bb-about-dialogue--kapas .bb-about-speaker {
  background: var(--bb-about-lavender-deep);
}

.bb-about-dialogue--lavender .bb-about-speaker {
  background: var(--bb-about-pink-deep);
}

.bb-about-storybook-end {
  text-align: center;
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bb-about-lavender-text);
  margin-top: 24px;
}

.bb-about-storybook-end-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
