/** Shopify CDN: Minification failed

Line 21:11 Unexpected "{"
Line 21:20 Expected ":"
Line 21:27 Unexpected "{"
Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 44:8 Expected identifier but found whitespace
Line 44:10 Unexpected "{"
Line 44:19 Expected ":"
Line 149:13 Expected identifier but found whitespace
... and 28 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:tbc-blog-carousel (INDEX:62) */
#tbc-blog-{{ section.id }} {
  background-color: {{ section.settings.background_color }};
  padding: 4rem 0;
}

.tbc-blog__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.tbc-blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.tbc-blog__eyebrow {
  font-size: clamp(0.6rem, 0.9vw, 0.8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: {{ section.settings.accent_color }};
  margin: 0 0 0.3rem;
  font-weight: 600;
}

.tbc-blog__heading {
  font-family: 'ITC Cheltenham', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #115642;
  margin: 0;
  line-height: 1.1;
}

.tbc-blog__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #115642;
  text-decoration: none;
  border-bottom: 1.5px solid #115642;
  padding-bottom: 1px;
  margin-bottom: 0.35rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.tbc-blog__view-all:hover {
  color: #9a5740;
  border-color: #9a5740;
}

.tbc-blog__rule {
  width: 100%;
  height: 1px;
  background: rgba(17,86,66,0.12);
  margin-bottom: 2rem;
}

.tbc-blog__stage {
  position: relative;
}

.tbc-blog__arrow {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1.5px solid #115642;
  color: #115642;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 0;
  border-radius: 50%;
}

.tbc-blog__arrow:hover {
  background: #115642;
  color: #fff;
}

.tbc-blog__arrow--prev { left: -22px; }
.tbc-blog__arrow--next { right: -22px; }

.tbc-blog__arrow[disabled] {
  opacity: 0.3;
  cursor: default;
}

.tbc-blog__track {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0 0 1.5rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.tbc-blog__track:active {
  cursor: grabbing;
}

.tbc-blog__track::-webkit-scrollbar {
  display: none;
}

.tbc-blog__card {
  flex: 0 0 calc(25% - 1rem);
  min-width: 260px;
  scroll-snap-align: start;
  background: {{ section.settings.card_color }};
  border-radius: {{ section.settings.border_radius }}px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tbc-blog__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.tbc-blog__img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.tbc-blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tbc-blog__img-placeholder {
  width: 100%;
  height: 100%;
  background: #f0ece6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbc-blog__card-link:hover .tbc-blog__img {
  transform: scale(1.04);
}

.tbc-blog__card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.tbc-blog__title {
  font-family: 'ITC Cheltenham', Georgia, serif;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s;
}

.tbc-blog__card-link:hover .tbc-blog__title {
  color: #115642;
}

.tbc-blog__date {
  font-family: 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 0.72rem;
  color: #9e8e7e;
  margin: 0;
  letter-spacing: 0.04em;
}

.tbc-blog__excerpt {
  font-family: 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 0.82rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.tbc-blog__read-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #115642;
  border-bottom: 1.5px solid #115642;
  transition: color 0.2s, border-color 0.2s;
}

.tbc-blog__card-link:hover .tbc-blog__read-more {
  color: #9a5740;
  border-color: #9a5740;
}

.tbc-blog__empty {
  color: #6b6b6b;
  font-size: 0.9rem;
  padding: 3rem 0;
}

@media (max-width: 1024px) {
  .tbc-blog__card { flex: 0 0 calc(33% - 1rem); }
}

@media (max-width: 768px) {
  .tbc-blog__card { flex: 0 0 calc(70% - 1rem); }
  .tbc-blog__img-wrap { height: 180px; }
}

@media (max-width: 480px) {
  .tbc-blog__card { flex: 0 0 calc(85% - 1rem); }
}
/* END_SECTION:tbc-blog-carousel */

/* START_SECTION:tbc-collection-carousel (INDEX:63) */
#tbc-cc-{{ section.id }} {
  background-color: {{ section.settings.background_color }};
  padding: 6rem 0 4rem;
}

.tbc-cc__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 5% 0;
}

.tbc-cc__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.tbc-cc__eyebrow {
  font-size: clamp(0.6rem, 0.9vw, 0.8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: {{ section.settings.accent_color }};
  margin: 0 0 0.3rem;
  font-weight: 600;
}

.tbc-cc__heading {
  font-family: 'ITC Cheltenham', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #115642;
  margin: 0;
  line-height: 1.1;
}

.tbc-cc__rule {
  width: 100%;
  height: 1px;
  background: rgba(17,86,66,0.12);
  margin-bottom: 2rem;
}

.tbc-cc__stage {
  position: relative;
}

.tbc-cc__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1.5px solid #115642;
  color: #115642;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 0;
  border-radius: 50%;
}

.tbc-cc__arrow:hover {
  background: #115642;
  color: #fff;
}

.tbc-cc__arrow--prev { left: -22px; }
.tbc-cc__arrow--next { right: -22px; }

.tbc-cc__arrow[disabled] {
  opacity: 0.3;
  cursor: default;
}

.tbc-cc__track {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0 0 1.5rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.tbc-cc__track:active {
  cursor: grabbing;
}

.tbc-cc__track::-webkit-scrollbar {
  display: none;
}

.tbc-cc__card {
  flex: 0 0 calc(25% - 1rem);
  min-width: 220px;
  scroll-snap-align: start;
}

.tbc-cc__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tbc-cc__img-wrap {
  position: relative;
  overflow: hidden;
  background: #f0ece6;
  margin-bottom: 0.75rem;
  border-radius: {{ section.settings.border_radius }}px;
  width: 100%;
  height: 320px;
}

.tbc-cc__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.tbc-cc__card-link:hover .tbc-cc__img-wrap img {
  transform: scale(1.04);
}

.tbc-cc__card-body {
  padding: 0 0.25rem;
}

.tbc-cc__title {
  font-family: 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s;
}

.tbc-cc__card-link:hover .tbc-cc__title {
  color: #115642;
}

@media (max-width: 1024px) {
  .tbc-cc__card { flex: 0 0 calc(33% - 1rem); }
}

@media (max-width: 768px) {
  .tbc-cc__card { flex: 0 0 calc(45% - 1rem); }
}

@media (max-width: 480px) {
  .tbc-cc__card { flex: 0 0 calc(72% - 1rem); }
}
/* END_SECTION:tbc-collection-carousel */

/* START_SECTION:tbc-featured-collection (INDEX:67) */
#tbc-fc-{{ section.id }} {
  background-color: {{ section.settings.background_color }};
  padding: 4rem 0 1rem;
}

.tbc-fc__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.tbc-fc__inner--full {
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  margin: 0;
}

.tbc-fc__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.tbc-fc__eyebrow {
  font-size: clamp(0.6rem, 0.9vw, 0.8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: {{ section.settings.accent_color }};
  margin: 0 0 0.3rem;
  font-weight: 600;
}

.tbc-fc__heading {
  font-family: 'ITC Cheltenham', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #115642;
  margin: 0;
  line-height: 1.1;
}

.tbc-fc__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #115642;
  text-decoration: none;
  border-bottom: 1.5px solid #115642;
  padding-bottom: 1px;
  margin-bottom: 0.35rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.tbc-fc__view-all:hover {
  color: #9a5740;
  border-color: #9a5740;
}

.tbc-fc__carousel-wrap {
  position: relative;
}

.tbc-fc__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1.5px solid #115642;
  color: #115642;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 0;
  border-radius: 50%;
}

.tbc-fc__arrow:hover {
  background: #115642;
  color: #fff;
}

.tbc-fc__arrow--prev { left: -22px; }
.tbc-fc__arrow--next { right: -22px; }

.tbc-fc__arrow[disabled] {
  opacity: 0.3;
  cursor: default;
}

.tbc-fc__rule {
  width: 100%;
  height: 1px;
  background: rgba(17,86,66,0.12);
  margin-bottom: 2rem;
}

/* ── THE CAROUSEL ── */
.tbc-fc__track {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0 5% 1.5rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.tbc-fc__track:active {
  cursor: grabbing;
}

.tbc-fc__track::-webkit-scrollbar {
  display: none;
}

.tbc-fc__card {
  flex: 0 0 calc(22% - 1rem);
  min-width: 200px;
  scroll-snap-align: start;
}

.tbc-fc__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tbc-fc__img-wrap {
  position: relative;
  overflow: hidden;
  background: #f0ece6;
  margin-bottom: 1rem;
}

.tbc-fc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tbc-fc__card-link:hover .tbc-fc__img {
  transform: scale(1.04);
}

.tbc-fc__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  background: #9a5740;
  color: #fff;
  z-index: 2;
}

.tbc-fc__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tbc-fc__title {
  font-family: 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;;
  font-size: clamp(0.85rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s;
}

.tbc-fc__card-link:hover .tbc-fc__title {
  color: #115642;
}

.tbc-fc__stars {
  display: flex;
  gap: 2px;
  margin: 0.1rem 0;
}

.tbc-fc__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.tbc-fc__price {
  font-size: clamp(0.8rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: #1a1a1a;
}

.tbc-fc__price--compare {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 400;
  text-decoration: line-through;
}

.tbc-fc__price--sale {
  color: #9a5740;
}

.tbc-fc__mobile-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.tbc-fc__mobile-view-all {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2.5rem;
  background: #115642;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.tbc-fc__mobile-view-all:hover {
  background: #9a5740;
}

.tbc-fc__empty {
  text-align: center;
  color: #6b6b6b;
  padding: 3rem 0;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .tbc-fc__card { flex: 0 0 calc(30% - 1rem); }
}

@media (max-width: 768px) {
  .tbc-fc__card { flex: 0 0 calc(42% - 1rem); }
}

@media (max-width: 480px) {
  .tbc-fc__card { flex: 0 0 calc(70% - 1rem); }
}


/* Swatches — hidden by default, slide up on hover */
.tbc-fc__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 0.4rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.tbc-fc__card-link:hover .tbc-fc__swatches {
  max-height: 40px;
  opacity: 1;
}

.tbc-fc__swatch {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.tbc-fc__swatch-more {
  font-size: 0.65rem;
  color: #6b6b6b;
  align-self: center;
  letter-spacing: 0.02em;
}
/* END_SECTION:tbc-featured-collection */