/** Shopify CDN: Minification failed

Line 959:0 Unexpected "}"

**/
:root {
  --tbe-cream: #f6f1e7;
  --tbe-cream-strong: #fffdf8;
  --tbe-beige: #dfd2af;
  --tbe-brown: #2e1d0dff;
  --tbe-blush: #eed6d7;
  --tbe-gold: #d4b36a;
  --tbe-border: rgba(46, 29, 13, 0.12);
  --tbe-shadow: 0 18px 48px rgba(46, 29, 13, 0.09);
  --tbe-shadow-hover: 0 28px 72px rgba(46, 29, 13, 0.16);
  --tbe-font: "Century Gothic", "Futura", "Avenir", "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--tbe-cream); scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(246, 241, 231, 0.94)),
    var(--tbe-cream);
  color: var(--tbe-brown);
  font-family: var(--tbe-font);
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

.tbe-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) { .tbe-container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .tbe-container { padding-inline: 3rem; } }
@media (min-width: 1280px) { .tbe-container { padding-inline: 4rem; } }

.tbe-section { padding-block: clamp(4.75rem, 8vw, 8rem); }
.tbe-section--sm { padding-block: clamp(3.5rem, 5vw, 5.5rem); }
.tbe-center { text-align: center; }

.tbe-eyebrow {
  color: rgba(46, 29, 13, 0.62);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tbe-title {
  margin: 0;
  color: var(--tbe-brown);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 550;
  line-height: 1.02;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tbe-home-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tbe-home-logo img {
  width: 220px;
  max-width: 70vw;
  height: auto;
  display: block;
}

.tbe-section-title {
  margin: 0;
  color: var(--tbe-brown);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.08;
}

.tbe-copy {
  color: rgba(46, 29, 13, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.tbe-glass {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--tbe-shadow);
  backdrop-filter: blur(18px);
}

.tbe-button,
.shopify-payment-button__button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--tbe-brown);
  background: var(--tbe-brown);
  color: var(--tbe-cream-strong);
  padding: 0.7rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tbe-button:hover,
.shopify-payment-button__button:hover {
  transform: translateY(-1px);
  background: #3a2717;
  box-shadow: 0 12px 28px rgba(46, 29, 13, 0.14);
}

.tbe-button--ghost {
  border-color: rgba(46, 29, 13, 0.16);
  background: rgba(255, 253, 248, 0.48);
  color: var(--tbe-brown);
  backdrop-filter: blur(12px);
}

.tbe-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 179, 106, 0.28);
  background: rgba(223, 210, 175, 0.35);
  color: #2e1d0db8;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tbe-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--tbe-border);
  background: #2e1d0dff;
  color: var(--tbe-brown);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.tbe-header__inner {
  display: flex;
  min-height: 5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-block: 1rem;
}

.tbe-logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f6f1e7;
}

.tbe-nav {
  order: 3;
  display: flex;
  width: 100%;
  gap: 1.25rem;
  overflow-x: auto;
  
}

.tbe-nav a,
.tbe-cart-link {
  color: rgba(46, 29, 13, 0.78);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
  
}

.tbe-nav a:hover,
.tbe-cart-link:hover { color: var(--tbe-brown); }

.tbe-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(46, 29, 13, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.48);
  padding: 0.7rem 1rem;
}

@media (min-width: 900px) {
  .tbe-nav { order: 0; width: auto; gap: 2rem; }
}

.tbe-footer {
  border-top: 1px solid rgba(46, 29, 13, 0.1);
  background: var(--tbe-brown);
  color: var(--tbe-cream-strong);
}

.tbe-footer__main {
  display: grid;
  gap: 2.5rem;
  padding-block: 3rem;
}

.tbe-footer__links {
  display: grid;
  gap: 2rem;
}

.tbe-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

