/* Fausto-style homepage — static review */
:root {
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #5c5c5c;
  --color-border: #e8e8e8;
  --color-accent: #8b2332;
  --color-accent-soft: #f5e6e9;
  --color-announce: #1f1f1f;
  --font-body: "Jost", Arial, Tahoma, Verdana, sans-serif;
  --font-display: "Jost", Arial, Tahoma, Verdana, sans-serif;
  --container: min(1200px, 100% - 2rem);
  --header-h: 64px;
  --radius: 4px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, 100% - 2rem);
}

.font-display {
  font-family: var(--font-display);
}

/* Announcement bar */
.announcement-bar {
  background: var(--color-announce);
  color: #fff;
  font-size: 12px;
  overflow: hidden;
  position: relative;
}

.announcement-bar__inner {
  position: relative;
  min-height: 26px;
  padding: 0.35rem 1rem;
}

.announcement-bar__item {
  margin: 0;
  white-space: nowrap;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  text-align: center;
  padding-inline: 1rem;
}

.announcement-bar__item.is-active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .announcement-bar__inner {
    max-width: var(--container);
    margin-inline: auto;
    min-height: 28px;
  }
}

/* Trust strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 12px;
}

@media (min-width: 768px) {
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0.85rem 1rem;
  }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip__icon {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2e4ea;
  color: #8b3351;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.trust-strip__sub {
  display: block;
  color: var(--color-muted);
  font-weight: 400;
  font-size: 12px;
}

.post-hero-cta {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 0.55rem 0 0.7rem;
}

.post-hero-cta__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.2rem 0 0.25rem;
}

.circle-cta {
  min-width: 86px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #111;
}

.circle-cta__img-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #222;
  background: #fff;
}

.circle-cta__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-cta__label {
  margin-top: 0.35rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.site-header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

@media (min-width: 1024px) {
  .site-header__row {
    grid-template-columns: minmax(340px, 1fr) auto minmax(320px, 430px) auto;
    gap: 1rem;
    min-height: 76px;
  }
}

.site-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}

.site-logo:hover {
  text-decoration: none;
  color: #111;
}

.site-logo__brand {
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.site-logo__sub {
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: 0.45em;
  font-weight: 600;
  color: var(--color-muted);
}

.site-search {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .site-search {
    display: block;
    grid-column: 3;
  }
}

.site-search input {
  width: 100%;
  padding: 0.72rem 2.25rem 0.72rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  background: #f5f5f5;
  font-size: 12px;
}

.site-search__submit {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 1024px) {
  .site-header__actions {
    grid-column: 4;
    justify-self: end;
  }
}

.icon-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: var(--color-muted);
  padding: 0.25rem 0.4rem;
  text-decoration: none;
}

.icon-link:hover {
  color: var(--color-text);
  text-decoration: none;
}

.icon-link__glyph {
  font-size: 1.1rem;
  line-height: 1;
}

.icon-link__label {
  display: none;
}

@media (min-width: 768px) {
  .icon-link__label {
    display: block;
    max-width: 4.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.icon-link--cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 1rem;
  height: 1rem;
  padding: 0 4px;
  font-size: 10px;
  line-height: 1rem;
  text-align: center;
  background: transparent;
  color: #111;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.icon-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
}

.icon-btn:hover {
  background: var(--color-bg);
}

.site-header__burger {
  display: inline-flex;
}

@media (min-width: 1024px) {
  .site-header__burger {
    display: none;
  }
}

.inline-nav {
  display: none;
}

@media (min-width: 1024px) {
  .inline-nav {
    display: block;
    grid-column: 1;
  }
}

.inline-nav__list {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.inline-nav__list a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.inline-nav__list a.is-sale {
  color: #bfbfbf;
}

.icon-btn__bars,
.icon-btn__bars::before,
.icon-btn__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  position: relative;
}

.icon-btn__bars::before,
.icon-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.icon-btn__bars::before {
  top: -6px;
}

.icon-btn__bars::after {
  top: 6px;
}

/* Primary nav + mega */
.primary-nav {
  display: none !important;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 1024px) {
  .primary-nav {
    display: block;
  }
}

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.25rem;
  justify-content: center;
  min-height: 48px;
  align-items: center;
}

