:root {
  --ink: #242326;
  --muted: #8d8b8f;
  --line: #e9e7e8;
  --wash: #f8f7f8;
  --rose: #f6eeee;
  --accent: #3a2c28;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: #fff;
}
.store-shell {
  width: min(1210px, calc(100% - 64px));
  margin: 0 auto;
}
.store-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.store-header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 42px;
}
.store-logo {
  flex: none;
  color: #111;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.48rem;
  letter-spacing: -0.03em;
}
.store-logo span {
  font-weight: 500;
}
.store-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: auto;
}
.store-nav a,
.section-intro > a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}
.store-nav a:hover,
.store-nav .is-current {
  color: var(--ink);
  font-weight: 600;
}
.store-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}
.store-actions a,
.store-actions button {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.store-actions a:hover,
.store-actions button:hover {
  background: var(--rose);
  color: var(--accent);
}
.store-actions .is-current {
  color: var(--accent);
}
.bag small,
.wishlist-link small {
  position: absolute;
  top: -5px;
  right: 0;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 0;
  background: #f34672;
  color: #fff;
  font-size: 12px;
}
.menu-toggle {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg {
  position: absolute;
  transition: opacity 0.15s;
}
.menu-toggle .icon-close {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .icon-open {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .icon-close {
  opacity: 1;
}
.menu-toggle b {
  display: none;
}
.search-bar {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--wash);
}
.search-bar.is-open {
  display: block;
}
.search-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}
.search-bar__inner form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.search-bar__inner form svg {
  flex: none;
  color: #a19ba0;
}
.search-bar__inner input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  font: inherit;
  color: var(--ink);
}
.search-bar__inner input::placeholder {
  color: #aaa6a9;
}
.search-bar__close {
  flex: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.search-bar__close:hover {
  background: var(--rose);
  color: var(--accent);
}
.store-kicker {
  margin: 0 0 13px;
  color: #a19ba0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-intro h2 {
  margin: 0;
  color: #272329;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 198px;
  padding: 14px 18px;
  border-radius: 0;
  background: #282526;
  color: white;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid #282526;
}
.store-button span,
.section-intro a span {
  font-size: 1.2rem;
  margin-left: 14px;
}
.shop-section {
  padding: 90px 0;
}
.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}
.catalog-notice {
  padding: 40px;
  background: var(--wash);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}
.section-intro h2 {
  font-size: clamp(2.05rem, 3.2vw, 3rem);
}
.section-intro > a {
  padding-bottom: 6px;
}
.category-showcase {
  display: flex;
  gap: 14px;
  align-items: stretch;
}
.category-showcase__side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.category-showcase__row {
  display: flex;
  gap: 14px;
}
.category-showcase__row--3,
.category-showcase__row--5 {
  flex: 1;
}
.category-showcase__row--3 > .category-tile,
.category-showcase__row--5 > .category-tile {
  flex: 1;
  min-width: 0;
}
.category-showcase__row--3 > .category-tile {
  min-height: 320px;
}
.category-showcase__row--5 > .category-tile {
  min-height: 210px;
}
.category-showcase__row--bottom {
  margin-top: 14px;
}
.category-showcase__row--bottom > .category-tile {
  min-height: 460px;
}
.category-tile {
  position: relative;
  display: flex;
  align-items: end;
  padding: 16px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  background-color: var(--wash);
  background-position: center top;
  background-size: cover;
}
.category-tile:after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 40%, rgba(15, 12, 10, 0.85));
}
.category-tile > * {
  position: relative;
  z-index: 1;
}
.category-tile span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.category-tile--hero {
  flex: 0 0 26%;
  padding: 22px;
}
.category-tile--hero span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
}
.featured {
  background: var(--wash);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.product-card:hover {
  border-color: #d8cabb;
  box-shadow: 0 24px 44px -26px rgba(36, 25, 15, 0.28);
}
.product-card__image {
  display: block;
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #f4f2ef;
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s cubic-bezier(0.22, 0.68, 0, 1);
}
.product-card:hover .product-card__image img {
  transform: scale(1.06);
}
.product-card__badges {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.product-card__badge {
  padding: 5px 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.product-card__badge--sale {
  background: #c0392b;
}
.product-card__badge--featured {
  background: #1a1512;
}
.product-card__heart {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #554f52;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(20, 17, 18, 0.1);
  transition:
    color 0.15s,
    transform 0.15s,
    border-color 0.15s;
}
.product-card__heart:hover {
  color: #f34672;
  border-color: #f34672;
  transform: scale(1.08);
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 18px;
}
.product-card__type {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  min-height: 2.6em;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}
.product-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.product-card__price del {
  font-weight: 500;
  font-size: 0.82rem;
  color: #a59b92;
}
.product-card__cta {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid #251b14;
  background: #fff;
  color: var(--accent);
  font: 700 0.72rem var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.product-card__cta:hover {
  background: #251b14;
  color: #fff;
}
.product-card__remove {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 11px 12px;
  border: 1px solid #ddd1c4;
  background: #fff;
  color: #a5493f;
  font: 700 0.72rem var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.product-card__remove:hover {
  background: #a5493f;
  color: #fff;
  border-color: #a5493f;
}
@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.recommendations {
  padding-bottom: 105px;
}
.img-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 420px;
}
.img-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.img-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 12, 10, 0.74) 0%,
    rgba(16, 12, 10, 0.4) 45%,
    rgba(16, 12, 10, 0) 75%
  );
}
.img-banner__scrim--right {
  background: linear-gradient(
    270deg,
    rgba(16, 12, 10, 0.74) 0%,
    rgba(16, 12, 10, 0.4) 45%,
    rgba(16, 12, 10, 0) 75%
  );
}
.img-banner__scrim--center {
  background: linear-gradient(rgba(16, 12, 10, 0.58), rgba(16, 12, 10, 0.58));
}
.img-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.img-banner__copy {
  max-width: 480px;
  padding: 56px 0;
}
.img-banner__copy .store-kicker {
  color: #e7d4bd;
}
.img-banner__copy h1,
.img-banner__copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}
.img-banner__copy p:not(.store-kicker) {
  max-width: 400px;
  margin: 18px 0 26px;
  color: #ece4dc;
  font-size: 0.95rem;
  line-height: 1.75;
}
.img-banner__copy > a:not(.store-button) {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  color: #fff;
  font-size: 0.88rem;
  text-decoration: none;
}
.img-banner__copy .store-button {
  background: #fff;
  color: #1a1512;
}
.img-banner__copy .store-button:hover {
  background: var(--accent);
  color: #fff;
}
.img-banner__copy--right {
  margin-left: auto;
  text-align: right;
}
.img-banner__copy--right > a:not(.store-button) {
  justify-content: flex-end;
}
.img-banner__copy--center {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
}
.img-banner__copy--center .store-button {
  margin: 0 auto;
}
.store-hero.img-banner {
  min-height: 560px;
}
.discount-banner.img-banner {
  min-height: 340px;
}
.trust-strip {
  padding: 14px 0;
  background: var(--rose);
  border-bottom: 1px solid var(--line);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
}
.trust-strip__inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}
.trust-strip__inner svg {
  flex: none;
  color: var(--accent);
}
.trust-strip__dot {
  color: var(--line);
}
@media (max-width: 800px) {
  .trust-strip {
    padding: 10px 0;
  }
  .trust-strip__inner {
    gap: 6px 12px;
  }
  .trust-strip__inner span {
    font-size: 0.72rem;
  }
  .trust-strip__dot:nth-of-type(2) {
    display: none;
  }
}
.brand-perks {
  padding: 60px 0;
}
.brand-perks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.brand-perks__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--accent);
}
.brand-perks__item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
}
.brand-perks__item p {
  margin: 0 auto;
  max-width: 230px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .brand-perks {
    padding: 36px 0;
  }
  .brand-perks__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}