.tbe-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.25rem;
  color: rgba(255,253,248,0.55);
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .tbe-footer__main { grid-template-columns: 1fr 1.2fr; }
  .tbe-footer__links { grid-template-columns: 1fr 1fr; }
}

.tbe-home {
  display: flex;
  min-height: calc(100vh - 5rem);
  align-items: center;
  justify-content: center;
}

.tbe-home__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(4rem, 7vw, 6rem);
  text-align: center;
}

.tbe-home__cards {
  display: grid;
  width: 100%;
  max-width: 58rem;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .tbe-home__cards { grid-template-columns: minmax(0, 27.5rem) minmax(0, 27.5rem); }
}

.tbe-collection-card {
  position: relative;
  display: flex;
  width: 180px;
  height: 80px;
  max-width: 27.5rem;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.75rem;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
  background: rgba(247, 241, 241, 0.55);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow:
    0 16px 40px rgba(46,29,13,.08);
  transition: all .3s ease;
}

.tbe-collection-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(46,29,13,.14);
}

.tbe-collection-card__bar {
  position: absolute;
  inset: 0 0 auto;
  height: 0.5rem;
}

.tbe-collection-card__body {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.tbe-collection-hero {
  border-bottom: 1px solid rgba(46, 29, 13, 0.1);
}

.tbe-collection-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(4rem, 7vw, 6rem);
  text-align: center;
}

.tbe-accent-line {
  display: block;
  width: 7rem;
  height: 0.5rem;
  margin-bottom: 1.75rem;
  border-radius: 999px;
  background: var(--tbe-beige);
}

.tbe-filter-wrap {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 0.75rem;
}

.tbe-filter {
  display: flex;
  width: max-content;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  padding: 0.5rem;
  box-shadow: 0 18px 44px rgba(46,29,13,0.08);
  backdrop-filter: blur(18px);
}

.tbe-filter a {
  min-height: 2.5rem;
  border: 1px solid rgba(46,29,13,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  color: var(--tbe-brown);
  padding: 0.72rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tbe-filter a:hover { transform: translateY(-3px); background: rgba(255,255,255,0.76); }
.tbe-filter a.is-active { border-color: var(--tbe-brown); background: var(--tbe-brown); color: var(--tbe-cream-strong); }

.tbe-product-grid,
.tbe-bundle-grid {
  display: grid;
  justify-items: center;
  gap: 2.5rem 1.75rem;
}

@media (min-width: 640px) {
  .tbe-product-grid,
  .tbe-bundle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .tbe-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tbe-bundle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1440px) {
  .tbe-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.tbe-product-card,
.tbe-bundle-card {
  width: 100%;
  max-width: 17rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.62);
  color: var(--tbe-brown);
  box-shadow: 0 18px 48px rgba(46,29,13,0.09);
  backdrop-filter: blur(18px);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.tbe-bundle-card { max-width: 24rem; }

.tbe-product-card:hover,
.tbe-bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tbe-shadow-hover);
}

.tbe-product-card__image,
.tbe-bundle-card__image {
  aspect-ratio: 4 / 4.55;
  background: rgba(223, 210, 175, 0.38);
  padding: 0.875rem;
}

.tbe-bundle-card__image { aspect-ratio: 4 / 3.35; }

.tbe-product-card__placeholder,
.tbe-bundle-card__placeholder {
  display: flex;
  height: 100%;
  align-items: flex-end;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 1.15rem;
  background: rgba(238,214,215,0.3);
  padding: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
}

.tbe-product-card__body,
.tbe-bundle-card__body { padding: 1.25rem; }

.tbe-product-card__line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.tbe-product-card h3,
.tbe-bundle-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
}

.tbe-muted { color: rgba(46,29,13,0.58); }

.tbe-product-page {
  display: grid;
  gap: 3rem;
  padding-block: clamp(4rem, 7vw, 6rem);
}

@media (min-width: 1024px) {
  .tbe-product-page { grid-template-columns: 1.05fr 0.95fr; }
  .tbe-product-info { position: sticky; top: 7rem; align-self: start; }
}

