/** Shopify CDN: Minification failed

Line 1698:155 Expected "}" to go with "{"

**/
/* ==========================================================================
   Wild Daughter — Component & Section Styles
   Brand-specific styling for all theme sections
   ========================================================================== */

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background-color: var(--color-primary);
  color: var(--color-cream);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-background);
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 1px 12px rgba(60, 42, 30, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: opacity 0.3s ease;
  position: relative;
}

.header__nav-link:hover {
  opacity: 0.65;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  width: 100%;
}

/* Mega Menu */
.header__mega-menu-trigger {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-background);
  box-shadow: 0 8px 30px rgba(60, 42, 30, 0.08);
  border-radius: 0 0 4px 4px;
  padding: 2rem 2.5rem;
  min-width: 680px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 101;
}

.header__mega-menu-trigger:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-menu__group-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.mega-menu__link {
  display: block;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.mega-menu__link:hover {
  opacity: 0.65;
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}

.header__action-btn:hover {
  opacity: 0.65;
}

.header__action-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
}

.header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-cream);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile menu toggle */
.header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}

.header__mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--color-background);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
}

.mobile-menu__link {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(60, 42, 30, 0.08);
}

.mobile-menu__submenu {
  padding-left: 1rem;
}

.mobile-menu__submenu-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* ---------- Hero Banner ---------- */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner--full {
  min-height: 90vh;
}

.hero-banner__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 2rem 1.5rem;
}

