/* Tangier (display / titles) — hosted on Shopify CDN */
@font-face {
  font-family: Tangier;
  src: url("https://cdn.shopify.com/s/files/1/0630/4261/7558/files/Tangier-Medium.woff2?v=1723106488")
      format("woff2"),
    url("https://cdn.shopify.com/s/files/1/0630/4261/7558/files/Tangier-Medium.woff?v=1723106487")
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Same file for normal-weight text (headings use font-weight: 400 in this project). */
@font-face {
  font-family: Tangier;
  src: url("https://cdn.shopify.com/s/files/1/0630/4261/7558/files/Tangier-Medium.woff2?v=1723106488")
      format("woff2"),
    url("https://cdn.shopify.com/s/files/1/0630/4261/7558/files/Tangier-Medium.woff?v=1723106487")
      format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Design tokens (from original Tailwind theme) */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 10%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(0, 0%, 40%);
  --secondary: hsl(0, 0%, 96%);
  --border: hsl(0, 0%, 90%);
  --primary: hsl(0, 0%, 10%);
  --primary-foreground: hsl(0, 0%, 100%);
  /* Footer (reference screenshot) */
  --footer-bg: #f9f9f9;
  --footer-line: #d1d1d1;
  --footer-ink: #1a1a1a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: "Montserrat", sans-serif;
}

/* Home hero (index) */
.home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
}

.home .site-header .header-inner {
  color: #fff;
  padding-top: 8px;
}

.home .site-header .icon-btn {
  color: #fff;
}

.home .site-header .logo-mark {
  filter: invert(1) brightness(2);
}

.home .site-header .logo-mark--wordmark {
  filter: none;
}

.home .site-header .logo-mark--scrolled {
  filter: none;
}

.logo-swap {
  position: relative;
  display: grid;
  place-items: center;
  height: 34px;
  min-width: 260px;
}

.logo-swap .logo-mark {
  position: relative;
  grid-area: 1 / 1;
  transition: opacity 520ms ease, transform 560ms ease;
  will-change: opacity, transform;
}

.logo-mark--wordmark {
  opacity: 1;
  height: 24px;
  transform: translateY(0) scale(1);
}

.logo-mark--scrolled {
  opacity: 0;
  height: 34px;
  transform: translateY(6px) scale(0.98);
}

.home.is-scrolled .logo-mark--wordmark {
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
}