.tbe-product-gallery {
  display: grid;
  gap: 1rem;
}

.tbe-product-gallery__main {
  min-height: 28rem;
  border-radius: 1.25rem;
  padding: 1rem;
}

.tbe-product-gallery__main-inner {
  display: flex;
  min-height: 26rem;
  height: 100%;
  align-items: flex-end;
  border-radius: 0.85rem;
  background: rgba(223,210,175,0.55);
  padding: 1.5rem;
}

.tbe-detail-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(46,29,13,0.1);
  padding-top: 2rem;
}

.tbe-detail-list h2 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tbe-warning { color: #b42318; font-weight: 700; }

.tbe-quantity {
  min-height: 3rem;
  width: 6rem;
  border: 1px solid var(--tbe-border);
  border-radius: 0.65rem;
  background: rgba(255,253,248,0.68);
  color: var(--tbe-brown);
  padding: 0.75rem 0.9rem;
}

.tbe-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

/* Product page image sizing */
.tbe-product-gallery {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.tbe-product-gallery__thumbs {
  display: grid;
  gap: 0.75rem;
}

.tbe-product-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(46, 29, 13, 0.12);
  background: rgba(255, 253, 248, 0.7);
  cursor: pointer;
}

.tbe-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbe-product-gallery__main {
  aspect-ratio: 1 / 1.18;
  min-height: unset;
  overflow: hidden;
  border-radius: 1.5rem;
}

.tbe-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .tbe-product-gallery {
    grid-template-columns: 1fr;
  }

  .tbe-product-gallery__thumbs {
    display: flex;
    overflow-x: auto;
  }

  .tbe-product-thumb {
    width: 76px;
    flex: 0 0 76px;
  }
}

/* Product page gallery refinement */
.tbe-product-gallery {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.tbe-product-gallery__thumbs {
  display: grid;
  gap: 0.75rem;
}

.tbe-product-thumb {
  width: 5.5rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(46, 29, 13, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 253, 248, 0.72);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(46, 29, 13, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tbe-product-thumb:hover,
.tbe-product-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(46, 29, 13, 0.28);
  box-shadow: 0 14px 32px rgba(46, 29, 13, 0.1);
}

.tbe-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbe-product-gallery__main {
  min-height: unset;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 0.9rem;
}

.tbe-product-gallery__main-inner {
  min-height: unset;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: 1.1rem;
  padding: 0;
  background: rgba(223, 210, 175, 0.55);
}

.tbe-product-gallery__main-inner img,
#TBEProductMainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .tbe-product-gallery {
    grid-template-columns: 1fr;
  }

  .tbe-product-gallery__thumbs {
    order: 2;
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .tbe-product-thumb {
    width: 4.75rem;
    flex: 0 0 4.75rem;
  }
}

/* Bundle cards aligned with product card system */
.tbe-bundle-card {
  max-width: 21rem;
}

.tbe-bundle-card__image {
  aspect-ratio: 1 / 1.1;
}

.tbe-bundle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.tbe-bundle-card__accent {
  width: 4.5rem;
  height: 0.3rem;
  margin: 0 0 1rem;
}

.tbe-bundle-card__subtitle {
  margin-top: 0.65rem;
  font-size: 0.84rem;
  line-height: 1.55;
}

.tbe-bundle-card__includes {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: rgba(46, 29, 13, 0.62);
  font-size: 0.84rem;
  line-height: 1.6;
}

.tbe-product-card__price {
  margin: 0;
  white-space: nowrap;
}

.tbe-variant-group {
  margin-bottom: 1rem;
}

.tbe-variant-label {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(46, 29, 13, 0.62);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tbe-variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tbe-variant-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tbe-variant-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 29, 13, 0.15);
  background: rgba(255, 255, 255, 0.65);
  color: var(--tbe-brown);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tbe-variant-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 29, 13, 0.08);
}

