:root {
  --brand: #1f4d2a;
  --brand-deep: #143020;
  --brand-soft: #e6efe2;
  --leaf: #5c8b3a;
  --terracotta: #c97b5d;
  --terracotta-deep: #a85e40;
  --gold: #d6a85c;
  --white: #ffffff;
  --bg-warm: #f4ecde;
  --bg-mint: #ecf2e5;
  --surface: #ffffff;
  --ink: #1b2018;
  --ink-soft: #3f463a;
  --ink-muted: #7a7166;
  --rule: #e8e0cf;
  --rule-deep: #d9cfb9;

  --shadow-soft:
    0 1px 3px rgba(31, 77, 42, 0.04), 0 8px 24px rgba(31, 77, 42, 0.06);
  --shadow-hover:
    0 4px 12px rgba(31, 77, 42, 0.08), 0 18px 40px rgba(31, 77, 42, 0.1);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --container: 1280px;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }
}
.heritage {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  padding: 60px 56px;
  min-height: 280px;
  color: #fff;
  background: var(--brand-deep);
}
.heritage-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.ann-bar {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
}
.ann-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
}
.ann-bar strong {
  color: var(--gold);
  font-weight: 700;
}
.ann-bar .ann-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.app-bar .notice {
  padding: 0px !important;
} /* MOBILE AUTO SCROLL ANNOUNCEMENT BAR */
@media (max-width: 720px) {
  .ann-bar {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
  }

  .ann-bar .container {
    width: max-content;
    flex-wrap: nowrap;
    gap: 18px;
    justify-content: flex-start;
    animation: annScroll 18s linear infinite;
    padding-left: 100%;
  }

  .ann-bar .ann-dot {
    flex: none;
  }

  @keyframes annScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}
.app-bar-main {
  background-color: rgba(251, 247, 240, 0.92) !important;
  border-bottom: 1px solid var(--rule) !important;
}
.nav-link {
  color: var(--ink-soft) !important;
}
/* SECTION */
#categories {
  padding: 24px 0;
}

/* GRID */
#categories .grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 22px;
  margin: 0 !important;
}

/* CARD */
.cat-card {
  text-align: center;
}

/* IMAGE BOX */
.cat-card-img-root {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1/1;
  padding: 18px;
  transition: all 0.35s ease;
  position: relative;
}

/* IMAGE */
.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* HOVER */
.cat-card:hover .cat-card-img {
  transform: scale(1.07);
}

.cat-card:hover .cat-card-img-root {
  transform: translateY(-4px);
}

/* TITLE */
.cat-card-title {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 600;
  color: #232323;
  line-height: 1.35;
  letter-spacing: -0.3px;
}

/* REMOVE OLD BORDER */
.universal-border {
  border: none !important;
}

/* MOBILE */
@media (max-width: 991px) {
  #categories {
    padding: 24px 0;
  }

  #categories .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .section-heading {
    font-size: 40px;
  }

  .section-heading-container::after {
    font-size: 16px;
  }

  .cat-card-title {
    font-size: 16px;
  }

  .cat-card-img-root {
    border-radius: 20px;
    padding: 12px;
  }
}
.page-container:has(#categories) {
  background: #fbf7f0 !important;
}
.section-wrapper-1:has(#categories) {
  background: #fbf7f0 !important;
}
#categories {
  background: #fbf7f0 !important;
}

.section-heading-container {
  width: 100%;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

/* SMALL TOP LABEL */
.section-heading-container::before {
  content: "THE COLLECTION";
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b77a55;
}

/* MAIN HEADING */
.section-heading {
  font-size: 2.3rem;
  line-height: 1.08;
  font-weight: 600;
  color: #171717;
  margin: 0;
  letter-spacing: -1px;
  font-family: Georgia, serif;
  max-width: 720px;
}

/* VIEW ALL */
.section-heading-viewall {
  font-size: 14px;
  font-weight: 600;
  color: #245c35 !important;
  text-decoration: none;
  border-bottom: 1px solid #245c35;
  padding-bottom: 3px;
  white-space: nowrap;
  margin-right: 20px;
  transition: 0.3s ease;
}

.section-heading-viewall:hover {
  opacity: 0.7;
}
.section-heading-container .section-heading::after {
  display: block;
  content: attr(data-subtitle);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #5c5c5c;
  letter-spacing: 0.2px;
  margin-top: 12px;
  font-family: inherit;
  max-width: 620px;
}

/* =========================================
   SECTION SPECIFIC SUBTEXT
========================================= */

/* Section 1 */
.section-wrapper-1 #categories .section-heading::after {
  content: "Eight aisles, three decades of curation. Pick where you're starting.";
}

/* MOBILE */
@media (max-width: 768px) {
  .section-heading {
    font-size: 1.7rem;
  }

  .section-heading::after {
    font-size: 14px;
    margin-top: 10px;
  }
  .section-heading-container {
    gap: 10px;
  }
  .section-heading-viewall {
    font-size: 13px;
  }
}
.pr-long-card {
  padding: 0px !important;
}
.sh-product-img {
  background: var(--bg-warm) !important;
  padding: 16px !important;
}
.pr-card-content {
  padding: 16px !important;
}
.sh-product-card-name {
  color: var(--ink) !important;
}
.pr-discount {
  background: var(--brand-deep) !important;
}
.pr-outlined-button {
  background-color: var(--white) !important;
  border: 1px solid var(--brand-deep) !important;
  color: var(--brand-deep) !important;
}
.pr-outlined-button:hover {
  background-color: var(--brand-deep) !important;
  border: 1px solid var(--brand-deep) !important;
  color: var(--white) !important;
}
.pr-plus-minus-button {
  border: 1px solid var(--brand-deep) !important;
  color: var(--brand-deep) !important;
}
.page-container {
  padding: 24px 0px !important;
}
.section-wrapper-4:has(.heritage) {
  background: #fbf7f0 !important;
}

.section-wrapper-8:has(.trust) {
  background: #fbf7f0 !important;
  padding: 0px !important;
}
.page-container:has(.faq) {
  padding: 0px !important;
}
.section-spacing {
  margin-top: 0px !important;
}
.section {
  padding: 0px !important;
}
.sh-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.section-heading-viewall:hover {
  text-decoration: none !important;
}
.generic-collection-img {
  border-radius: 8px !important;
}
.items-center:has(.search-container) {
  margin-right: 20px !important;
}
.section-description {
  color: #3f463a !important;
  margin-top: 0px !important;
  font-size: 14px !important;
}
.sh-product-discount-tag {
  background: var(--brand-deep) !important;
}
.solid-button__btn {
  height: 40px !important;
}
#product-action-card .sh-product-plus-minus-button {
  color: var(--brand-deep) !important;
  height: 40px !important;
}
.sh-solid-button {
  background-color: var(--brand-deep) !important;
}

@media (max-width: 720px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .hero {
    padding: 36px 0 44px !important;
  }
  .hero .container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .hero-title {
    font-size: 2.4rem !important;
  }
  .hero-sub {
    font-size: 15px !important;
  }
  .hero-visual {
    max-width: 360px !important;
    margin: 0 auto !important;
  }
  .hero-badge-est {
    width: 100px !important;
    height: 100px !important;
    right: -2% !important;
  }
  .hero-badge-est .yr {
    font-size: 24px !important;
  }
  .hero-meta {
    gap: 16px !important;
    padding-top: 18px !important;
    margin-top: 22px !important;
  }
  .hero-meta-num {
    font-size: 18px !important;
  }
  .trust-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.section {
  padding: 0px 20px !important;
}