.home.is-scrolled .logo-mark--scrolled {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.home-hero__bgPane {
  position: relative;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.home-hero__bgPane--woman {
  background-image: url("https://www.manieredevoir.com/cdn/shop/files/HP-WD-20-04-26.jpg?v=1776701903&width=1920");
}

.home-hero__bgPane--man {
  background-image: url("https://www.manieredevoir.com/cdn/shop/files/HP-MD-20-04-26.jpg?v=1776701903&width=1920");
}

.home-hero__content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 90px 16px 92px;
  color: #fff;
  text-align: center;
}

.home-hero__kicker {
  font-size: 90px;
  letter-spacing: 0;
  font-family: "Exmouth", "Tangier", serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  line-height: 1;
  color: var(--text-color, #fff);
  margin: 0 0 24px;
}

.home-hero__links {
  margin-top: 16px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

.home-hero__link {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.home-hero__link:hover,
.home-hero__link:focus-visible {
  opacity: 0.85;
}

/* Titles: Tangier loaded via @font-face above. */
.font-serif-brand {
  font-family: "Tangier", serif;
}

.font-sans-brand {
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Layout */
.page {
  min-height: 100vh;
  background: var(--background);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 50px;
}

.icon-btn {
  padding: 0.5rem;
  transition: opacity 0.2s;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  opacity: 0.7;
}

.icon-btn--tight {
  padding: 0.25rem;
}

.header-inner .icon-btn:first-child {
  margin-left: -0.5rem;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text {
  font-family: "Tangier", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--foreground);
}

.logo-mark {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon {
  display: block;
}

.bag-wrap {
  position: relative;
}

.bag-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--foreground);
  color: var(--background);
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
}

.country-flag {
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

/* Off-canvas */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  height: 100%;
  width: min(340px, 85vw);
  background: var(--background);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-panel::-webkit-scrollbar {
  display: none;
}

.nav-panel.is-open {
  transform: translateX(0);
}

.nav-close-row {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}

.nav-heading {
  padding: 0 1.5rem 1.5rem;
}

.nav-heading h2 {
  margin: 0;
  font-family: "Tangier", serif;
  font-size: 1.125rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.025em;
  color: var(--foreground);
}

.nav-main {
  padding: 0 1.5rem;
}

.nav-main a {
  display: block;
  padding: 0.625rem 0;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: opacity 0.2s;
}

.nav-main a:hover {
  opacity: 0.6;
}

.nav-divider {
  margin: 1.5rem;
  border-top: 1px solid var(--border);
}

.nav-bottom {
  padding: 0 1.5rem 2.5rem;
}

.nav-bottom a {
  display: block;
  padding: 0.5rem 0;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-bottom a:hover {
  color: var(--foreground);
}

body.nav-open {
  overflow: hidden;
}

/* Main / PLP */
.page-heading {
  text-align: center;
  padding: 2rem 1rem;
}

.page-heading h1 {
  margin: 0;
  font-family: "Tangier", serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-style: normal;
  font-weight: 400;
  color: var(--foreground);
}

.page-heading .item-count {
  margin: 0.5rem 0 0;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
}

.filter-bar button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: opacity 0.2s;
}

.filter-bar .filter-divider {
  width: 1px;
  align-self: stretch;
  min-height: 1rem;
  background: var(--border);
  margin: 0 1rem;
}

.filter-bar button:hover {
  opacity: 0.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

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

.product-card {
  /* card block */
}

.product-card__media {
  display: block;
  color: inherit;
}

.product-card__media:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 2px;
}

/* —— Product detail (PDP) —— */
.pdp-page {
  padding-bottom: 2rem;
}

.pdp-not-found {
  max-width: 28rem;
  margin: 3rem auto;
  padding: 0 1.25rem;
  text-align: center;
  font-size: 14px;
}

.pdp-not-found a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pdp {
  display: grid;
  gap: 1rem;
  padding: 1rem 0.75rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 72px minmax(0, 1fr) minmax(280px, 360px);
    gap: 1.25rem 1.5rem;
    align-items: start;
    padding: 1.5rem 1.25rem 3rem;
  }
}

.pdp-thumbs {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 900px) {
  .pdp-thumbs {
    grid-row: 1 / span 2;
    align-self: start;
    flex-direction: column;
    overflow-x: visible;
    max-height: min(70vh, 640px);
    overflow-y: auto;
    gap: 0.5rem;
    padding-bottom: 0;
  }
}

.pdp-thumb {
  flex-shrink: 0;
  width: 64px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: #e8e8e8;
  transition: border-color 0.2s, opacity 0.2s;
}

@media (min-width: 900px) {
  .pdp-thumb {
    width: 100%;
  }
}

.pdp-thumb:hover {
  opacity: 0.85;
}

.pdp-thumb.is-active {
  border-color: var(--foreground);
}

.pdp-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.pdp-hero {
  background: #e8e8e8;
  aspect-ratio: 3 / 4;
  max-height: min(85vh, 900px);
}

@media (min-width: 900px) {
  .pdp-hero {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

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

.pdp-sidebar {
  padding: 0 0.25rem;
}

.pdp-sidebar {
  text-align: center;
}

.pdp-kicker {
  margin: 0.25rem 0 0.5rem;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.pdp-colorline {
  margin: 0.15rem 0 0.25rem;
  font-family: "Tangier", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted-foreground);
}

.pdp-swatches {
  justify-content: center;
}

.pdp-swatches .swatch {
  width: 36px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: #f4f4f4;
}

.pdp-swatches .swatch.is-active {
  border-color: #3d2e24;
}

.pdp-swatches .swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-sizes {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 1.25rem;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0;
}

.pdp-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted-foreground);
}

.pdp-delivery__text {
  margin: 0;
}

.pdp-delivery__time {
  color: #2f7d32;
}

.pdp-delivery__icon {
  flex: 0 0 auto;
  color: var(--muted-foreground);
}

.pdp-size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: inherit;
  background: transparent;
  transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.pdp-size-pill.is-active {
  color: var(--foreground);
  border-color: var(--foreground);
  background: #fff;
}

.pdp-size-pill:hover,
.pdp-size-pill:focus-visible {
  border-color: var(--foreground);
  background: #fff;
  color: var(--foreground);
}

@media (min-width: 900px) {
  .pdp-field-label,
  .pdp-select {
    display: none;
  }
}

@media (min-width: 900px) {
  .pdp-sidebar {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: start;
    padding: 0;
  }
}

.pdp-title {
  margin: 0;
  font-family: "Tangier", serif;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--foreground);
}

.pdp-subtitle {
  margin: 0.35rem 0 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
  line-height: 1.4;
}

.pdp-price {
  margin: 1rem 0 0;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.pdp-swatches {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pdp-swatches .swatch {
  width: 36px;
  height: 50px;
  border-radius: 2px;
}

.pdp-field-label {
  display: block;
  margin-top: 1.25rem;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--foreground);
}

.pdp-select {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  cursor: pointer;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pdp-add-btn {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #faf8f5;
  background: #3d2e24;
  border: 1px solid #3d2e24;
  transition: opacity 0.2s, background 0.2s;
}

.pdp-add-btn:hover {
  opacity: 0.92;
}

.pdp-wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: opacity 0.2s;
}

.pdp-wishlist-btn:hover {
  opacity: 0.65;
}

.pdp-accordions {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.pdp-accordions .accordion-block {
  border-bottom: 1px solid var(--border);
}

.pdp-accordions .accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}

.pdp-accordions .accordion-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted-foreground);
  transition: max-height 0.22s ease, padding 0.22s ease;
}

.pdp-accordions .accordion-panel.is-open {
  max-height: 520px;
  padding: 0 0 1rem;
}

.pdp-accordions .accordion-panel p {
  margin: 0.75rem 0 0;
}

.pdp-accordions .accordion-panel ul {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  list-style: disc;
}

.pdp-accordions .accordion-panel li {
  margin: 0.35rem 0;
}

.pdp-find-size {
  margin-top: 0.85rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pdp-find-size:hover,
.pdp-find-size:focus-visible {
  opacity: 0.75;
}

/* Size guide modal (matches reference overlay) */
.pdp-modal[hidden] {
  display: none;
}

.pdp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
}

.pdp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.pdp-modal__panel {
  position: relative;
  width: min(980px, 100%);
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  overflow: hidden;
}

.pdp-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.pdp-modal__title {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.pdp-modal__close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: var(--muted-foreground);
}

.pdp-modal__close:hover,
.pdp-modal__close:focus-visible {
  color: var(--foreground);
}

.pdp-modal__body {
  padding: 0;
}

.pdp-modal__img {
  width: 100%;
  height: auto;
  display: block;
}

.pdp-accordions .accordion-trigger .chevron {
  transition: transform 0.2s;
}

.pdp-accordions .accordion-trigger.is-open .chevron {
  transform: rotate(180deg);
}

.pdp-accordions .accordion-trigger .plus {
  transition: transform 0.2s;
}

.pdp-accordions .accordion-trigger.is-open .plus {
  transform: rotate(45deg);
}

.pdp-related {
  padding: 0 0.75rem 3rem;
  max-width: 1600px;
  margin: 0 auto;
}

.pdp-related__title {
  margin: 0 0 1.25rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--foreground);
}

.product-grid--pdp-related {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .product-grid--pdp-related {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .product-grid--pdp-related {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-grid--pdp-related {
    grid-template-columns: repeat(6, 1fr);
  }
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #e8e8e8;
}

.product-image-wrap .product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease;
}

.product-image-wrap--dual .product-img--primary {
  z-index: 1;
}

.product-image-wrap--dual .product-img--secondary {
  z-index: 2;
  opacity: 0;
}

.product-image-wrap--dual:hover .product-img--primary {
  opacity: 0;
}

.product-image-wrap--dual:hover .product-img--secondary {
  opacity: 1;
}

.product-image-wrap:not(.product-image-wrap--dual):hover .product-img--primary {
  transform: scale(1.03);
  transition: transform 0.5s ease, opacity 0.45s ease;
}

.product-info {
  padding: 0.75rem;
}

.product-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.product-tags span {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--foreground);
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-title-row h3 {
  margin: 0;
  font-family: "Tangier", serif;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  color: var(--foreground);
}

.wishlist-btn {
  flex-shrink: 0;
  margin-top: 2px;
  transition: opacity 0.2s;
}

.wishlist-btn:hover {
  opacity: 0.6;
}

.color-swatches {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.color-swatches .swatch {
  display: inline-block;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  vertical-align: middle;
}

.color-swatches .swatch:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 2px;
}

.swatch--square {
  border-radius: 2px;
}

.product-desc {
  margin: 0.375rem 0 0;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  line-height: 1.35;
}

.product-price {
  margin: 0.25rem 0 0;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  color: var(--foreground);
}

.product-bullets {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1rem;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
  line-height: 1.45;
}

.product-bullets li {
  margin: 0.15rem 0;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 2.25rem 1rem 1.5rem;
  background: var(--footer-bg);
}

.load-more-btn {
  font-size: 11px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--footer-ink);
  border: 1px solid var(--footer-ink);
  padding: 0.7rem 1.75rem;
  min-width: 12.5rem;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.load-more-btn:hover {
  background: var(--footer-ink);
  color: var(--footer-bg);
}

.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;
}

/* Footer (pixel match to reference) */
.site-footer {
  margin-top: 0;
  padding-bottom: 5.5rem;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-line);
}