.tbe-variant-radio:checked + .tbe-variant-button {
  background: var(--tbe-brown);
  border-color: var(--tbe-brown);
  color: var(--tbe-cream-strong);
}

.tbe-variant-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 0.75rem 1rem;

  border-radius: 999px;

  border: 1px solid rgba(46,29,13,.15);

  background: rgba(255,255,255,.65);

  color: #2E1D0D;

  font-size: .875rem;

  font-weight: 600;

  cursor: pointer;

  transition: all .2s ease;
}

.tbe-variant-radio:checked + .tbe-variant-button {
  background: #2E1D0D;
  color: white;
  border-color: #2E1D0D;
}

/* sold out state */

.tbe-variant-button.is-sold-out {
  opacity: .45;
  cursor: not-allowed;
  background: rgba(0,0,0,.04);
}

.tbe-sold-out-badge {
  margin-left: .5rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* slash effect */

.tbe-variant-button.is-sold-out::after {
  content: "";

  position: absolute;

  left: 8%;
  right: 8%;
  top: 50%;

  height: 1px;

  background: rgba(46,29,13,.45);

  transform: rotate(-8deg);
}

/* Homepage focal image gallery */
.tbe-hero-gallery {
  width: 100%;
  max-width: 62rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.tbe-hero-gallery__item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.48);
  box-shadow: 0 18px 48px rgba(46,29,13,.09);
  backdrop-filter: blur(18px);
  transform: translateY(10px);
}

.tbe-hero-gallery__item.is-featured {
  aspect-ratio: 4 / 5.4;
  transform: translateY(0);
  box-shadow: 0 28px 72px rgba(46,29,13,.16);
}

.tbe-hero-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbe-home-best-sellers {
  width: 100%;
  max-width: 46rem;
  margin-top: 5rem;
}

.tbe-best-seller-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 17rem));
  justify-content: center;
  gap: 1.75rem;
  margin-top: 2rem;
  text-align: left !important;
}

.tbe-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

@media (max-width: 760px) {
  .tbe-hero-gallery{
    display:grid;
    grid-template-columns:1fr;
    gap:1rem;
    overflow:visible;
  }

  .tbe-hero-gallery__item{
    width:100%;
  }

  .tbe-hero-gallery__item:not(.is-featured){
    display:none;
  }

  .tbe-best-seller-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

/* Mobile/header + homepage collection polish */

/* Header should never require horizontal scrolling */
@media (max-width: 899px) {
  .tbe-header__inner {
    justify-content: center;
    text-align: center;
  }

  .tbe-logo {
    width: 100%;
    text-align: center;
  }

  .tbe-nav {
    order: 2;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.7rem 1rem;
  }

  .tbe-nav a,
  .tbe-cart-link {
    font-size: 0.78rem;
  }

  .tbe-cart-link {
    order: 3;
    margin-inline: auto;
    padding: 0.55rem 0.85rem;
  }
}

/* Homepage collection card grid */
.tbe-home__cards--collections{
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.tbe-home__cards--collections .tbe-collection-card {
  min-height: 11.5rem;
  max-width: none;
  padding: 1.25rem;
  border-radius: 1.25rem;
}

.tbe-home__cards--collections .tbe-section-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -.04em;
  text-transform: uppercase;
}
}