.hero-banner__title {
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.hero-banner__subtitle {
  color: var(--color-cream);
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ---------- Rich Text ---------- */
.rich-text {
  max-width: 720px;
  margin: 0 auto;
}

.rich-text--wide {
  max-width: 920px;
}

.rich-text__heading {
  margin-bottom: 1.25rem;
}

.rich-text__body {
  font-size: 1.05rem;
  line-height: 1.8;
}

.rich-text__body p + p {
  margin-top: 1rem;
}

/* ---------- Image with Text ---------- */
.image-with-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .image-with-text {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .image-with-text--reversed {
    direction: rtl;
  }

  .image-with-text--reversed > * {
    direction: ltr;
  }
}

.image-with-text__image {
  border-radius: 4px;
  overflow: hidden;
}

.image-with-text__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.image-with-text__content {
  padding: 1rem 0;
}

.image-with-text__heading {
  margin-bottom: 1rem;
}

.image-with-text__body {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ---------- Featured Collection ---------- */
.featured-collection__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.featured-collection__title {
  margin-bottom: 0.5rem;
}

.featured-collection__link {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.featured-collection__link:hover {
  opacity: 1;
}

/* ---------- Product Card ---------- */
.product-card {
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: rgba(60, 42, 30, 0.04);
  aspect-ratio: 4 / 5;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.03);
}

.product-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  z-index: 2;
}

.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-card__info {
  padding: 0.875rem 0.25rem 0;
}

.product-card__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.product-card__title a {
  transition: opacity 0.3s ease;
}

.product-card__title a:hover {
  opacity: 0.65;
}

.product-card__price {
  font-size: 0.88rem;
  color: var(--color-text);
  opacity: 0.75;
}

.product-card__price--sale {
  color: #C45E4A;
  opacity: 1;
}

.product-card__price--compare {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 0.5rem;
}

/* ---------- Multicolumn ---------- */
.multicolumn__item {
  text-align: center;
  padding: 1rem;
}

.multicolumn__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multicolumn__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1;
}

.multicolumn__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.multicolumn__heading {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.multicolumn__text {
  font-size: 0.92rem;
  opacity: 0.8;
  line-height: 1.7;
}

/* ---------- Newsletter Signup ---------- */
.newsletter {
  text-align: center;
}

.newsletter__heading {
  margin-bottom: 0.75rem;
}

.newsletter__subtitle {
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter__form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__input {
  flex: 1;
  min-width: 240px;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(247, 243, 237, 0.3);
  background: transparent;
  color: var(--color-cream);
  font-size: 0.9rem;
  border-radius: 3px;
}

.newsletter__input::placeholder {
  color: rgba(247, 243, 237, 0.6);
}

.section--sage .newsletter__input {
  border-color: rgba(247, 243, 237, 0.3);
  color: var(--color-cream);
}

.newsletter__submit {
  padding: 0.875rem 2rem;
  background-color: var(--color-cream);
  color: var(--color-primary);
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.newsletter__submit:hover {
  opacity: 0.85;
}

/* ---------- Blog Posts Section ---------- */
.blog-posts__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-card {
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

.blog-card__date {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.375rem;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Trust Badges ---------- */
.trust-badges {
  text-align: center;
}

.trust-badges__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-badges__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-badges__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

.trust-badges__label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ---------- Collection Page ---------- */
.collection-header {
  text-align: center;
  padding: var(--section-padding-mobile) 0;
  background-color: var(--color-primary);
  color: var(--color-cream);
}

@media (min-width: 768px) {
  .collection-header {
    padding: var(--section-padding-desktop) 0;
  }
}

.collection-header__title {
  color: var(--color-cream);
}

.collection-header__description {
  max-width: 600px;
  margin: 1rem auto 0;
  opacity: 0.85;
  font-size: 1rem;
}

.collection-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .collection-content {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
  }
}

/* Sidebar filters */
.collection-filters {
  padding: 1.5rem 0;
}

.collection-filters__title {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(60, 42, 30, 0.1);
}

.collection-filters__group {
  margin-bottom: 1.5rem;
}

.collection-filters__group-title {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  font-weight: 500;
}

.collection-filters__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.88rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.collection-filters__option:hover {
  opacity: 0.7;
}

.collection-filters__option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

/* Product grid toolbar */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(60, 42, 30, 0.08);
}

.collection-toolbar__count {
  font-size: 0.82rem;
  opacity: 0.6;
}

.collection-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collection-toolbar__sort-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

.collection-toolbar__sort-select {
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(60, 42, 30, 0.15);
  background-color: transparent;
  font-size: 0.85rem;
  border-radius: 3px;
}

/* ---------- Product Page ---------- */
.product-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-page {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Product gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.product-gallery__main {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: rgba(60, 42, 30, 0.04);
}

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

.product-gallery__thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.product-gallery__thumb {
  width: 64px;
  height: 80px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.product-gallery__thumb.is-active {
  border-color: var(--color-primary);
}

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

/* Product info */
.product-info {
  padding: 1rem 0;
}

.product-info__title {
  margin-bottom: 0.75rem;
}

.product-info__price {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-info__price--sale {
  color: #C45E4A;
}

.product-info__price--compare {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 1rem;
  margin-left: 0.75rem;
}

/* Variant selector */
.product-variants {
  margin-bottom: 1.5rem;
}

.product-variants__label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-variants__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-variants__option {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(60, 42, 30, 0.2);
  border-radius: 3px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-variants__option:hover {
  border-color: var(--color-primary);
}

.product-variants__option.is-selected {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-cream);
}

.product-variants__option.is-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Quantity selector */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.quantity-selector__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(60, 42, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color 0.2s ease;
}

.quantity-selector__btn:hover {
  background-color: rgba(60, 42, 30, 0.04);
}

.quantity-selector__btn:first-child {
  border-radius: 3px 0 0 3px;
}

.quantity-selector__btn:last-child {
  border-radius: 0 3px 3px 0;
}

.quantity-selector__input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: 1px solid rgba(60, 42, 30, 0.2);
  border-left: none;
  border-right: none;
  font-size: 0.95rem;
  background: transparent;
  -moz-appearance: textfield;
}

.quantity-selector__input::-webkit-inner-spin-button,
.quantity-selector__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Collapsible tabs */
.product-tabs {
  margin-top: 2rem;
  border-top: 1px solid rgba(60, 42, 30, 0.1);
}

.product-tab {
  border-bottom: 1px solid rgba(60, 42, 30, 0.1);
}

.product-tab__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.product-tab__trigger svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.product-tab.is-open .product-tab__trigger svg {
  transform: rotate(180deg);
}

.product-tab__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.product-tab.is-open .product-tab__content {
  max-height: 600px;
}

.product-tab__inner {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Related products */
.related-products {
  margin-top: 4rem;
}

.related-products__title {
  text-align: center;
  margin-bottom: 2rem;
}

/* ---------- Cart Drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background-color: var(--color-background);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(60, 42, 30, 0.08);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(60, 42, 30, 0.08);
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-drawer__close svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-drawer__empty {
  text-align: center;
  padding: 3rem 1rem;
}

.cart-drawer__empty-text {
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

/* Cart item */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(60, 42, 30, 0.06);
}

.cart-item__image {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

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

.cart-item__title {
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.cart-item__variant {
  font-size: 0.78rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item__price {
  font-size: 0.88rem;
}

.cart-item__remove {
  font-size: 0.75rem;
  opacity: 0.5;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.cart-item__remove:hover {
  opacity: 1;
}

/* Cart footer */
.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(60, 42, 30, 0.08);
}

.cart-drawer__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-drawer__note {
  font-size: 0.78rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--color-background);
  border-top: 1px solid rgba(60, 42, 30, 0.08);
}

.footer__inner {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: var(--section-padding-mobile) 1.5rem;
}

@media (min-width: 768px) {
  .footer__inner {
    padding: var(--section-padding-desktop) 1.5rem;
  }
}

.footer__top {
  text-align: center;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}

.footer__social-link:hover {
  opacity: 0.6;
}

.footer__social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--color-text);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer__column-title {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer__link {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer__link:hover {
  opacity: 1;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(60, 42, 30, 0.08);
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-info__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  opacity: 0.8;
}

.contact-info__item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

/* ---------- Search ---------- */
.predictive-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-background);
  box-shadow: 0 8px 30px rgba(60, 42, 30, 0.08);
  border-radius: 0 0 4px 4px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 102;
  display: none;
}

.predictive-search.is-active {
  display: block;
}

.predictive-search__result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  transition: background-color 0.2s ease;
}

.predictive-search__result:hover {
  background-color: rgba(139, 154, 107, 0.06);
}

.predictive-search__result-image {
  width: 48px;
  height: 60px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.predictive-search__result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.predictive-search__result-title {
  font-size: 0.88rem;
}

.predictive-search__result-price {
  font-size: 0.82rem;
  opacity: 0.6;
}

/* Search results page */
.search-results__header {
  text-align: center;
  margin-bottom: 2rem;
}

.search-results__form {
  max-width: 500px;
  margin: 0 auto 2rem;
  display: flex;
  gap: 0.5rem;
}

.search-results__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(60, 42, 30, 0.2);
  background-color: transparent;
  font-size: 0.95rem;
  border-radius: 3px;
}

/* ---------- Blog / Article ---------- */
.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header {
  text-align: center;
  margin-bottom: 2rem;
}

.article-header__meta {
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-header__title {
  margin-bottom: 1rem;
}

.article__featured-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  max-height: 500px;
}

.article__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.85;
}

.article__body h2,
.article__body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article__body p {
  margin-bottom: 1.25rem;
}

.article__body img {
  border-radius: 4px;
  margin: 1.5rem 0;
}

.article__share {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(60, 42, 30, 0.1);
}

.article__back {
  text-align: center;
  margin-top: 2rem;
}

/* ---------- 404 Page ---------- */
.page-404 {
  text-align: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-404__title {
  margin-bottom: 1rem;
}

.page-404__text {
  opacity: 0.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.page-404__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-cream);
  z-index: 300;
  padding: 1rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.85rem;
  opacity: 0.85;
  flex: 1;
  min-width: 250px;
}

.cookie-banner__text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-banner__accept {
  padding: 0.5rem 1.5rem;
  background-color: var(--color-cream);
  color: var(--color-dark);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease;
}

.cookie-banner__accept:hover {
  opacity: 0.85;
}

.cookie-banner__decline {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  color: var(--color-cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(247, 243, 237, 0.3);
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.cookie-banner__decline:hover {
  opacity: 0.7;
}

/* ---------- Collection List ---------- */
.collection-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .collection-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .collection-list__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collection-list__item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}

.collection-list__item:hover {
  transform: translateY(-3px);
}

.collection-list__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-list__item:hover img {
  transform: scale(1.05);
}

.collection-list__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.collection-list__item-title {
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ---------- Collection Page – Product Card Text Fix ---------- */
.collection-list .card-information__text,
.collection-list .card-information .full-unstyled-link,
.collection-list .price__regular,
.collection-list .price__sale,
.collection-list .price,
.collection-list .card-information > * {
    color: var(--color-foreground) !important;
  }

  /* ---------- Shop Page – Product Card Title & Price ---------- */
  .product-card__title,
  .product-card__title a,
  .product-card__price,
  .product-card__price--sale,
  .product-card__info {
    color: var(--color-foreground) !important;
    }


/* ----------- Cookie Banner Fix ----------- */
    /* Prevent Loyalty Points widget overlapping the accept button */
        .cookie-banner__inner {
              padding-right: 180px !important;
                  }

                      .cookie-banner__accept,
                          .cookie-banner__decline {
                                flex-shrink: 0;
                                   

       .card__information { display: block !important; visibility: visible !important; }
.card__heading, .card__heading a, .price { display: block !important; visibility: visible !important; color: inherit !important; }                         