.footer-brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem 1.85rem;
  max-width: 100%;
  background: var(--footer-bg);
}

.footer-brand-line__text {
  font-family: "Tangier", Georgia, "Times New Roman", serif;
  font-size: clamp(0.72rem, 1.85vw, 0.88rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--footer-ink);
  white-space: nowrap;
  text-decoration: none;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--footer-line);
  border-bottom: 1px solid var(--footer-line);
  background: var(--footer-bg);
}

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

.delivery-cell {
  text-align: center;
  padding: 1.15rem 0.65rem;
  border: none;
}

@media (max-width: 767px) {
  .delivery-cell:nth-child(-n + 2) {
    border-bottom: 1px solid var(--footer-line);
  }
}

.delivery-line {
  margin: 0;
  font-size: 10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--footer-ink);
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  padding: 1.85rem 1rem 2.1rem;
  background: var(--footer-bg);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--footer-ink);
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}

.social-icon:hover {
  opacity: 0.88;
  transform: scale(1.03);
}

.social-icon__svg {
  display: block;
}

.footer-main {
  border-top: 1px solid var(--footer-line);
  background: var(--footer-bg);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: 1.05fr 0.95fr 1fr;
    column-gap: 0.5rem;
  }
}

.footer-col {
  padding: 2rem 1.5rem 2.35rem;
  border-bottom: 1px solid var(--footer-line);
}