/* Tablet layout */
@media (max-width: 1100px) {
  .tbe-home__cards--collections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile collection cards: compact, clean, no giant blocks */
@media(max-width:768px){

  .tbe-home__cards--collections{
    grid-template-columns:repeat(2,160px);
    justify-content:center;
  }

  .tbe-home__cards--collections .tbe-collection-card {
    min-height: 9.5rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  .tbe-home__cards--collections .tbe-collection-card__bar {
    height: 0.35rem;
  }

  .tbe-home__cards--collections .tbe-section-title {
    font-size: 1.05rem;
  }

  .tbe-home__cards--collections .tbe-copy {
    font-size: 0.75rem;
  }

  .tbe-home__cards--collections .tbe-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
}

/* Product cards: at least two per row on mobile */
@media (max-width: 639px) {
  .tbe-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
    justify-items: stretch;
  }

  .tbe-product-card {
    max-width: none;
    border-radius: 1rem;
  }

  .tbe-product-card__image {
    aspect-ratio: 1 / 1.08;
    padding: 0.45rem;
  }

  .tbe-product-card__body {
    padding: 0.85rem;
  }

  .tbe-product-card__line {
    flex-direction: column;
    gap: 0.45rem;
  }

  .tbe-product-card h3 {
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .tbe-product-card .tbe-muted,
  .tbe-product-card p {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .tbe-product-card strong {
    font-size: 0.8rem;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .tbe-product-grid {
    gap: 0.75rem 0.55rem;
  }

  .tbe-container {
    padding-inline: 0.85rem;
  }
}

@media (max-width: 768px){

  .tbe-best-seller-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1rem;
    width:100%;
  }

  .tbe-best-seller-grid .tbe-product-card{
    width:100%;
    max-width:none;
  }

  .tbe-best-seller-grid .tbe-product-card__image{
    aspect-ratio:1/1;
  }

  .tbe-best-seller-grid h3{
    font-size:.85rem;
    align-items: left;
  }

  .tbe-best-seller-grid .price{
    font-size:.85rem;
    align-items: right;
  }
}

/* Header logo + cart icon refinement */
.tbe-header__inner {
  position: relative;
}

.tbe-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
}

.tbe-logo-image {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
}

.tbe-logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f6f1e7;
}

.tbe-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: 0;
  border-radius: 999px;
}

.tbe-cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--tbe-brown);
  color: var(--tbe-cream-strong);
  font-size: 0.65rem;
  font-weight: 700;
}

/* Better mobile header */
@media (max-width: 899px) {
  .tbe-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo cart"
      "nav nav";
    align-items: center;
    gap: 0.8rem;
  }

  .tbe-logo-wrap {
    grid-area: logo;
    justify-self: start;
  }

  .tbe-cart-link {
    grid-area: cart;
    justify-self: end;
  }

  .tbe-nav {
    grid-area: nav;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.7rem 1rem;
  }

  .tbe-nav a {
    font-size: 0.78rem;
  }

  .tbe-logo-image {
    width: 2rem;
    height: 2rem;
  }

  .tbe-logo-text {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }
}

/* Mobile hamburger header */
.tbe-header__inner {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.75rem;
}

.tbe-menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(46,29,13,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.tbe-menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--tbe-brown);
  border-radius: 999px;
}