.local-trust {
  padding: 70px 0;
  background: #eae4e1;
}
.local-trust__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.local-trust__copy h2 {
  margin: 10px 0 22px;
  color: #272329;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.local-trust__copy p {
  margin: 0 0 18px;
  max-width: 640px;
  color: #55504a;
  font-size: 0.95rem;
  line-height: 1.75;
}
.local-trust__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.local-trust__tags a {
  display: inline-flex;
  padding: 9px 16px;
  border: 1px solid rgba(36, 25, 15, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #55504a;
  font-size: 0.8rem;
  text-decoration: none;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.local-trust__tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.local-trust__card {
  padding: 32px;
  background: #fff;
  border: 1px solid #eadfd3;
  box-shadow: 0 14px 32px rgba(51, 34, 17, 0.08);
}
.local-trust__card h3 {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.local-trust__card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.local-trust__card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #55504a;
  font-size: 0.87rem;
  line-height: 1.5;
}
.local-trust__card li svg {
  flex: none;
  margin-top: 2px;
  color: var(--accent);
}
.local-trust__card ul a {
  color: #55504a;
  text-decoration: none;
}
.local-trust__card ul a:hover {
  color: var(--accent);
}
.local-trust__directions {
  width: 100%;
  justify-content: center;
  color: #fff;
}
.local-trust__directions:hover {
  color: #fff;
}
@media (max-width: 800px) {
  .local-trust {
    padding: 44px 0;
  }
  .local-trust__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.recommend-grid article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 130px;
  padding: 14px;
  background: var(--wash);
}
.recommend-grid img {
  width: 95px;
  height: 102px;
  object-fit: cover;
  object-position: top;
}
.recommend-grid h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}
.recommend-grid p {
  margin: 0;
  font-weight: 700;
}
.store-footer {
  padding: 0;
  background: #242125;
  color: #fff;
}
.store-footer .store-logo {
  color: #fff;
}
.store-footer p {
  margin: 14px 0 0;
  color: #bdb9be;
  font-size: 0.85rem;
}
.store-footer small {
  color: #8e8a8e;
  font-size: 0.72rem;
}
.store-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 70px 0 44px;
}
.footer-brand p {
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a,
.footer-social span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #dcb2ac;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.footer-social a:hover {
  border-color: #fff;
  color: #fff;
}
.footer-social span {
  opacity: 0.4;
  cursor: default;
}
.footer-col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: #bdb9be;
  font-size: 0.86rem;
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col svg {
  flex: none;
  color: #8e8a8e;
}
.store-hours {
  margin: 8px 0 0;
  color: #7c7780;
  font-size: 0.78rem;
}
.store-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  color: #8e8a8e;
  font-size: 0.78rem;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #fff;
}
@media (max-width: 800px) {
  .store-shell {
    width: min(100% - 36px, 1210px);
  }
  .store-header__inner {
    height: 64px;
    gap: 14px;
  }
  .store-logo {
    font-size: 1.3rem;
  }
  .menu-toggle {
    display: flex;
  }
  .store-nav {
    display: none;
  }
  .store-nav.is-open {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .store-nav a {
    padding: 12px 0;
  }
  .store-actions {
    margin-left: auto;
    gap: 2px;
  }
  .store-actions a,
  .store-actions button {
    width: 34px;
    height: 34px;
  }
  .store-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0 32px;
  }
  .footer-brand p {
    max-width: none;
  }
  .store-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .shop-section {
    padding: 55px 0;
  }
  .section-intro {
    margin-bottom: 24px;
  }
  .section-intro h2 {
    font-size: 2rem;
  }
  .section-intro > a {
    font-size: 0.78rem;
  }
  .category-showcase {
    flex-direction: column;
  }
  .category-showcase__row--3,
  .category-showcase__row--5 {
    flex-wrap: wrap;
  }
  .category-showcase__row--3 > .category-tile,
  .category-showcase__row--5 > .category-tile {
    flex: 0 0 calc(50% - 7px);
  }
  .category-tile--hero {
    flex: none;
    min-height: 180px;
  }
  .category-showcase__row--bottom {
    flex-wrap: wrap;
  }
  .category-showcase__row--bottom > .category-tile {
    flex: 0 0 calc(50% - 7px);
    min-height: 150px;
  }
  .product-grid {
    display: flex;
    gap: 14px;
    overflow: auto;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: 18px;
    scroll-snap-type: x mandatory;
  }
  .product-card {
    flex: 0 0 225px;
    scroll-snap-align: start;
  }
  .product-card__image {
    height: 295px;
  }
  .product-card__body {
    padding: 12px 12px 14px;
  }
  .img-banner {
    min-height: 340px;
  }
  .img-banner__scrim,
  .img-banner__scrim--right {
    background: linear-gradient(
      rgba(16, 12, 10, 0.32),
      rgba(16, 12, 10, 0.78) 65%
    );
  }
  .img-banner__copy,
  .img-banner__copy--right {
    max-width: none;
    text-align: left;
    margin-left: 0;
    padding: 26px 0;
  }
  .img-banner__copy > a:not(.store-button),
  .img-banner__copy--right > a:not(.store-button) {
    justify-content: flex-start;
  }
  .store-hero.img-banner {
    min-height: 440px;
  }
  .discount-banner.img-banner {
    min-height: 300px;
  }
  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .recommend-grid article {
    min-height: 112px;
  }
  .recommend-grid img {
    height: 86px;
    width: 85px;
  }
}
.add-to-cart.is-added,
.wishlist-add-cart.is-added {
  opacity: 0.55;
  pointer-events: none;
}
.promo-input.is-applied input {
  color: var(--muted);
}
.promo-input button:disabled,
.checkout-button:disabled {
  opacity: 0.6;
  cursor: default;
}
.cart-empty {
  padding: 40px 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.store-announcement {
  background: #1a1512;
  color: #fff;
}
.store-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}
.store-announcement__inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.store-announcement__inner svg {
  flex: none;
}
.store-announcement__dot {
  opacity: 0.5;
}
@media (max-width: 800px) {
  .store-announcement__inner {
    gap: 8px;
    padding: 7px 0;
    font-size: 0.68rem;
  }
}
.occasion-showcase {
  display: flex;
  gap: 14px;
}
.occasion-tile {
  flex: 1;
  min-height: 280px;
}
.brand-story {
  padding: 90px 0;
}
.brand-story__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.brand-story__inner img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
  background: var(--wash);
}
.brand-story__inner h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  letter-spacing: -0.02em;
  color: #272329;
}
.brand-story__inner p {
  margin: 16px 0 0;
  color: #69636a;
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 480px;
}
.instagram-showcase {
  padding-bottom: 70px;
}
.instagram-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}
.instagram-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: instagram-scroll 38s linear infinite;
}
.instagram-marquee:hover .instagram-track {
  animation-play-state: paused;
}
.instagram-tile {
  position: relative;
  display: block;
  flex: 0 0 220px;
  height: 320px;
  overflow: hidden;
  background: var(--wash);
}
.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}
.instagram-tile:hover img {
  transform: scale(1.08);
}
.instagram-tile svg {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}
@keyframes instagram-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .instagram-track {
    animation: none;
  }
}
@media (max-width: 800px) {
  .occasion-showcase {
    flex-wrap: wrap;
  }
  .occasion-tile {
    flex: 0 0 calc(50% - 7px);
    min-height: 170px;
  }
  .festival-banner__inner {
    flex-direction: column;
    min-height: 0;
    padding: 28px 0 0;
  }
  .festival-banner__inner > div {
    padding: 0 9%;
    max-width: none;
  }
  .festival-banner__inner img {
    position: static;
    height: 260px;
    max-width: 100%;
    width: 100%;
    margin-top: 22px;
  }
  .discount-banner {
    padding: 44px 0;
  }
  .discount-banner h2 {
    font-size: 2.4rem;
  }
  .brand-story {
    padding: 46px 0;
  }
  .brand-story__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .brand-story__inner img {
    height: 280px;
  }
  .instagram-tile {
    flex-basis: 150px;
    height: 220px;
  }
}
.product-card__badge--bestseller {
  background: #1e7d3c;
}
.product-card__badge--new {
  background: #b88422;
}
.product-card__stock {
  margin: 4px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #b8722e;
}
.product-card__stock--out {
  color: #a5493f;
}
.wishlist-add-cart {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid #251b14;
  background: #251b14;
  color: #fff;
  font: 700 0.72rem var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.wishlist-add-cart:hover {
  background: #fff;
  color: #251b14;
}
.wishlist-add-cart:disabled {
  border-color: #ddd1c4;
  background: #f4efe8;
  color: #a59b92;
  cursor: default;
}
.wishlist-add-cart:disabled:hover {
  background: #f4efe8;
  color: #a59b92;
}
.search-suggest {
  max-height: 70vh;
  overflow-y: auto;
  padding: 4px 0 18px;
}
.search-suggest__section {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.search-suggest__section:first-child {
  border-top: 0;
  padding-top: 0;
}
.search-suggest__label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.search-suggest__category {
  display: block;
  padding: 8px 4px;
  color: var(--ink);
  font-size: 0.88rem;
  text-decoration: none;
}
.search-suggest__category:hover {
  color: var(--accent);
}
.search-suggest__product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  color: var(--ink);
  text-decoration: none;
}
.search-suggest__product:hover {
  background: var(--wash);
}
.search-suggest__product img {
  flex: none;
  width: 42px;
  height: 52px;
  object-fit: cover;
  background: var(--wash);
}
.search-suggest__product-name {
  flex: 1;
  font-size: 0.86rem;
}
.search-suggest__product-price {
  flex: none;
  font-size: 0.82rem;
  color: var(--muted);
}
.search-suggest__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-suggest__chip,
.catalog-popular-searches__list a {
  display: inline-flex;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  text-decoration: none;
}
.search-suggest__chip:hover,
.catalog-popular-searches__list a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.search-suggest__empty {
  margin: 0;
  padding: 8px 4px;
  color: var(--muted);
  font-size: 0.86rem;
}
.catalog-popular-searches {
  margin-top: 16px;
}
.catalog-popular-searches p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.catalog-popular-searches__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Toast notifications ---------- */
.toast-stack {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid;
  box-shadow: 0 18px 40px -20px rgba(20, 17, 18, 0.35);
  animation: toast-in 0.25s ease;
}
.toast.is-leaving {
  animation: toast-out 0.25s ease forwards;
}
.toast svg {
  flex: none;
  margin-top: 1px;
}
.toast p {
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.4;
}
.toast--success {
  border-left-color: #1e7d3c;
}
.toast--success svg {
  color: #1e7d3c;
}
.toast--error {
  border-left-color: #c0392b;
}
.toast--error svg {
  color: #c0392b;
}
.toast__close {
  flex: none;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a59b92;
  cursor: pointer;
}
.toast__close:hover {
  color: var(--ink);
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(16px);
  }
}
@media (max-width: 640px) {
  .toast-stack {
    left: 16px;
    right: 16px;
    top: 76px;
    max-width: none;
  }
}
