/* —— Design tokens —— */
:root {
  --cream: #fbf6ee;
  --gold: #c9a96e;
  --gold-dark: #a8864f;
  --gold-light: #e8dcc4;
  --ink: #1a1410;
  --ink-soft: #3d342c;
  --ink-muted: #6b5f54;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
}

body {
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(201, 169, 110, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 100%, rgba(26, 20, 16, 0.04), transparent 50%);
}

/* —— Layout —— */
.site-main--padded {
  padding-top: 4.25rem;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background-color 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.site-header--overlay {
  background: linear-gradient(to bottom, rgba(26, 20, 16, 0.55), transparent);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.site-header--overlay .header-nav__link,
.site-header--overlay .header-social__btn {
  color: rgba(251, 246, 238, 0.92);
}

.site-header--solid {
  background: rgba(26, 20, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: 0 4px 24px rgba(26, 20, 16, 0.12);
}

.site-header--solid .header-nav__link,
.site-header--solid .header-social__btn {
  color: var(--cream);
}

.site-header--solid .header-social {
  border-color: rgba(201, 169, 110, 0.25);
}

.site-header__menu-btn {
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--cream);
  background: rgba(26, 20, 16, 0.4);
  transition: background 0.25s var(--ease-out);
}

.site-header__menu-btn:hover {
  background: rgba(201, 169, 110, 0.15);
}

.site-header__drawer {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  background: rgba(26, 20, 16, 0.98);
  backdrop-filter: blur(12px);
  max-height: min(85vh, calc(100dvh - 4rem));
  overflow-y: auto;
}

.site-header__drawer-link {
  display: block;
  padding: 0.75rem 0.5rem;
  border-radius: 0.375rem;
  color: var(--cream);
  transition: background 0.2s, color 0.2s;
}

.site-header__drawer-link:hover {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
}

.header-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0.1rem;
  text-decoration: none;
  transition: color 0.35s var(--ease-out), letter-spacing 0.35s var(--ease-out);
}

.header-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.header-nav__link:hover {
  color: var(--gold);
  letter-spacing: 0.22em;
}

.header-nav__link:hover::after {
  transform: scaleX(1);
}

.header-social__btn {
  padding: 0.5rem;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.header-social__btn:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
}

.header-social__btn--drawer {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  transition:
    background 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn--light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn--light:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 246, 238, 0.45);
}

.btn--ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* —— Section headings —— */
.home-section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .home-section-head {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: end;
    text-align: left;
  }

  .home-section-head__eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .home-section-head__title {
    grid-column: 1;
    grid-row: 2;
  }

  .home-section-head__link {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
}

.home-section-head__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.home-section-head__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.home-section-head__title em,
.home-section-head__title--left em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.home-section-head__title--left {
  text-align: left;
}

.home-section-head__link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s;
}

.home-section-head__link:hover {
  color: var(--gold-dark);
}

/* —— Hero (asymmetric + gold separator) —— */
.home-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  padding: 5.5rem 1rem 3rem;
  background: var(--cream);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  align-items: center;
}

@media (min-width: 900px) {
  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) 3px minmax(0, 1.05fr);
    gap: 0 2.5rem;
    min-height: calc(100dvh - 6rem);
  }
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
  max-width: 34rem;
}

@media (min-width: 900px) {
  .home-hero__content {
    padding: 2rem 0 2rem 0.5rem;
  }
}

.home-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.home-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.home-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.home-hero__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 28rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.home-hero__separator {
  display: none;
}

@media (min-width: 900px) {
  .home-hero__separator {
    display: block;
    align-self: stretch;
    width: 3px;
    min-height: 12rem;
    background: linear-gradient(
      to bottom,
      transparent,
      var(--gold) 12%,
      var(--gold) 88%,
      transparent
    );
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.35);
  }
}

.home-hero__visual {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}

@media (min-width: 900px) {
  .home-hero__visual {
    min-height: auto;
    align-self: stretch;
  }
}

.home-hero__image {
  width: 100%;
  height: 100%;
  min-height: 50vh;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.02) saturate(0.95);
}

@media (min-width: 900px) {
  .home-hero__image {
    min-height: 100%;
    border-radius: 0 0 0 4rem;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* —— Marquee —— */
.home-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(201, 169, 110, 0.35);
  background: var(--ink);
  padding: 1rem 0;
}

.home-marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: homeMarquee 42s linear infinite;
}

.home-marquee__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.home-marquee__dot {
  color: var(--gold);
  font-size: 0.45rem;
  opacity: 0.85;
}