.tbe-logo-wrap {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.tbe-cart-link {
  justify-self: end;
}

.tbe-mobile-nav {
  display: none;
  border-top: 1px solid rgba(46,29,13,.08);
  padding: 1rem 1.25rem 1.35rem;
  text-align: center;
  background: rgba(246,241,231,.96);
}

.tbe-menu-open .tbe-mobile-nav {
  display: grid;
  gap: .9rem;
}

.tbe-mobile-nav a {
  font-weight: 700;
  color: var(--tbe-brown);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Hide old nav if still present */
.tbe-nav {
  display: none;
}

/* Homepage spacing fixes */
.tbe-hero-gallery {
  margin-bottom: 2.25rem;
}

.tbe-home__cards--collections {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  justify-items: center;
  gap: 1rem;
}

.tbe-home__cards--collections .tbe-collection-card {
  width: 100%;
  max-width: 230px;
  min-height: 150px;
}

.tbe-home__cards--collections .tbe-collection-card:nth-child(3) {
  grid-column: 1 / -1;
}

/* Best sellers: two per row on mobile */
.tbe-best-seller-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  justify-items: center;
}

.tbe-best-seller-grid .tbe-product-card {
  max-width: none;
  width: 100%;
}

/* Mobile refinements */
@media (max-width: 760px) {
  .tbe-logo-text {
    font-size: .78rem;
    letter-spacing: .16em;
  }

  .tbe-logo-image {
    width: 30px;
    height: 30px;
  }

  .tbe-hero-gallery {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }

  .tbe-home__cards--collections {
    max-width: 360px;
    gap: .85rem;
    margin-top: 0;
    margin-bottom: 3.5rem;
  }

  .tbe-home__cards--collections .tbe-collection-card {
    max-width: none;
    min-height: 135px;
    padding: 1rem;
  }

  .tbe-home__cards--collections .tbe-section-title {
    font-size: 1.05rem;
  }

  .tbe-home__cards--collections .tbe-copy {
    font-size: .78rem;
  }

  .tbe-best-seller-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tbe-best-seller-grid .tbe-product-card__body {
    padding: .85rem;
    text-align: left;
  }

  .tbe-best-seller-grid h3 {
    font-size: .8rem;
    text-align: left;
  }
}

/* ================================
   FINAL MOBILE OVERRIDES
   paste at very bottom of theme.css
================================ */

/* Header: mobile hamburger, centered logo, cart right */
@media (max-width: 760px) {
  .tbe-header__inner {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) 44px !important;
    grid-template-areas: "menu logo cart" !important;
    align-items: center !important;
    min-height: 72px !important;
    padding-block: 0.75rem !important;
    gap: 0.5rem !important;
  }

  .tbe-menu-toggle {
    grid-area: menu !important;
    justify-self: start !important;
    display: inline-flex !important;
  }

  .tbe-logo-wrap {
    grid-area: logo !important;
    justify-self: center !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .tbe-logo-text {
    max-width: 190px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-align: center !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.14em !important;
  }

  .tbe-logo-image {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 auto !important;
  }

  .tbe-cart-link {
    grid-area: cart !important;
    justify-self: end !important;
    margin: 0 !important;
  }

  .tbe-nav {
    display: none !important;
  }
}

/* Mobile nav dropdown */
.tbe-mobile-nav {
  display: none;
}

.tbe-menu-open .tbe-mobile-nav {
  display: grid;
  gap: 0.9rem;
  border-top: 1px solid rgba(46, 29, 13, 0.08);
  padding: 1rem 1.25rem 1.35rem;
  text-align: center;
  background: #f6f1e7;
}

.tbe-mobile-nav a {
  font-weight: 700;
  color: var(--tbe-brown);
}

/* Hero images: show all 3 on mobile, no side scroll */
@media (max-width: 760px) {
  .tbe-hero-gallery {
    width: 100% !important;
    max-width: 380px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    margin: 2rem auto 1.25rem !important;
    overflow: visible !important;
  }

  .tbe-hero-gallery__item,
  .tbe-hero-gallery__item.is-featured {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    transform: none !important;
    border-radius: 1rem !important;
  }

  .tbe-hero-gallery__item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* Collection cards: centered with better spacing */
@media (max-width: 760px) {
  .tbe-home__cards--collections {
    width: 100% !important;
    max-width: 360px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: center !important;
    justify-items: center !important;
    gap: 0.85rem !important;
    margin: 1rem auto 3.5rem !important;
  }

  .tbe-home__cards--collections .tbe-collection-card {
    width: 100% !important;
    max-width: none !important;
    min-height: 135px !important;
    padding: 1rem !important;
    border-radius: 1rem !important;
  }

  .tbe-home__cards--collections .tbe-collection-card:nth-child(3) {
    grid-column: 1 / -1 !important;
    max-width: 170px !important;
  }

  .tbe-home__cards--collections .tbe-section-title {
    font-size: 1.05rem !important;
  }

  .tbe-home__cards--collections .tbe-copy {
    font-size: 0.78rem !important;
  }
}

/* Best sellers and product grids: 2 per row on mobile */
@media (max-width: 760px) {
  .tbe-product-grid,
  .tbe-best-seller-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem 0.75rem !important;
    justify-items: stretch !important;
    width: 100% !important;
  }

  .tbe-product-card,
  .tbe-best-seller-grid .tbe-product-card {
    width: 100% !important;
    max-width: none !important;
    border-radius: 1rem !important;
  }

  .tbe-product-card__image {
    aspect-ratio: 1 / 1.05 !important;
    padding: 0.45rem !important;
  }

  .tbe-product-card__body {
    padding: 0.85rem !important;
    text-align: left !important;
  }

  .tbe-product-card h3 {
    font-size: 0.82rem !important;
    line-height: 1.25 !important;
    text-align: left !important;
  }

  .tbe-product-card p,
  .tbe-product-card .tbe-muted {
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }
}

/* Mobile headline polish */
@media (max-width: 760px) {
  .tbe-title {
    font-size: clamp(2.0rem, 9vw, 3.0rem) !important;
    line-height: 0.95 !important;
  }

  .tbe-home__inner {
    padding-top: 3rem !important;
  }
}

/* =====================================
   FINAL DESKTOP + MOBILE HERO SLIDESHOW
   fixes size, position, and centering
===================================== */

.tbe-dual-slideshow {
  width: min(100%, 1180px) !important;
  margin: 3.25rem auto 4rem !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  justify-content: center !important;
  align-items: stretch !important;
}

.tbe-dual-slideshow .tbe-hero-slideshow {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  min-height: 420px !important;
  max-height: 560px !important;
  border-radius: 1.75rem !important;
  overflow: hidden !important;
  position: relative !important;
  background: rgba(255,255,255,.55) !important;
  box-shadow: 0 28px 72px rgba(46,29,13,.14) !important;
}

.tbe-dual-slideshow .tbe-hero-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  transition: opacity 900ms ease !important;
}