@media (min-width: 768px) {
  .footer-col {
    border-bottom: none;
    border-right: none;
    padding: 2.15rem 1.85rem 2.65rem;
  }
}

.footer-title {
  margin: 0 0 1.1rem;
  font-family: "Tangier", Georgia, serif;
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.03em;
  color: var(--footer-ink);
  line-height: 1.28;
}

.footer-col--app .footer-title {
  text-align: center;
}

.newsletter-input-wrap {
  display: flex;
  border-bottom: 1px solid var(--footer-ink);
  margin-bottom: 1rem;
}

.newsletter-input-wrap input {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  color: var(--footer-ink);
  outline: none;
}

.newsletter-input-wrap input::placeholder {
  color: #6a6a6a;
}

.checkbox-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.checkbox-row--newsletter label {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--footer-ink);
}

.checkbox-row--newsletter input[type="checkbox"] {
  appearance: none;
  width: 14px;
  height: 14px;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid var(--footer-ink);
  border-radius: 1px;
  background: transparent;
  cursor: pointer;
}

.checkbox-row--newsletter input[type="checkbox"]:checked {
  background-color: var(--footer-ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.8' d='M1 5l3.5 3.5L11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: 10px auto;
  border-color: var(--footer-ink);
}

.subscribe-btn {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--footer-ink);
  border: 1px solid var(--footer-ink);
  padding: 0.62rem 1.55rem;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.subscribe-btn:hover {
  background: var(--footer-ink);
  color: var(--footer-bg);
}

.footer-about-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.35rem 0;
  margin-bottom: 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--footer-ink);
}