@keyframes homeMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-marquee__track {
    animation-duration: 120s;
  }
}

/* —— Products bento grid —— */
.home-products {
  padding: 4.5rem 0 5rem;
}

.home-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .home-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-products__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
  }

  .home-products__card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.home-products__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(201, 169, 110, 0.35);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.home-products__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 20, 16, 0.1);
  border-color: var(--gold);
}

.home-products__media {
  display: block;
  flex: 1;
  min-height: 0;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
  padding: 1rem;
}

.home-products__card--featured .home-products__media {
  min-height: 280px;
}

@media (min-width: 1024px) {
  .home-products__card--featured .home-products__media {
    min-height: 0;
    flex: 1;
  }
}

.home-products__img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
}

.home-products__card:hover .home-products__img {
  transform: scale(1.03);
}

.home-products__card--featured .home-products__img {
  min-height: 16rem;
}

@media (min-width: 1024px) {
  .home-products__card--featured .home-products__img {
    min-height: 100%;
  }
}

.home-products__body {
  padding: 1.15rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.home-products__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.home-products__name {
  margin-bottom: 0.25rem;
}

.home-products__card--featured .home-products__name {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.home-products__cat {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.home-products__price {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
}

/* —— About + stats —— */
.home-about {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.08) 50%, transparent);
}

.home-about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .home-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.home-about__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 1.25rem 0 2rem;
  max-width: 32rem;
}

.home-about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold);
  border: 1px solid var(--gold);
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--cream);
  gap: 0.35rem;
}

.home-about__stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.home-about__stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* —— Contact (dark) —— */
.home-contact {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.home-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(201, 169, 110, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(201, 169, 110, 0.08), transparent 50%);
  pointer-events: none;
}

.home-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .home-contact__inner {
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem 3rem;
  }

  .home-contact__header {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .home-contact__channels {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .home-contact__actions {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }
}

.home-contact__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.home-contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.home-contact__title em {
  font-style: italic;
  color: var(--gold-light);
}

.home-contact__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(251, 246, 238, 0.72);
  max-width: 28rem;
}

.home-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-contact__channel {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease-out);
}

.home-contact__channel:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  transform: translateX(4px);
}

.home-contact__channel-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-contact__channel-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
}

.home-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Contact page map —— */
.contact-map-section {
  margin-top: -0.01px;
}

.site-main--padded .contact-map-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.contact-map {
  position: relative;
  width: 100%;
  min-height: min(52vh, 28rem);
  background: var(--ink);
}

.contact-map__canvas {
	display: block;
	width: 100%;
	height: min(52vh, 28rem);
	min-height: 280px;
	z-index: 1;
}

.contact-map__canvas.leaflet-container {
	font-family: var(--font-sans);
}

.contact-map__pin span {
	display: block;
	width: 28px;
	height: 28px;
	background: var(--gold);
	border: 2px solid var(--ink);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 4px 12px rgba(26, 20, 16, 0.35);
}

.contact-map__popup {
	font-family: var(--font-sans);
	font-size: 0.875rem;
	line-height: 1.5;
}

.contact-map__popup a {
	color: var(--gold-dark);
	font-weight: 500;
}

.contact-map__panel {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.35rem;
  background: rgba(26, 20, 16, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 169, 110, 0.35);
}

.contact-map__chip {
  appearance: none;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  transition:
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
  white-space: nowrap;
}

.contact-map__chip:hover,
.contact-map__chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.contact-map__infowin {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink);
  padding: 0.15rem 0;
}

.contact-map__infowin a {
  color: var(--gold-dark);
  font-weight: 500;
}

.contact-page .font-serif {
  font-family: var(--font-serif);
}

/* —— Shop filters (checkbox sidebar) —— */
.shop-filters {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 0.5rem;
  padding: 1.25rem 1rem 1.5rem;
}

.shop-filters__group {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.shop-filters__group--sort,
.shop-filters__group--sizes {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 169, 110, 0.25);
}

.shop-filters__select-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.shop-filters__select {
  width: 100%;
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 0.5rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
}

.shop-filters__select:focus {
  outline: 2px solid rgba(201, 169, 110, 0.45);
  outline-offset: 1px;
}

.shop-filters__hint {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.shop-filters__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.85rem;
  padding: 0;
  float: none;
  width: 100%;
}