.tbe-dual-slideshow .tbe-hero-slide.is-active {
  opacity: 1 !important;
  z-index: 1 !important;
}

.tbe-dual-slideshow .tbe-hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Make homepage hero section breathe better */
.tbe-home__inner {
  width: 100% !important;
}

.tbe-home__inner > .tbe-center {
  max-width: 1000px !important;
  margin-inline: auto !important;
}

/* Desktop collection cards under slideshow */
.tbe-home__cards--collections {
  margin-top: 0 !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .tbe-dual-slideshow {
    width: min(100%, 820px) !important;
  }

  .tbe-dual-slideshow .tbe-hero-slideshow {
    min-height: 360px !important;
  }
}

/* Mobile: still side-by-side, but controlled size */
@media (max-width: 760px) {
  .tbe-dual-slideshow {
    width: 100% !important;
    max-width: 420px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.7rem !important;
    margin: 2rem auto 2rem !important;
  }

  .tbe-dual-slideshow .tbe-hero-slideshow {
    aspect-ratio: 3 / 4 !important;
    min-height: 220px !important;
    max-height: none !important;
    border-radius: 1.15rem !important;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .tbe-dual-slideshow {
    max-width: 340px !important;
    gap: 0.55rem !important;
  }

  .tbe-dual-slideshow .tbe-hero-slideshow {
    min-height: 200px !important;
  }
}

.tbe-dual-slideshow {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.5rem !important;

  width: fit-content !important;
  margin: 3rem auto !important;
}

.tbe-written-heading {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
}

.tbe-written-heading img {
  width: min(700px, 90vw);
  height: auto;
  display: block;
}

.tbe-dual-slideshow .tbe-hero-slideshow:first-child {
  transform: translateY(15px);
}

.tbe-dual-slideshow .tbe-hero-slideshow:last-child {
  transform: translateY(-15px);
}

/* Luxury glow behind dual slideshow */
.tbe-dual-slideshow {
  position: relative;
  isolation: isolate;
}

.tbe-dual-slideshow::before {
  content: "";
  position: absolute;
  z-index: -1;

  top: 50%;
  left: 50%;

  width: 120%;
  height: 120%;

  transform: translate(-50%, -50%);

  background:
  radial-gradient(
    circle at 40% 50%,
    #eed6d7 0%,
    transparent 60%
  ),
  radial-gradient(
    circle at 60% 50%,
    rgba(201, 168, 90, 0.67) 0%,
    transparent 60%
  );

  filter: blur(40px);

  pointer-events: none;
}

/* CART */

.tbe-cart-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.5rem;
}