.footer-accordion-label {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--footer-ink);
}

.footer-accordion-trigger .chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--foreground);
}

.footer-accordion-trigger.is-open .chevron {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
  margin: 0.35rem 0 0.85rem;
  padding-left: 0.15rem;
}

.accordion-panel.is-open {
  display: block;
}

.accordion-panel ul li {
  margin-bottom: 0.45rem;
}

.accordion-panel a {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.accordion-panel a:hover {
  color: var(--foreground);
}

.footer-contact-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--footer-ink);
  text-decoration: none;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.accordion-block + .accordion-block {
  margin-top: 0.25rem;
}

.footer-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-qr {
  display: block;
  width: min(168px, 62vw);
  height: auto;
  border: none;
  background: #fff;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.5rem;
  max-width: 17rem;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: 0.78;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0.2rem 0.45rem;
  font-size: 7px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2a2a2a;
  border: 1px solid #a8a8a8;
  background: #fff;
  box-sizing: border-box;
}

.payment-badge--visa {
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.55rem;
}

.payment-badge--mc {
  gap: 0;
  padding: 0.2rem 0.5rem;
  min-width: 2.5rem;
}

.payment-badge__mc {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.payment-badge__mc--l {
  background: #1a1a1a;
  opacity: 0.55;
  margin-right: -5px;
}

.payment-badge__mc--r {
  background: #1a1a1a;
  opacity: 0.35;
}

.payment-badge--maestro {
  text-transform: lowercase;
  font-weight: 700;
  font-size: 6.5px;
}

.payment-badge--amex {
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.4rem;
}

.payment-badge--klarna {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.1rem 0.4rem;
  line-height: 1;
}

.payment-badge--bitcoin {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.05rem 0.35rem;
}

.payment-badge--clearpay {
  text-transform: lowercase;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Generic accordion trigger (if reused elsewhere) */
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.5rem;
  text-align: left;
}

.accordion-trigger h3 {
  margin: 0;
}

.accordion-trigger .chevron {
  transition: transform 0.2s;
}

.accordion-trigger.is-open .chevron {
  transform: rotate(180deg);
}

/* Cookie banner (reference: centered, underlined actions) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--footer-bg);
  color: var(--footer-ink);
  border-top: 1px solid var(--footer-line);
  padding: 0.55rem 1rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.55;
  color: var(--footer-ink);
}

.cookie-banner .cookie-actions {
  display: inline;
  white-space: normal;
}

.cookie-banner .cookie-or {
  text-decoration: none;
  font-weight: 400;
}

.cookie-banner .cookie-actions .btn-accept,
.cookie-banner .cookie-actions .btn-decline {
  display: inline;
  font-size: inherit;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  margin: 0;
  color: var(--footer-ink);
  background: none;
  border: none;
  vertical-align: baseline;
  cursor: pointer;
}

.cookie-banner .cookie-actions .btn-accept:hover,
.cookie-banner .cookie-actions .btn-decline:hover {
  opacity: 0.6;
}

/* 404 page */
.not-found-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
}

.not-found-inner {
  text-align: center;
  padding: 1rem;
}

.not-found-inner h1 {
  margin: 0 0 1rem;
  font-family: "Tangier", serif;
  font-size: 3rem;
  font-weight: 400;
}

.not-found-inner p {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.not-found-inner a {
  color: var(--primary);
  text-decoration: underline;
}

.not-found-inner a:hover {
  opacity: 0.9;
}
