/* ======================================================
   breadcrumbs.css — 12.14.2025 — 6:31 pm Texas Time
   Breadcrumb Bar + Search (cream) + Cart — GLOBAL
   GDRankin The Bee Place 3.0 — TBP-3.5 SandBox 

   Q?s Why are there 60+ !important in this file?
   ====================================================== */

/* BAR CONTAINER -------------------------------------------------- */
.tbp-breadcrumb-bar {
  background-color: #000000 !important;
  min-height: 60px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 15px !important;
  gap: 20px !important;
}

/* LEFT / CENTER / RIGHT ZONES ----------------------------------- */
.tbp-breadcrumb-left,
.tbp-breadcrumb-center,
.tbp-breadcrumb-right {
  display: flex !important;
  align-items: center !important;
  flex: 1 1 0;
  min-width: 0; /* allows breadcrumbs to ellipsis */
}

.tbp-breadcrumb-left {
  justify-content: flex-start !important;
}

.tbp-breadcrumb-center {
  justify-content: center !important;
}

.tbp-breadcrumb-right {
  justify-content: flex-end !important;
}

/* BREADCRUMB TEXT + GOLD LINKS ---------------------------------- */
#tbp-breadcrumbs {
  min-width: 0;
}

#tbp-breadcrumbs .breadcrumb-nav {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#tbp-breadcrumbs .breadcrumb-nav a {
  color: #FFD700 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

#tbp-breadcrumbs .breadcrumb-nav a:hover {
  color: #FFED8B !important;
  text-decoration: underline !important;
}

#tbp-breadcrumbs .breadcrumb-nav span {
  color: #CCCCCC !important;
}

/* SEARCH BAR — Unified Container (Amazon style) ------------------ */
/* (Restores the cream/yellow background + removes the "divider line") */
.tbp-search-form {
  display: flex !important;
  align-items: center !important;
  height: 38px !important;

  border: 1px solid #000 !important;
  border-radius: 6px !important;
  overflow: hidden !important;

  background-color: #F7F2D0 !important; /* soft white-gold */
  padding: 0 !important;
  margin: 0 !important;
}

.tbp-search-input {
  flex: 1 1 auto !important;

  border: none !important;
  height: 38px !important;
  line-height: 38px !important;

  font-size: 16px !important;
  padding: 0 10px !important;

  background-color: transparent !important;
  color: #000 !important;

  width: 420px !important;
  max-width: 420px !important;

  outline: none;
}

.tbp-search-button {
  width: 42px !important;
  height: 38px !important;

  border: none !important;
  background-color: transparent !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;
}

.tbp-search-button img {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
  display: block;
}


/* CART ICON ------------------------------------------------------ */
.tbp-cart-image {
  width: 84px !important;
  height: 40px !important;
  object-fit: contain !important;
  display: block;
}

/* MOBILE BEHAVIOR ------------------------------------------------ */
/* Breadcrumbs + cart on row 1; search on row 2 */
@media (max-width: 640px) {

  .tbp-breadcrumb-bar {
    flex-wrap: wrap !important;
    min-height: 0 !important;
    height: auto !important;
    align-items: flex-start !important;
    row-gap: 0.4rem;
  }

  /* Row 1 */
  .tbp-breadcrumb-left {
    order: 1;
    flex: 1 1 auto !important;
  }

  .tbp-breadcrumb-right {
    order: 2;
    flex: 0 0 auto !important;
  }

  /* Row 2 */
  .tbp-breadcrumb-center {
    order: 3;
    width: 100%;
    flex: 1 1 100% !important;
    justify-content: flex-start !important;
  }

  .tbp-search-form {
    width: 100% !important;
  }

  .tbp-search-input {
    width: 100% !important;
    max-width: none !important;
  }

  .tbp-cart-image {
    height: 34px !important;
    width: auto !important;
  }
}

/* ===============================
   MOBILE FIXES
   =============================== */
@media (max-width: 640px) {

  /* REMOVE search from breadcrumb bar on mobile */
  .tbp-breadcrumb-center {
    display: none !important;
  }

/* ======================================================
   END OF FILE: breadcrumbs.css
   ====================================================== */