.shop-filters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shop-filters__sublist {
  list-style: none;
  margin: 0.35rem 0 0.5rem 0;
  padding: 0 0 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-left: 1px solid rgba(201, 169, 110, 0.35);
}

.shop-filters__label {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.4;
}

.shop-filters__label--sub {
  font-size: 0.85rem;
}

.shop-filters__checkbox {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--gold);
}

.shop-filters__text {
  flex: 1;
  min-width: 0;
}

.shop-filters__count {
  font-size: 0.8rem;
  color: var(--ink-muted, #6b6560);
  white-space: nowrap;
}

.shop-filters__actions {
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.shop-filters__clear {
  font-size: 0.8rem;
  color: var(--gold-dark, #a88b4a);
  text-decoration: underline;
}

.shop-filters__clear:hover {
  color: var(--ink);
}

/* Contact photo: full frame visible at any zoom (no top crop from object-cover) */
.contact-page__photo-wrap {
  line-height: 0;
}

.contact-page__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(92vh, 56rem);
  object-fit: contain;
  object-position: top center;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  margin-top: 0;
}

.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__links a {
  font-size: 0.9rem;
  color: rgba(251, 246, 238, 0.75);
  text-decoration: none;
  transition: color 0.25s;
}

.site-footer__links a:hover {
  color: var(--gold);
}

.site-footer__bar {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 1.25rem 0;
}

/* —— Shared cards (shop etc.) —— */
.card-hover {
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(26, 20, 16, 0.1);
}

/* —— Product names: Jost Regular (nu serif) —— */
.product-title,
h1.product-title,
h2.product-title,
h3.product-title,
p.product-title {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.product-title--page {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}

.product-card-media {
  position: relative;
  overflow: hidden;
}

.product-card-media__img {
  position: absolute;
  inset: 0.75rem;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-card-media__img--primary {
  opacity: 1;
}

.product-card-media__img--hover {
  opacity: 0;
}

.card-hover:hover .product-card-media--has-hover .product-card-media__img--primary {
  opacity: 0;
  transform: scale(1.01);
}

.card-hover:hover .product-card-media--has-hover .product-card-media__img--hover {
  opacity: 1;
  transform: scale(1.01);
}

/* —— Scroll to top —— */
.chat-fab {
  position: fixed;
  left: 1.25rem;
  bottom: 1.5rem;
  z-index: 91;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.chat-fab__trigger {
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, #25d366 0%, #7360f2 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 20, 16, 0.28);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  animation: chatFabPulse 2.2s ease-in-out infinite;
}

.chat-fab__trigger:hover,
.chat-fab:focus-within .chat-fab__trigger {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(26, 20, 16, 0.32);
}

.chat-fab__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.chat-fab__trigger-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.chat-fab__menu {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
  pointer-events: none;
}

.chat-fab:hover .chat-fab__menu,
.chat-fab:focus-within .chat-fab__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-fab__btn {
  min-width: 9.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.8rem;
  border-radius: 9999px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(26, 20, 16, 0.28);
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}

.chat-fab__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.chat-fab__icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
}

.chat-fab__btn--whatsapp {
  background: #25d366;
}

.chat-fab__btn--viber {
  background: #7360f2;
}

@keyframes chatFabPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(26, 20, 16, 0.28), 0 0 0 0 rgba(115, 96, 242, 0.2);
  }
  50% {
    box-shadow: 0 12px 28px rgba(26, 20, 16, 0.34), 0 0 0 9px rgba(115, 96, 242, 0);
  }
}

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 90;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.55);
  border-radius: 9999px;
  background: var(--ink);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(26, 20, 16, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition:
    opacity 0.3s var(--ease-out, ease),
    visibility 0.3s,
    transform 0.3s var(--ease-out, ease),
    background 0.25s,
    color 0.25s;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.scroll-top__icon {
  display: block;
}

@media (max-width: 640px) {
  .chat-fab {
    left: 1rem;
    bottom: 1rem;
  }

  .chat-fab__trigger {
    width: 3rem;
    height: 3rem;
  }

  .chat-fab__btn {
    min-width: 8.9rem;
    padding: 0.58rem 0.72rem;
    font-size: 0.74rem;
  }

  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-nav__link:hover {
    letter-spacing: inherit;
    transform: none;
  }

  .btn:hover,
  .home-products__card:hover,
  .chat-fab__btn:hover {
    transform: none;
  }

  .chat-fab__trigger {
    animation: none;
  }

  .scroll-top {
    transition: opacity 0.15s, visibility 0.15s;
  }
}