.tbe-cart-item__image {
  width: 110px;
  height: 110px;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,.5);
}

.tbe-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tbe-cart-item__content {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

@media (max-width: 749px) {
  .tbe-cart-item {
    grid-template-columns: 90px 1fr;
    gap: 1rem;
  }

  .tbe-cart-item__image {
    width: 90px;
    height: 90px;
  }
}
.tbe-cart-remove {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: .875rem;
  color: #8b7d73;
  text-decoration: none;
  transition: all .2s ease;
}

.tbe-cart-remove:hover {
  color: #3a1f0f;
  text-decoration: underline;
}
.tbe-cart-item {
  position: relative;
}

/* ================================
   Product page image alignment fix
   + soft blush glow
================================ */

.tbe-product-page {
  align-items: start;
  overflow: visible;
}

.tbe-product-gallery {
  position: relative;
  isolation: isolate;
  justify-self: center;
  width: 100%;
  max-width: 680px;
}

/* blush glow behind product gallery */
.tbe-product-gallery::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2.5rem;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(201, 168, 90, 0.67),
      rgba(238, 214, 215, 0.64) 42%,
      rgba(238, 214, 215, 0) 72%
    );
  filter: blur(42px);
  pointer-events: none;
}

.tbe-product-gallery__main {
  width: 100%;
  max-width: 620px;
  justify-self: center;
}

.tbe-product-gallery__main-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbe-product-gallery__main-inner img,
#TBEProductMainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tbe-product-gallery__thumbs {
  align-self: start;
}

/* desktop spacing between thumbnails and image */
@media (min-width: 761px) {
  .tbe-product-gallery {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 1.25rem;
  }
}

/* mobile product gallery */
@media (max-width: 760px) {
  .tbe-product-gallery {
    max-width: 100%;
  }

  .tbe-product-gallery::before {
    inset: -1.5rem;
    filter: blur(32px);
  }

  .tbe-product-gallery__main {
    max-width: 100%;
  }
}

html,
body {
  background: #F7F3EB;
}

.tbe-announcement-bar {
  background: #dfd2af;
  color: #8e1616ff;

  text-align: center;

  padding: .75rem 1rem;

  font-size: .85rem;
  letter-spacing: .05em;

  font-weight: 600;
}

/* Cart product suggestions */
.tbe-cart-suggestions {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(46, 29, 13, 0.1);
}

.tbe-cart-suggestion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tbe-cart-suggestion-grid .tbe-product-card {
  max-width: none;
}

@media (max-width: 900px) {
  .tbe-cart-suggestion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tbe-cart-suggestion-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255,255,255,.62);
  box-shadow: 0 14px 32px rgba(46,29,13,.08);
}

.tbe-cart-suggestion-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.tbe-cart-suggestion-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbe-cart-suggestion-card__info {
  display: grid;
  gap: .35rem;
  padding: .8rem;
  font-size: .78rem;
}

.tbe-cart-suggestion-card__info span {
  color: rgba(46,29,13,.65);
}

.tbe-cart-quick-add {
  position: absolute;
  right: .65rem;
  top: .65rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(46,29,13,.12);
  background: rgba(255,255,255,.86);
  color: var(--tbe-brown);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(46,29,13,.1);
}

.tbe-cart-quick-add:hover {
  transform: translateY(-1px);
}