.primary-nav__item {
  position: static;
}

.primary-nav__link {
  display: block;
  padding: 0.65rem 0.15rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.primary-nav__link:hover,
.has-mega:hover > .primary-nav__link {
  color: var(--color-accent);
}

.primary-nav__link--sale {
  color: var(--color-accent);
}

.mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0;
  padding: 1.5rem 0 2rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  z-index: 90;
}

.has-mega:hover .mega,
.has-mega:focus-within .mega {
  display: block;
}

.mega__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem 2rem;
}

.mega__heading {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.mega__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.mega__col li {
  margin-bottom: 0.35rem;
}

.mega__col a:hover {
  color: var(--color-accent);
}

.mega__col--cta {
  display: flex;
  align-items: flex-start;
}

/* Mobile drawer */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.mobile-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--color-surface);
  z-index: 210;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
}

.mobile-drawer__body {
  padding: 0.5rem 1rem 2rem;
  overflow-y: auto;
}

.mobile-drawer__link {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 600;
}

.mobile-drawer__accordion {
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  padding: 0.65rem 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.mobile-drawer__panel {
  padding: 0.35rem 0 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 14px;
}

.mobile-drawer__panel a {
  color: var(--color-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font: inherit;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  opacity: 0.92;
}

.btn--light {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn--block {
  width: 100%;
}

.btn--dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Hero carousel */
.hero-carousel {
  position: relative;
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: #222;
}

.carousel__btn--prev {
  left: 0.5rem;
}

.carousel__btn--next {
  right: 0.5rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 0 1rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #ccc;
  cursor: pointer;
}

.carousel__dot.is-active {
  background: var(--color-accent);
}

.hero-slide {
  min-height: min(52vh, 420px);
  background: #2a2a2a var(--hero-img) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 2rem 0 3rem;
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}

.hero-slide--alt::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 50%);
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0.25rem 0 1rem;
  max-width: 18ch;
}

.hero-slide--fausto {
  align-items: center;
  min-height: min(56vh, 460px);
}

.hero-slide--fausto::after {
  background: linear-gradient(to right, rgba(250, 235, 220, 0.68), rgba(250, 235, 220, 0.08) 42%, rgba(0, 0, 0, 0) 65%);
}

.hero-slide--fausto .hero-slide__content {
  color: #4d3832;
  max-width: 440px;
  margin-left: clamp(0rem, 4vw, 4rem);
}

.hero-slide__title--dark {
  color: #5b3a32;
  font-family: var(--font-body);
  font-size: clamp(2.3rem, 6.2vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0.15rem 0;
}

.hero-slide__line {
  margin: 0;
  font-size: clamp(1.55rem, 3.1vw, 3rem);
  line-height: 1.15;
}

.hero-slide__line--small {
  font-size: clamp(1.25rem, 2.3vw, 2.2rem);
}

.hero-slide__line--presenting {
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.hero-slide__line--strong {
  font-weight: 700;
}

.hero-cta {
  margin-top: 0.9rem;
  padding: 0.6rem 1.9rem;
  background: #6b463c;
  border-color: #6b463c;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.8rem);
  font-weight: 700;
  border-radius: 2px;
  min-width: 190px;
}

.hero-cta:hover {
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  margin: 0;
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section--muted {
  background: #f3f3f3;
}

.ethnic-products {
  padding-top: 2rem;
}

.ethnic-products__title {
  text-align: center;
  margin-bottom: 1.35rem;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
}

.product-card--ethnic {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-card--ethnic:hover {
  box-shadow: none;
}

.product-card--ethnic .product-card__media {
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  border: 1px solid #ddd;
}

.product-card--ethnic .product-card__title {
  margin: 0.55rem 0.2rem 0.2rem;
  font-size: 12px;
  min-height: 2.6em;
}

.product-card--ethnic .product-card__price {
  margin: 0 0.2rem;
  font-size: 14px;
}

.promo-banner {
  background: #fff;
  padding: 0;
}

.promo-banner__inner {
  min-height: clamp(320px, 48vw, 520px);
  background: #efebe7 var(--promo-img) right center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.promo-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0));
}

.promo-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 1rem 0;
}

.promo-banner__kicker {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  color: #111;
  line-height: 1.08;
}

.promo-banner__title {
  margin: 0.15rem 0 0.55rem;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  line-height: 0.95;
  color: #8a6a54;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.promo-banner__desc {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.55vw, 1.9rem);
  color: #252525;
}

.promo-banner__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.promo-banner__btn {
  background: #111;
  color: #fff;
  border-color: #111;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  min-width: 118px;
  padding: 0.62rem 1rem;
}

.promo-banner__btn:hover {
  color: #fff;
  text-decoration: none;
}

.section--ethnic {
  padding-top: 2.8rem;
  padding-bottom: 2.2rem;
  background: #fff;
}

.occasion-carousel-wrap {
  margin-top: 0.35rem;
}

.occasion-carousel {
  width: min(1280px, calc(100% - 1.6rem));
  margin-inline: auto;
}

.occasion-carousel .carousel__btn {
  background: rgba(255, 255, 255, 0.96);
  width: 34px;
  height: 34px;
  font-size: 1.15rem;
}

.occasion-carousel .carousel__btn--prev { left: -8px; }
.occasion-carousel .carousel__btn--next { right: -8px; }

.occasion-carousel .carousel__slide,
.lifestyle-carousel .carousel__slide,
.women-choice-carousel .carousel__slide {
  flex: 0 0 25%;
}

@media (max-width: 1200px) {
  .occasion-carousel .carousel__slide,
  .lifestyle-carousel .carousel__slide,
  .women-choice-carousel .carousel__slide {
    flex-basis: 33.3333%;
  }
}

@media (max-width: 900px) {
  .occasion-carousel .carousel__slide,
  .lifestyle-carousel .carousel__slide,
  .women-choice-carousel .carousel__slide {
    flex-basis: 50%;
  }
}

@media (max-width: 640px) {
  .occasion-carousel .carousel__slide,
  .lifestyle-carousel .carousel__slide,
  .women-choice-carousel .carousel__slide {
    flex-basis: 85%;
  }
}

.occasion-card {
  display: block;
  text-decoration: none;
  color: #111;
  text-align: center;
  padding-inline: 0.35rem;
}

.occasion-card__img-wrap {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #eee;
  aspect-ratio: 3 / 4;
}

.occasion-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occasion-card__label {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 700;
}

.occasion-card__cta {
  display: block;
  margin-top: 0.2rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head--row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin: 0 0 0.25rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.section-title .accent {
  display: inline;
  margin-left: 0.35rem;
  color: var(--color-accent);
  font-style: normal;
  font-weight: 700;
}

.section-lead {
  color: var(--color-muted);
  max-width: 52ch;
  margin: 0 0 0.75rem;
}

.text-link {
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--color-accent);
}

/* Occasion tiles */
.tile-grid {
  display: grid;
  gap: 0.75rem;
}

.tile-grid--6 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .tile-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .tile-grid--6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.occasion-tile {
  position: relative;
  min-height: 170px;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: #222 center / cover no-repeat;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  overflow: hidden;
}

.occasion-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.1));
}

.occasion-tile:nth-child(1) { background-image: url("https://images.unsplash.com/photo-1556906781-9a412961c28c?w=600&q=80"); }
.occasion-tile:nth-child(2) { background-image: url("https://images.unsplash.com/photo-1513673054901-2b5f51551112?w=600&q=80"); }
.occasion-tile:nth-child(3) { background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=600&q=80"); }
.occasion-tile:nth-child(4) { background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=600&q=80"); }
.occasion-tile:nth-child(5) { background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=600&q=80"); }
.occasion-tile:nth-child(6) { background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=600&q=80"); }

.occasion-tile:hover {
  text-decoration: none;
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
}

.occasion-tile__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.occasion-tile__cta {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f7d9df;
  margin-top: 0.25rem;
}

/* Chip / scroll rows */
.scroll-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-row::-webkit-scrollbar {
  height: 6px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.chip-tile {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 160px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.chip-tile span {
  font-weight: 600;
}

.chip-tile small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.chip-tile--soft {
  background: #fff;
}

.chip-tile:hover {
  text-decoration: none;
  border-color: var(--color-accent);
}

/* Product grid & cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.75rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 1rem;
  }
}

.product-row-scroll {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(1rem, calc(50vw - 50%));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-row-scroll__inner {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.product-card--row {
  flex: 0 0 min(72vw, 280px);
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .product-card--row {
    flex: 0 0 260px;
  }
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding-bottom: 0.5rem;
}

.product-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow);
}

.product-card__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee;
  aspect-ratio: 4 / 5;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  background: #111;
  color: #fff;
}

.badge--sale {
  background: var(--color-accent);
}

.wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.product-card__quick {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  background: rgba(255, 255, 255, 0.95);
}

.product-card:hover .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quick a {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--color-border);
}

.product-card__quick a + a {
  border-left: 1px solid var(--color-border);
}

.product-card__title {
  font-size: 13px;
  font-weight: 500;
  margin: 0.65rem 0.5rem 0.25rem;
  line-height: 1.35;
  min-height: 2.7em;
}

.product-card__title a:hover {
  color: var(--color-accent);
}

.product-card__price {
  margin: 0 0.5rem;
  font-size: 14px;
}

.product-card__price .woocommerce-Price-amount {
  font-weight: 600;
}

.product-card__price del {
  color: var(--color-muted);
  margin-right: 0.35rem;
}

.product-card__sizes {
  margin: 0.35rem 0.5rem 0;
  font-size: 11px;
  color: var(--color-muted);
}

.product-card__sizes span {
  display: inline-block;
  margin-right: 0.25rem;
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 10px;
}

/* Article / video */
.section--article {
  background: var(--color-surface);
}

.video-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #111;
}

.video-banner__el {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
}

.video-banner__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0;
  pointer-events: none;
}

.section--article h2,
.section--article h3 {
  font-family: var(--font-display);
}

/* Reviews */
.reviews-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.review-card {
  flex: 0 0 min(85vw, 300px);
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.review-card__stars {
  margin: 0 0 0.35rem;
  color: #c9a227;
  letter-spacing: 2px;
}

.review-card__title {
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.review-card__text {
  margin: 0 0 0.75rem;
  font-size: 14px;
  color: var(--color-muted);
}

.review-card__meta {
  margin: 0;
  font-size: 12px;
  color: var(--color-muted);
}

/* Rewards */
.section--rewards {
  background: #050505;
  color: #f3f3f3;
  position: relative;
}

.rewards {
  text-align: center;
  position: relative;
}

.rewards__title {
  margin: 0;
  font-size: clamp(1.7rem, 3.1vw, 2.35rem);
  color: #fff;
}

.rewards__lead {
  margin: 0.35rem 0 1.6rem;
  color: #b4b4b4;
  font-size: 14px;
}

.rewards__lead span {
  margin-right: 0.35rem;
}

.rewards__subhead {
  margin: 0 0 1.1rem;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.rewards__ways,
.rewards__steps {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2.2rem;
}

.rewards__ways {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rewards__steps {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 0;
}

.reward-item,
.reward-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.reward-item__icon,
.reward-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #8a8a8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.reward-item h4,
.reward-step p {
  margin: 0;
  color: #efefef;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reward-item p {
  margin: 0;
  color: #8f8f8f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reward-step p {
  color: #a9a9a9;
}

.rewards__gift-chip {
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  transform: translateX(-0.65rem);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #323232;
  background: #0c0c0c;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 12px;
  color: #d9d9d9;
}

.rewards__gift-chip:hover {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 900px) {
  .rewards__ways {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .rewards__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Footer trust */
.footer-trust {
  background: #f2f2f2;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e6e6e6;
  font-size: 12px;
}

.footer-trust__grid {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem 0.4rem;
}

@media (min-width: 768px) {
  .footer-trust__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.footer-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-trust__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.footer-trust__item h4 {
  margin: 0;
  color: #111;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
}

.footer-trust__item p {
  margin: 0.2rem 0 0;
  color: #444;
  font-size: 18px;
  line-height: 1.35;
}

/* Site footer */
.site-footer {
  background: #f2f2f2;
  color: #222;
  padding: 2rem 0 1.4rem;
  font-size: 13px;
}

.site-footer a:hover {
  color: #000;
}

.site-footer__grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr 1.35fr;
  }
}

.site-footer h4 {
  color: #0f0f0f;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
}

.site-footer .no-transform {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 500;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.42rem;
}

.site-footer .mt {
  margin-top: 1.25rem;
}

.newsletter {
  display: flex;
  gap: 0;
  margin-top: 0.5rem;
  max-width: 350px;
}

.newsletter input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.62rem 0.75rem;
  border-radius: 0;
  border: 1px solid #d8d8d8;
  border-right: 0;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 12px;
}

.newsletter__btn {
  border: 0;
  background: #1f1f1f;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 0.62rem 1rem;
  min-width: 94px;
  cursor: pointer;
}

.newsletter__hint {
  margin: 0.75rem 0 0;
  color: #4f4f4f;
  font-size: 12px;
  line-height: 1.4;
}

.social-list {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: flex;
  gap: 0.9rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #131313;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.social-icon:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer-trust__item h4 {
    font-size: 16px;
  }

  .footer-trust__item p {
    font-size: 13px;
  }
}

/* WooCommerce list resets */
ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.products li.product {
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
}

ul.products.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.75rem;
}

@media (min-width: 768px) {
  ul.products.product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 1rem;
  }
}

ul.products.product-row-scroll__inner {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}

ul.products.product-row-scroll__inner li.product {
  flex: 0 0 min(72vw, 280px);
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  ul.products.product-row-scroll__inner li.product {
    flex: 0 0 260px;
  }
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* WordPress menu (when Primary menu assigned) */
.primary-nav .primary-nav__list.menu,
.primary-nav ul.menu.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.25rem;
  justify-content: center;
  min-height: 48px;
  align-items: center;
}

.primary-nav .menu > li {
  position: relative;
  list-style: none;
}

.primary-nav .menu > li > a {
  display: block;
  padding: 0.65rem 0.15rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.primary-nav .menu > li > a:hover {
  color: var(--color-accent);
}

.primary-nav .menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  z-index: 95;
}

.primary-nav .menu li:hover > .sub-menu,
.primary-nav .menu li:focus-within > .sub-menu {
  display: block;
}

.primary-nav .menu .sub-menu a {
  display: block;
  padding: 0.4rem 0.85rem;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.primary-nav .menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.mobile-drawer-menu,
.mobile-drawer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-drawer-menu > li > a {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-drawer-menu .sub-menu {
  padding: 0 0 0.5rem 0.75rem;
}

.mobile-drawer-menu .sub-menu a {
  display: block;
  padding: 0.35rem 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
}

.lifestyle-carousel-section {
  padding-top: 1.35rem;
}

.lifestyle-carousel {
  width: min(1280px, calc(100% - 1.6rem));
  margin-inline: auto;
}

.lifestyle-carousel .carousel__btn {
  background: rgba(255, 255, 255, 0.96);
  width: 34px;
  height: 34px;
  font-size: 1.15rem;
}

.lifestyle-carousel .carousel__btn--prev { left: -8px; }
.lifestyle-carousel .carousel__btn--next { right: -8px; }

.sale-showcase {
  background: #fff;
  padding-top: 2rem;
}

.women-choice-section {
  padding-top: 2.2rem;
}

.women-choice-carousel {
  width: min(1280px, calc(100% - 1.6rem));
  margin-inline: auto;
}

.women-choice-carousel .carousel__btn {
  background: rgba(255, 255, 255, 0.96);
  width: 34px;
  height: 34px;
  font-size: 1.15rem;
}

.women-choice-carousel .carousel__btn--prev { left: -8px; }
.women-choice-carousel .carousel__btn--next { right: -8px; }

.best-seller-showcase {
  background: #fff;
  padding-top: 2rem;
}

