:root {
  --ink: #171717;
  --muted: #6c6a66;
  --paper: #ffffff;
  --soft: #f5f5f2;
  --sage: #e5e9df;
  --sage-dark: #56614d;
  --wine: #7a2632;
  --line: #deddd9;
  --success: #1f6a46;
  --danger: #a52a2a;
  --shadow: 0 22px 60px rgba(18, 18, 18, 0.16);
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open,
body.dialog-open,
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
h1, h2, h3 { letter-spacing: 0; }

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 7px 18px;
  color: #fff;
  background: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.announcement-detail { color: #bfc6b9; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 24px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
}
.brand {
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
}
.brand span {
  margin-top: 5px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.54em;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 0.82rem;
  font-weight: 600;
}
.main-nav a,
.main-nav button {
  position: relative;
  padding: 10px 0;
  border: 0;
  background: transparent;
}
.main-nav a::after,
.main-nav button::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav a:hover::after,
.main-nav button:hover::after { transform: scaleX(1); transform-origin: left; }
.header-tools { display: flex; justify-content: flex-end; gap: 4px; }
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}
.icon-button:hover { background: var(--soft); }
.icon-button svg { width: 20px; height: 20px; stroke-width: 1.7; }
.mobile-menu-button { display: none; }
.cart-button { position: relative; }
.cart-count {
  position: absolute;
  top: 3px;
  right: 0;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-size: 0.65rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  max-height: 850px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #d9ddd5;
}
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 22%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,9,0.72) 0%, rgba(10,12,9,0.28) 48%, rgba(10,12,9,0.02) 74%); }
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 88vw);
  padding: 0 0 10vh 7vw;
  color: #fff;
}
.hero-copy > p {
  margin-bottom: 15px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 6.3rem;
  font-weight: 400;
  line-height: 0.92;
}
.hero-copy > span {
  max-width: 490px;
  display: block;
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-light { margin-top: 32px; color: var(--ink); border-color: #fff; background: #fff; }
.button-light:hover { color: #fff; background: transparent; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--wine); border-color: var(--wine); }
.button-outline { background: #fff; }

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.service-strip > div {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.service-strip > div:last-child { border-right: 0; }
.service-strip svg { width: 25px; height: 25px; stroke-width: 1.5; color: var(--sage-dark); }
.service-strip span { display: flex; flex-direction: column; gap: 3px; color: var(--muted); font-size: 0.78rem; }
.service-strip strong { color: var(--ink); font-size: 0.88rem; }

.products-section { padding: 92px 4vw 110px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.eyebrow { color: var(--wine); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.section-heading h2,
.feature-copy h2,
.story h2 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.45rem;
  font-weight: 400;
  line-height: 1.05;
}
.section-heading > p { max-width: 470px; color: var(--muted); line-height: 1.7; }
.shop-toolbar {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.filter-tabs { display: flex; align-items: center; gap: 26px; overflow-x: auto; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  min-height: 59px;
  flex: none;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 600;
}
.filter-tab.is-active { color: var(--ink); border-bottom-color: var(--ink); }
.sort-control { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.76rem; }
.sort-control select { height: 38px; padding: 0 28px 0 10px; border: 0; background: #fff; font-size: 0.8rem; font-weight: 600; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 18px; }
.product-card { min-width: 0; }
.product-media {
  position: relative;
  aspect-ratio: 3 / 4.25;
  overflow: hidden;
  background: var(--soft);
}
.product-media img { height: 100%; object-fit: cover; transition: transform 500ms ease, opacity 240ms ease; }
.product-card:hover .product-media img { transform: scale(1.025); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 9px;
  color: #fff;
  background: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 44px;
  border: 0;
  color: var(--ink);
  background: rgba(255,255,255,0.94);
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.product-card:hover .quick-add,
.quick-add:focus-visible { opacity: 1; transform: translateY(0); }
.quick-add:hover { color: #fff; background: var(--ink); }
.product-info { padding: 16px 2px 0; }
.product-title-row { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
.product-title-row h3 { font-family: "Manrope", sans-serif; font-size: 0.93rem; font-weight: 600; }
.product-title-row strong { flex: none; font-size: 0.9rem; }
.product-info > p { margin-top: 5px; color: var(--muted); font-size: 0.76rem; }
.swatch-list { display: flex; gap: 6px; margin-top: 12px; }
.swatch { width: 13px; height: 13px; border: 1px solid rgba(0,0,0,0.22); border-radius: 50%; }
.swatch.is-sold-out { position: relative; opacity: 0.42; }
.swatch.is-sold-out::after { position: absolute; top: 50%; left: -2px; width: calc(100% + 4px); height: 1px; background: #6d2626; content: ""; transform: rotate(-45deg); }
.swatch.haki { background: #66704b; }
.swatch.ekru { background: #eee9dc; }
.swatch.bordo { background: #6b1f2c; }
.swatch.komur { background: #171819; }
.swatch.lacivert { background: #1f2b44; }
.swatch.aci-kahve { background: #5b362f; }

.collection-feature { display: grid; grid-template-columns: 1.08fr 0.92fr; min-height: 670px; background: var(--sage); }
.feature-media { min-height: 670px; overflow: hidden; }
.feature-media img { height: 100%; object-fit: cover; object-position: center 20%; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 8vw; }
.feature-copy h2 { max-width: 560px; }
.feature-copy > p:not(.eyebrow) { max-width: 540px; margin-top: 28px; color: #4e554a; line-height: 1.75; }
.feature-copy dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(23,23,23,0.2); }
.feature-copy dl div { display: flex; flex-direction: column; gap: 7px; }
.feature-copy dt { font-family: "Cormorant Garamond", serif; font-size: 1.7rem; }
.feature-copy dd { color: #596053; font-size: 0.76rem; }

.story {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 7vw;
  padding: 100px 7vw;
  color: #fff;
  background: #20201f;
}
.story h2 { max-width: 540px; }
.story > p { max-width: 560px; color: #c8c7c3; line-height: 1.8; }
.story > a { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 5px; border-bottom: 1px solid #fff; font-size: 0.8rem; font-weight: 700; }
.story > a svg { width: 16px; }

.site-footer {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding: 74px 5vw 26px;
  background: #fff;
}
.footer-brand p { max-width: 250px; margin-top: 20px; color: var(--muted); font-size: 0.82rem; line-height: 1.65; }
.brand-footer strong { font-size: 2rem; }
.site-footer > div:not(.footer-brand):not(.footer-bottom) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.site-footer h3 { margin-bottom: 8px; font-family: "Manrope", sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.site-footer a,
.site-footer button,
.site-footer p { border: 0; color: var(--muted); background: transparent; font-size: 0.8rem; }
.site-footer a:hover,
.site-footer button:hover { color: var(--wine); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}
.footer-bottom > div { display: flex; gap: 20px; }
.payment-badge { display: flex; align-items: center; gap: 7px; color: var(--ink); }
.payment-badge svg { width: 15px; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(10,10,10,0.44); opacity: 0; pointer-events: none; transition: opacity 220ms ease; }
.drawer-backdrop.is-visible { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(460px, 100vw);
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 260ms ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer-header p { font-family: "Cormorant Garamond", serif; font-size: 1.55rem; }
.drawer-header span { color: var(--muted); font-size: 0.72rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 4px 22px; }
.cart-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 92px; height: 122px; object-fit: cover; background: var(--soft); }
.cart-item h3 { font-family: "Manrope", sans-serif; font-size: 0.86rem; }
.cart-item p { margin-top: 5px; color: var(--muted); font-size: 0.7rem; line-height: 1.5; }
.cart-item strong { font-size: 0.82rem; }
.cart-item-actions { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.cart-item-actions button { width: 28px; height: 28px; border: 1px solid var(--line); background: #fff; }
.cart-item-actions span { min-width: 18px; text-align: center; font-size: 0.76rem; }
.remove-item { align-self: start; padding: 2px; border: 0; color: var(--muted); background: transparent; }
.remove-item svg { width: 16px; }
.cart-empty { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; }
.cart-empty.is-visible { display: flex; }
.cart-empty > svg { width: 35px; height: 35px; margin-bottom: 20px; stroke-width: 1.3; }
.cart-empty h2 { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; font-weight: 400; }
.cart-empty p { max-width: 290px; margin: 12px 0 24px; color: var(--muted); line-height: 1.6; }
.cart-summary { padding: 22px; border-top: 1px solid var(--line); background: #fff; }
.cart-summary[hidden] { display: none; }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 0.9rem; }
.free { color: var(--success); }
.cart-summary > p { margin: 12px 0 18px; color: var(--muted); font-size: 0.68rem; line-height: 1.5; }
.checkout-button { width: 100%; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 13px; color: var(--muted); font-size: 0.68rem; }
.secure-note svg { width: 14px; }

dialog { padding: 0; border: 0; color: var(--ink); background: #fff; box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(10,10,10,0.58); }
.dialog-close { position: absolute; top: 14px; right: 14px; z-index: 5; background: rgba(255,255,255,0.94); }
.product-dialog { width: min(1120px, calc(100vw - 36px)); max-height: calc(100svh - 36px); }
.product-dialog-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr); min-height: 720px; }
.product-gallery { display: grid; grid-template-columns: 82px 1fr; gap: 12px; padding: 18px; background: var(--soft); }
.product-main-media { position: relative; min-height: 660px; overflow: hidden; touch-action: pan-y; }
.product-main-media img { height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
.gallery-hit { position: absolute; top: 0; bottom: 0; z-index: 2; width: 50%; height: 100%; padding: 0; border: 0; color: #111; background: transparent; cursor: pointer; touch-action: pan-y; }
.gallery-hit-prev { left: 0; }
.gallery-hit-next { right: 0; }
.gallery-hit svg { position: absolute; top: 50%; width: 34px; height: 34px; padding: 9px; border-radius: 50%; background: rgba(255,255,255,.76); box-shadow: 0 3px 14px rgba(0,0,0,.12); opacity: .72; transform: translateY(-50%); transition: opacity 180ms ease, background 180ms ease; }
.gallery-hit-prev svg { left: 12px; }
.gallery-hit-next svg { right: 12px; }
.gallery-hit:hover svg, .gallery-hit:focus-visible svg { background: rgba(255,255,255,.94); opacity: 1; }
.gallery-hit[hidden] { display: none; }
.product-thumbs { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }
.product-thumbs button { width: 100%; aspect-ratio: 3/4; padding: 0; border: 1px solid transparent; background: #fff; opacity: 0.62; }
.product-thumbs button.is-active { border-color: var(--ink); opacity: 1; }
.product-thumbs img { height: 100%; object-fit: cover; }
.product-purchase { padding: 58px 50px 34px; overflow-y: auto; }
.product-purchase h2 { margin-top: 8px; font-family: "Cormorant Garamond", serif; font-size: 2.8rem; font-weight: 400; }
.detail-price { display: block; margin-top: 16px; font-size: 1.05rem; }
.detail-description { margin: 20px 0 30px; color: var(--muted); line-height: 1.7; }
.option-group { margin: 0 0 26px; padding: 0; border: 0; }
.option-group[hidden] { display: none; }
.detail-price-stack [hidden] { display: none; }
.option-group legend { width: 100%; margin-bottom: 12px; font-size: 0.78rem; font-weight: 700; }
.option-group legend span { float: right; color: var(--muted); font-weight: 500; }
.color-picker { display: flex; flex-wrap: wrap; gap: 9px; }
.color-option input { position: absolute; opacity: 0; pointer-events: none; }
.color-option span { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid var(--line); font-size: 0.74rem; }
.color-option small { margin-left: 2px; color: #8e3f3f; font-size: 0.62rem; }
.color-option.is-sold-out span { color: var(--muted); background: #f6f5f2; cursor: not-allowed; opacity: 0.72; }
.color-option.is-sold-out i { position: relative; overflow: hidden; filter: grayscale(0.35); }
.color-option.is-sold-out i::after { position: absolute; top: 50%; left: -3px; width: calc(100% + 6px); height: 1px; background: #7d2d2d; content: ""; transform: rotate(-45deg); }
.color-option i { width: 14px; height: 14px; border: 1px solid rgba(0,0,0,0.2); border-radius: 50%; }
.color-option input:checked + span { border-color: var(--ink); background: var(--soft); }
.segment-control { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.segment-control input { position: absolute; opacity: 0; }
.segment-control span { min-height: 58px; display: flex; flex-direction: column; justify-content: center; padding: 0 14px; border: 1px solid var(--line); font-size: 0.78rem; font-weight: 600; }
.segment-control small { margin-top: 2px; color: var(--muted); font-size: 0.66rem; font-weight: 400; }
.segment-control input:checked + span { border-color: var(--ink); background: var(--soft); }
.custom-length { display: none; margin-top: 10px; }
.custom-length.is-visible { display: block; }
.custom-length span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 0.7rem; }
.custom-length input { width: 100%; height: 44px; padding: 0 12px; border: 1px solid var(--line); }
.toggle-option { position: relative; display: grid; grid-template-columns: 1fr 42px auto; align-items: center; gap: 12px; margin-bottom: 24px; padding: 16px; border: 1px solid var(--line); }
.toggle-option[hidden] { display: none; }
.toggle-option > span { display: flex; flex-direction: column; gap: 3px; }
.toggle-option strong { font-size: 0.78rem; }
.toggle-option small { color: var(--muted); font-size: 0.68rem; }
.toggle-option input { position: absolute; opacity: 0; }
.toggle-option i { position: relative; width: 38px; height: 22px; border-radius: 22px; background: #c7c7c4; transition: background 160ms ease; }
.toggle-option i::after { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; content: ""; transition: transform 160ms ease; }
.toggle-option input:checked + i { background: var(--sage-dark); }
.toggle-option input:checked + i::after { transform: translateX(16px); }
.toggle-option em { font-size: 0.72rem; font-style: normal; font-weight: 600; }
.size-note { display: flex; align-items: center; gap: 12px; padding: 15px; background: var(--sage); }
.size-note svg { width: 21px; flex: none; }
.size-note span { display: flex; flex-direction: column; gap: 3px; color: #4f5749; font-size: 0.68rem; }
.size-note strong { color: var(--ink); font-size: 0.75rem; }
.purchase-row { display: grid; grid-template-columns: 108px 1fr; gap: 10px; margin-top: 26px; }
.quantity-control { height: 50px; display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; border: 1px solid var(--line); }
.quantity-control button { height: 100%; display: flex; align-items: center; justify-content: center; padding: 0; border: 0; background: #fff; }
.quantity-control svg { width: 14px; }
.quantity-control output { text-align: center; font-size: 0.82rem; }
.made-to-order { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; color: var(--muted); font-size: 0.68rem; }
.made-to-order svg { width: 14px; }

.search-dialog { top: 0; width: 100vw; max-width: none; min-height: 290px; margin: 0; }
.search-dialog::backdrop { background: rgba(10,10,10,0.38); }
.search-header { max-width: 900px; display: grid; grid-template-columns: 1fr 44px; gap: 16px; margin: 42px auto 18px; padding: 0 24px; }
.search-header label { height: 58px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--ink); }
.search-header label svg { width: 20px; }
.search-header input { width: 100%; border: 0; outline: 0; font-family: "Cormorant Garamond", serif; font-size: 1.8rem; }
.search-results { max-width: 900px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 auto 32px; padding: 0 24px; }
.search-result { display: grid; grid-template-columns: 55px 1fr; align-items: center; gap: 10px; padding: 7px; border: 1px solid var(--line); background: #fff; text-align: left; }
.search-result img { width: 55px; height: 68px; object-fit: cover; }
.search-result strong { display: block; font-size: 0.74rem; }
.search-result span { color: var(--muted); font-size: 0.68rem; }

.account-dialog { width: min(500px, calc(100vw - 32px)); }
.account-dialog.is-dashboard { width: min(820px, calc(100vw - 32px)); }
.account-shell { padding: 58px 50px 44px; }
.account-shell h2 { margin-top: 8px; font-family: "Cormorant Garamond", serif; font-size: 2.4rem; font-weight: 400; line-height: 1.08; }
.account-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-top: 32px; border-bottom: 1px solid var(--line); }
.account-tabs button { min-height: 44px; border: 0; border-bottom: 2px solid transparent; background: #fff; font-size: 0.78rem; font-weight: 600; }
.account-tabs button.is-active { border-bottom-color: var(--ink); }
.account-form { display: grid; gap: 15px; margin-top: 24px; }
.account-form label,
.form-grid label { display: flex; flex-direction: column; gap: 6px; }
.account-form label > span,
.form-grid label > span { font-size: 0.7rem; font-weight: 600; }
.account-form input,
.form-grid input,
.form-grid textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 0; background: #fff; outline: 0; }
.account-form input:focus,
.form-grid input:focus,
.form-grid textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.account-form [data-register-name] { display: none; }
.account-form.is-register [data-register-name] { display: flex; }
.account-form [data-register-consent] { display: none; }
.account-form.is-register [data-register-consent] { display: flex; }
.account-consent {
  align-items: flex-start !important;
  flex-direction: row !important;
  gap: 9px !important;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}
.account-consent input { width: 17px !important; min-height: 17px !important; height: 17px; flex: none; margin: 1px 0 0; padding: 0; accent-color: var(--ink); }
.account-consent span { font-weight: 400 !important; }
.account-consent-note { margin: 0; color: var(--muted); font-size: 0.63rem; line-height: 1.55; }
.form-message { min-height: 18px; color: var(--danger); font-size: 0.72rem; }
.account-assurance { display: flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--muted); font-size: 0.68rem; line-height: 1.5; }
.account-assurance svg { width: 15px; flex: none; }
.account-dashboard[hidden] { display: none; }
.account-dashboard-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.account-dashboard-head h2 { margin-top: 8px; }
.account-dashboard-actions { display: flex; align-items: center; gap: 8px; }
.account-admin-link,
.account-logout { flex: none; gap: 7px; padding: 0 14px; }
.account-admin-link svg,
.account-logout svg { width: 15px; }
.account-dashboard-tabs { display: flex; gap: 28px; margin-top: 32px; border-bottom: 1px solid var(--line); }
.account-dashboard-tabs button { min-height: 44px; padding: 0; border: 0; border-bottom: 2px solid transparent; background: #fff; font-size: 0.78rem; font-weight: 600; }
.account-dashboard-tabs button.is-active { border-bottom-color: var(--ink); }
.account-dashboard-panel { display: none; padding-top: 24px; }
.account-dashboard-panel.is-active { display: block; }
.account-orders { display: grid; gap: 12px; }
.account-coupons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.account-coupon { min-width: 0; padding: 20px; border: 1px solid var(--line); background: #fff; }
.account-coupon-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.account-coupon-head h3 { font-size: 0.86rem; font-weight: 600; }
.account-coupon-head span { flex: none; padding: 5px 7px; color: #215b3f; background: #e8f2ec; font-size: 0.58rem; font-weight: 700; }
.account-coupon.is-used .account-coupon-head span,
.account-coupon.is-expired .account-coupon-head span { color: var(--muted); background: var(--soft); }
.account-coupon.is-planned .account-coupon-head span,
.account-coupon.is-reserved .account-coupon-head span { color: #6c5000; background: #f5edcf; }
.account-coupon-code { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding: 12px; border: 1px dashed #a9a9a4; }
.account-coupon-code strong { overflow-wrap: anywhere; font-size: 0.84rem; letter-spacing: 0.04em; }
.account-coupon > p { margin-top: 14px; color: var(--muted); font-size: 0.68rem; line-height: 1.55; }
.account-coupon > small { display: block; margin-top: 9px; color: var(--muted); font-size: 0.61rem; }
.account-coupon .button { width: 100%; min-height: 42px; margin-top: 16px; }
.account-order { padding: 18px; border: 1px solid var(--line); }
.account-order-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.account-order-head strong { display: block; font-size: 0.78rem; }
.account-order-head time { color: var(--muted); font-size: 0.66rem; }
.order-status { flex: none; padding: 5px 8px; color: #215b3f; background: #e8f2ec; font-size: 0.62rem; font-weight: 700; }
.order-status.is-pending { color: #7b5819; background: #f8f0db; }
.order-status.is-failed { color: var(--danger); background: #f8e7e7; }
.account-order-items { display: grid; gap: 7px; margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line); }
.account-order-item { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 0.7rem; line-height: 1.45; }
.account-order-total { display: flex; justify-content: space-between; margin-top: 14px; font-size: 0.76rem; }
.account-empty { padding: 32px 20px; background: var(--soft); text-align: center; }
.account-coupons > .account-empty { grid-column: 1 / -1; }
.account-empty svg { width: 24px; margin-bottom: 8px; color: var(--muted); }
.account-empty h3 { font-family: "Cormorant Garamond", serif; font-size: 1.45rem; font-weight: 400; }
.account-empty p { margin-top: 6px; color: var(--muted); font-size: 0.7rem; }
.account-profile-form { margin-top: 0; }
.checkout-account-password { display: none; flex-direction: column; gap: 6px; margin-top: 12px; }
.checkout-account-password.is-visible { display: flex; }
.checkout-account-password > span { font-size: 0.7rem; font-weight: 600; }
.checkout-account-password input { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 0; background: #fff; outline: 0; }
.checkout-member-note { display: flex; align-items: center; gap: 8px; margin: 14px 0; padding: 12px; color: #215b3f; background: #e8f2ec; font-size: 0.7rem; }
.checkout-member-note[hidden] { display: none; }
.checkout-member-note svg { width: 16px; flex: none; }

.checkout-dialog { width: min(1180px, calc(100vw - 24px)); max-height: calc(100svh - 24px); }
.checkout-shell { min-height: 760px; }
.checkout-header { min-height: 90px; display: grid; grid-template-columns: 180px 1fr 180px; align-items: center; padding: 0 34px; border-bottom: 1px solid var(--line); }
.checkout-brand { transform: scale(0.84); transform-origin: left center; }
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 10px; }
.checkout-steps span { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 0.7rem; font-weight: 600; }
.checkout-steps b { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; font-size: 0.65rem; }
.checkout-steps span.is-active { color: var(--ink); }
.checkout-steps span.is-active b { color: #fff; border-color: var(--ink); background: var(--ink); }
.checkout-steps i { width: 42px; height: 1px; background: var(--line); }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr); min-height: 670px; }
.checkout-form { padding: 42px 50px 60px; }
.checkout-step { display: none; }
.checkout-step.is-active { display: block; }
.step-heading { display: flex; gap: 14px; margin-bottom: 28px; }
.step-heading > span { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex: none; border-radius: 50%; color: #fff; background: var(--ink); font-size: 0.72rem; }
.step-heading h2 { font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 400; }
.step-heading p { margin-top: 4px; color: var(--muted); font-size: 0.74rem; }
.checkout-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.checkout-mode button { min-height: 44px; border: 1px solid var(--line); background: #fff; font-size: 0.76rem; font-weight: 600; }
.checkout-mode button.is-active { border-color: var(--ink); background: var(--soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid textarea { resize: vertical; }
.form-grid small { color: var(--muted); font-size: 0.64rem; }
.create-account,
.agreement-check { display: flex; align-items: flex-start; gap: 9px; margin-top: 18px; color: var(--muted); font-size: 0.72rem; line-height: 1.5; }
.create-account input,
.agreement-check input { width: 17px; height: 17px; flex: none; margin: 1px 0 0; accent-color: var(--ink); }
.agreement-check a { color: var(--ink); text-decoration: underline; }
.next-step { float: right; margin-top: 24px; }
.review-address { margin-bottom: 22px; padding: 20px; border: 1px solid var(--line); background: var(--soft); }
.review-address h3 { font-family: "Manrope", sans-serif; font-size: 0.78rem; }
.review-address p { margin-top: 7px; color: var(--muted); font-size: 0.72rem; line-height: 1.55; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.paytr-panel { display: grid; grid-template-columns: 120px 1fr 30px; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); background: var(--soft); }
.paytr-panel strong { font-size: 0.82rem; }
.paytr-panel p { margin-top: 5px; color: var(--muted); font-size: 0.7rem; line-height: 1.5; }
.paytr-panel > svg { color: var(--success); }
.payment-cards { display: flex; gap: 8px; margin-top: 14px; }
.payment-cards span { min-width: 70px; padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font-size: 0.64rem; font-weight: 700; text-align: center; }
.payment-message { min-height: 18px; margin-top: 15px; color: var(--danger); font-size: 0.72rem; text-align: right; }
.pay-button span { margin-left: 5px; }
.checkout-summary { padding: 42px 32px; border-left: 1px solid var(--line); background: var(--soft); }
.checkout-summary h2 { margin-bottom: 20px; font-family: "Cormorant Garamond", serif; font-size: 1.7rem; font-weight: 400; }
.checkout-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 10px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.checkout-item img { width: 64px; height: 82px; object-fit: cover; }
.checkout-item strong { display: block; font-size: 0.74rem; }
.checkout-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.64rem; line-height: 1.4; }
.checkout-item > em { font-size: 0.72rem; font-style: normal; font-weight: 600; }
.summary-totals { display: grid; gap: 11px; margin-top: 20px; }
.summary-totals > div { display: flex; justify-content: space-between; font-size: 0.76rem; }
.summary-grand { margin-top: 7px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 0.95rem !important; }
.coupon-entry { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.coupon-entry > label { display: block; margin-bottom: 8px; font-size: 0.68rem; font-weight: 600; }
.coupon-entry > div { display: grid; grid-template-columns: 1fr auto; }
.coupon-entry input { min-width: 0; height: 44px; padding: 0 11px; border: 1px solid var(--line); border-right: 0; border-radius: 0; outline: 0; text-transform: uppercase; }
.coupon-entry input:focus { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.coupon-entry button { min-width: 76px; height: 44px; padding: 0 12px; color: #fff; border: 1px solid var(--ink); background: var(--ink); font-size: 0.67rem; font-weight: 600; }
.coupon-entry button:disabled { opacity: 0.55; }
.coupon-entry p { min-height: 16px; margin: 7px 0 0; color: var(--muted); font-size: 0.62rem; line-height: 1.45; }
.coupon-entry p.is-error { color: var(--danger); }
.coupon-entry p.is-success { color: var(--success); }
.create-account-benefit { margin: 7px 0 0 26px; color: var(--muted); font-size: 0.62rem; line-height: 1.5; }
.coupon-discount-row { color: var(--success); }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 140; max-width: min(380px, calc(100vw - 48px)); padding: 14px 18px; color: #fff; background: var(--ink); box-shadow: var(--shadow); font-size: 0.78rem; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 150px 1fr 150px; padding: 0 24px; }
  .main-nav { gap: 20px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story { grid-template-columns: 1fr 1fr; }
  .story > a { grid-column: 2; justify-self: start; }
  .product-dialog-layout { grid-template-columns: 1fr 430px; }
  .product-purchase { padding-right: 34px; padding-left: 34px; }
}

@media (max-width: 840px) {
  :root { --header-height: 66px; }
  .announcement { min-height: 30px; font-size: 0.64rem; }
  .announcement-detail { display: none; }
  .site-header { grid-template-columns: 44px 1fr 128px; padding: 0 10px; }
  .mobile-menu-button { display: inline-flex; }
  .brand { justify-self: center; }
  .brand strong { font-size: 1.45rem; }
  .main-nav { position: fixed; top: 96px; right: 0; left: 0; z-index: 35; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 20px; border-bottom: 1px solid var(--line); background: #fff; }
  body.menu-open .main-nav { display: flex; }
  .main-nav a,
  .main-nav button { width: 100%; padding: 16px 4px; border-bottom: 1px solid var(--line); text-align: left; }
  .header-tools { gap: 0; }
  .header-tools .icon-button { width: 40px; }
  .account-button { display: inline-flex; }
  .hero { min-height: 75svh; }
  .hero-overlay { background: linear-gradient(0deg, rgba(10,12,9,0.76) 0%, rgba(10,12,9,0.18) 72%); }
  .hero-copy { padding: 0 22px 48px; }
  .hero h1 { font-size: 3.5rem; }
  .hero-copy > span { font-size: 0.9rem; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip > div { min-height: 84px; justify-content: flex-start; padding: 17px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .products-section { padding: 64px 16px 72px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading h2,
  .feature-copy h2,
  .story h2 { font-size: 2.4rem; }
  .section-heading > p { margin-top: 16px; font-size: 0.86rem; }
  .shop-toolbar { align-items: stretch; flex-direction: column; padding: 0 0 12px; border-bottom: 0; }
  .filter-tabs { border-bottom: 1px solid var(--line); }
  .sort-control { justify-content: flex-end; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 10px; }
  .quick-add { position: static; width: 100%; margin-top: 10px; border: 1px solid var(--line); opacity: 1; transform: none; }
  .product-title-row { display: block; }
  .product-title-row strong { display: block; margin-top: 6px; }
  .collection-feature { grid-template-columns: 1fr; min-height: 0; }
  .feature-media { min-height: 68svh; }
  .feature-copy { padding: 56px 22px; }
  .feature-copy dl { gap: 10px; }
  .feature-copy dt { font-size: 1.3rem; }
  .story { grid-template-columns: 1fr; gap: 28px; padding: 66px 22px; }
  .story > a { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding: 56px 22px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer > div:nth-child(4) { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .product-dialog { width: 100vw; max-height: 100svh; height: 100svh; }
  .product-dialog-layout { display: block; min-height: 0; }
  .product-gallery { grid-template-columns: 1fr; padding: 0; }
  .product-main-media { min-height: 58svh; }
  .product-thumbs { flex-direction: row; padding: 8px 12px; }
  .product-thumbs button { width: 58px; flex: none; }
  .product-purchase { padding: 38px 20px 32px; overflow: visible; }
  .product-purchase h2 { font-size: 2.25rem; }
  .search-results { grid-template-columns: 1fr 1fr; }
  .checkout-dialog { width: 100vw; height: 100svh; max-height: 100svh; }
  .checkout-shell { min-height: 100svh; }
  .checkout-header { min-height: 76px; grid-template-columns: 100px 1fr 44px; padding: 0 12px; }
  .checkout-steps span { font-size: 0; }
  .checkout-steps i { width: 18px; }
  .checkout-layout { display: flex; flex-direction: column-reverse; }
  .checkout-form { padding: 30px 18px 50px; }
  .checkout-summary { padding: 24px 18px; border-left: 0; border-bottom: 1px solid var(--line); }
  .checkout-summary h2 { font-size: 1.4rem; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 3rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-info { padding-top: 11px; }
  .product-title-row h3,
  .product-title-row strong { font-size: 0.78rem; }
  .product-info > p { font-size: 0.66rem; }
  .swatch-list { margin-top: 9px; }
  .section-heading h2,
  .feature-copy h2,
  .story h2 { font-size: 2.05rem; }
  .feature-media { min-height: 56svh; }
  .feature-copy dl { grid-template-columns: 1fr; }
  .feature-copy dl div { display: grid; grid-template-columns: 90px 1fr; align-items: center; }
  .account-shell { padding: 52px 22px 34px; }
  .account-dialog.is-dashboard { width: 100vw; height: 100svh; max-height: 100svh; }
  .account-dashboard-head { flex-direction: column; }
  .account-dashboard-actions { width: 100%; }
  .account-dashboard-actions .button { flex: 1; padding: 0 10px; }
  .account-dashboard-tabs { gap: 20px; overflow-x: auto; }
  .account-order-head { gap: 10px; }
  .account-order-item { flex-direction: column; gap: 3px; }
  .account-coupons { grid-template-columns: 1fr; }
  .search-results { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .checkout-mode { grid-template-columns: 1fr; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .button { width: 100%; }
  .paytr-panel { grid-template-columns: 110px 1fr; }
  .paytr-panel > svg { display: none; }
  .payment-cards span { min-width: 0; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Refined storefront */
:root {
  --ink: #151515;
  --muted: #706f6b;
  --paper: #fff;
  --soft: #f4f4f1;
  --sage: #e9ebe6;
  --sage-dark: #4d5848;
  --wine: #8b1e2d;
  --line: #d7d6d1;
  --shadow: 0 28px 80px rgba(15, 15, 15, 0.14);
  --header-height: 82px;
}

body { font-family: "Manrope", Arial, sans-serif; }
.brand strong,
.hero h1,
.section-heading h2,
.feature-copy h2,
.story h2,
.product-purchase h2,
.checkout-summary h2,
.feature-copy dt,
.about-hero h1,
.about-contact h2,
.legal-content h1 { font-family: "Cormorant Garamond", Georgia, serif; }

.announcement {
  min-height: 30px;
  padding: 6px 20px;
  background: #151515;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.announcement-detail { color: #aaa9a4; }

.site-header {
  grid-template-columns: 220px 1fr 220px;
  gap: 28px;
  padding: 0 clamp(24px, 4.5vw, 76px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
}
.brand strong { font-size: 2rem; font-weight: 500; letter-spacing: 0.11em; }
.brand span { margin-top: 4px; font-size: 0.5rem; letter-spacing: 0.48em; }
.main-nav { gap: clamp(20px, 2.5vw, 42px); font-size: 0.73rem; font-weight: 600; }
.main-nav a,
.main-nav button { padding: 12px 0; }
.icon-button { border-radius: 0; }
.icon-button:hover { background: #f2f2ef; }
.cart-count { top: 2px; right: -1px; background: var(--wine); }

.hero {
  min-height: min(78svh, 790px);
  max-height: 790px;
  background: #d4d2cf;
}
.hero-image { object-position: center 34%; filter: saturate(0.82) contrast(1.02); }
.hero-overlay {
  background: linear-gradient(90deg, rgba(12,12,12,0.64) 0%, rgba(12,12,12,0.26) 46%, rgba(12,12,12,0.04) 74%);
}
.hero-copy {
  width: min(600px, 86vw);
  padding: 0 0 clamp(54px, 8vh, 90px) clamp(28px, 7vw, 110px);
}
.hero-copy > p { margin-bottom: 12px; font-size: 0.67rem; letter-spacing: 0.16em; }
.hero h1 { font-size: 6.6rem; font-weight: 500; line-height: 0.88; }
.hero-copy > span { max-width: 440px; margin-top: 20px; font-size: 0.92rem; line-height: 1.7; }
.button { min-height: 48px; padding: 0 24px; border-radius: 0; font-size: 0.73rem; letter-spacing: 0.04em; }
.button-light { margin-top: 28px; }

.service-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1440px;
  margin: 0 auto;
  border-inline: 1px solid var(--line);
}
.service-strip > div { min-height: 82px; gap: 13px; }
.service-strip svg { width: 20px; height: 20px; color: var(--ink); }
.service-strip span { font-size: 0.68rem; }
.service-strip strong { font-size: 0.76rem; }

.products-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(76px, 8vw, 118px) clamp(18px, 4vw, 64px) 128px;
}
.section-heading { align-items: end; margin-bottom: 42px; }
.section-heading h2,
.feature-copy h2,
.story h2 { margin-top: 8px; font-size: 4.2rem; font-weight: 500; line-height: 0.96; }
.section-heading > p { max-width: 430px; font-size: 0.82rem; line-height: 1.75; }
.eyebrow { font-size: 0.65rem; letter-spacing: 0.18em; }
.shop-toolbar { min-height: 54px; margin-bottom: 30px; }
.filter-tabs { gap: 30px; }
.filter-tab { min-height: 53px; font-size: 0.72rem; }
.sort-control { font-size: 0.68rem; }
.sort-control select { font-size: 0.72rem; }

.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 58px 22px; }
.product-media { aspect-ratio: 3 / 4; background: #ececea; }
.product-media img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.product-image-primary { opacity: 1; }
.product-image-secondary { opacity: 0; }
.product-card:hover .product-image-primary { opacity: 0; transform: none; }
.product-card:hover .product-image-secondary { opacity: 1; transform: scale(1.015); }
.product-badge {
  top: 0;
  left: 0;
  padding: 8px 10px;
  background: rgba(21,21,21,0.92);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
}
.quick-add {
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 48px;
  background: rgba(255,255,255,0.96);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.product-info { padding: 15px 0 0; }
.product-title-row h3 { font-size: 0.82rem; font-weight: 600; }
.product-title-row strong { font-size: 0.8rem; }
.product-info > p { margin-top: 6px; font-size: 0.67rem; }
.swatch-list { gap: 7px; margin-top: 11px; }
.swatch { width: 11px; height: 11px; }

.collection-feature {
  grid-template-columns: 0.94fr 1.06fr;
  min-height: 720px;
  color: #f6f6f2;
  background: #1c1c1b;
}
.feature-media { min-height: 720px; order: 2; }
.feature-media img { object-position: center 26%; filter: saturate(0.8); }
.feature-copy { order: 1; padding: 84px clamp(34px, 8vw, 130px); }
.feature-copy > p:not(.eyebrow) { max-width: 500px; color: #b9b9b4; font-size: 0.83rem; }
.feature-copy dl { border-top-color: rgba(255,255,255,0.2); }
.feature-copy dd { color: #aaa9a4; }
.feature-copy .eyebrow { color: #d88a95; }

.story {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr) auto;
  gap: clamp(42px, 7vw, 120px);
  padding: 110px clamp(28px, 7vw, 110px);
  color: var(--ink);
  background: #f1f1ee;
}
.story > p { color: var(--muted); font-size: 0.84rem; }
.story > a { border-bottom-color: var(--ink); font-size: 0.72rem; }
.story .eyebrow { color: var(--wine); }

.site-footer {
  max-width: 1500px;
  margin: 0 auto;
  padding: 82px clamp(24px, 5vw, 78px) 28px;
}
.site-footer h3 { font-size: 0.68rem; letter-spacing: 0.08em; }
.site-footer a,
.site-footer button,
.site-footer p { font-size: 0.73rem; }
.footer-bottom { font-size: 0.65rem; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 190px 1fr 160px; padding: 0 24px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 840px) {
  :root { --header-height: 68px; }
  .site-header { grid-template-columns: 44px 1fr 128px; padding: 0 10px; }
  .main-nav { top: 98px; }
  .brand strong { font-size: 1.55rem; }
  .hero { min-height: 70svh; }
  .hero-image { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.06) 76%); }
  .hero-copy { padding: 0 22px 42px; }
  .hero h1 { font-size: 4.5rem; }
  .service-strip { border-inline: 0; }
  .service-strip > div { min-height: 70px; }
  .products-section { padding: 70px 16px 84px; }
  .section-heading h2,
  .feature-copy h2,
  .story h2 { font-size: 2.8rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 10px; }
  .quick-add { position: static; min-height: 42px; margin-top: 8px; }
  .collection-feature { grid-template-columns: 1fr; min-height: 0; }
  .feature-media { min-height: 60svh; order: 1; }
  .feature-copy { order: 2; padding: 58px 22px; }
  .story { grid-template-columns: 1fr; padding: 70px 22px; }
  .story > a { grid-column: auto; }
}

@media (max-width: 520px) {
  .announcement { font-size: 0.58rem; }
  .hero h1 { font-size: 3.6rem; }
  .hero-copy > span { max-width: 330px; font-size: 0.82rem; }
  .product-info { padding-top: 10px; }
  .product-title-row h3,
  .product-title-row strong { font-size: 0.73rem; }
  .product-info > p { font-size: 0.61rem; }
  .section-heading h2,
  .feature-copy h2,
  .story h2 { font-size: 2.45rem; }
}

.legal-page { background: var(--soft); }
.legal-header { position: sticky; top: 0; z-index: 10; min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.96); }
.legal-header > a:last-child { display: flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 600; }
.legal-header svg { width: 16px; }
.legal-layout { max-width: 1180px; display: grid; grid-template-columns: 250px 1fr; gap: 60px; margin: 0 auto; padding: 64px 24px 100px; }
.legal-layout aside { position: sticky; top: 110px; height: max-content; display: flex; flex-direction: column; padding: 20px 0; border-top: 1px solid var(--ink); }
.legal-layout aside p { margin-bottom: 14px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.legal-layout aside a { padding: 9px 0; color: var(--muted); font-size: 0.76rem; }
.legal-layout aside a:hover { color: var(--wine); }
.legal-content { padding: 48px 58px; background: #fff; }
.legal-draft { display: flex; flex-direction: column; gap: 7px; margin-bottom: 60px; padding: 18px; border-left: 3px solid var(--wine); background: #f8eeee; font-size: 0.76rem; line-height: 1.6; }
.legal-content section { padding: 10px 0 60px; scroll-margin-top: 100px; }
.legal-content section + section { padding-top: 58px; border-top: 1px solid var(--line); }
.legal-content h1 { margin: 10px 0 30px; font-family: "Cormorant Garamond", serif; font-size: 2.8rem; font-weight: 400; }
.legal-content h2 { margin: 26px 0 8px; font-family: "Manrope", sans-serif; font-size: 0.85rem; }
.legal-content p:not(.eyebrow) { color: #56534e; font-size: 0.84rem; line-height: 1.85; }

@media (max-width: 760px) {
  .legal-header { padding: 0 18px; }
  .legal-layout { display: block; padding: 28px 14px 60px; }
  .legal-layout aside { position: static; flex-direction: row; gap: 8px; margin-bottom: 18px; overflow-x: auto; }
  .legal-layout aside p { display: none; }
  .legal-layout aside a { flex: none; padding: 9px 12px; border: 1px solid var(--line); background: #fff; }
  .legal-content { padding: 34px 20px; }
  .legal-content h1 { font-size: 2.1rem; }
}

.payment-logo-band {
  width: min(100%, 300px);
  height: 32px;
  object-fit: contain;
  object-position: right center;
}

.paytr-checkout-logo {
  width: 120px;
  height: auto;
}

.accepted-cards {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.paytr-frame {
  width: 100%;
  min-height: 640px;
  margin-top: 12px;
}

.paytr-frame iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
}

.payment-cards-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 18px auto;
}

.about-page { background: var(--soft); }
.about-main { max-width: 1240px; margin: 0 auto; padding: 44px 32px 80px; }
.about-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); align-items: center; gap: 64px; }
.about-hero img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-hero h1,
.about-contact h2 { margin: 10px 0 22px; font-family: "Cormorant Garamond", serif; font-size: 64px; font-weight: 400; line-height: 1.05; }
.about-hero p:last-child,
.about-values p { color: #5f5f59; font-size: 17px; line-height: 1.8; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 72px 0; background: #d8d8d2; }
.about-values article { padding: 36px; background: #fff; }
.about-values span { color: #81705f; font-weight: 700; }
.about-values h2 { margin: 26px 0 14px; font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 400; }
.about-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 56px; background: #191919; color: #fff; }
.about-contact address { display: flex; flex-direction: column; gap: 14px; justify-content: center; font-style: normal; line-height: 1.7; }
.about-contact a { color: #fff; }
.about-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1240px; margin: 0 auto; padding: 28px 32px; font-size: 14px; }
.about-footer img { width: min(42vw, 300px); height: auto; }
.about-footer a { color: inherit; }

@media (max-width: 760px) {
  .payment-logo-band { object-position: left center; }
  .paytr-panel { grid-template-columns: 1fr; align-items: start; }
  .paytr-panel > svg { display: none; }
  .paytr-checkout-logo { width: 120px; }
  .about-main { padding: 24px 18px 56px; }
  .about-hero,
  .about-contact { grid-template-columns: 1fr; gap: 30px; }
  .about-hero h1,
  .about-contact h2 { font-size: 42px; }
  .about-values { grid-template-columns: 1fr; margin: 44px 0; }
  .about-contact { padding: 32px 24px; }
  .about-footer { flex-direction: column; align-items: flex-start; padding: 24px 18px; }
  .about-footer img { width: 100%; max-width: 300px; }
}

/* Hamse storefront 2.0 */
:root {
  --ink: #121212;
  --muted: #6b6b67;
  --paper: #ffffff;
  --soft: #f4f4f2;
  --sage: #eeeeeb;
  --sage-dark: #454843;
  --wine: #8a1f2f;
  --line: #deded9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --header-height: 86px;
}

body { color: var(--ink); background: var(--paper); font-family: "Manrope", Arial, sans-serif; }

.announcement {
  min-height: 32px;
  padding: 7px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.site-header {
  height: var(--header-height);
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  gap: 24px;
  padding: 0 50px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.brand span { margin-top: 2px; font-size: 0.45rem; letter-spacing: 0.58em; }
.main-nav { gap: 34px; font-size: 0.72rem; font-weight: 500; }
.main-nav a,
.main-nav button { padding: 14px 0; }
.main-nav a::after,
.main-nav button::after { bottom: 7px; }
.header-tools { gap: 2px; }
.icon-button { width: 42px; height: 42px; border-radius: 0; }
.icon-button:hover { background: #f4f4f2; }
.icon-button svg { width: 19px; height: 19px; stroke-width: 1.45; }
.cart-count { top: 2px; right: -1px; width: 17px; min-width: 17px; height: 17px; background: var(--ink); font-size: 0.56rem; }

.hero {
  min-height: 620px;
  height: 68svh;
  max-height: 760px;
  background: #d4d2cf;
}
.hero-image { object-position: center 32%; filter: saturate(0.72) contrast(1.01); }
.hero-overlay { background: rgba(10, 10, 10, 0.25); }
.hero-copy {
  width: 620px;
  padding: 0 50px 64px;
  color: #fff;
}
.hero-copy > p { margin-bottom: 13px; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; }
.hero h1 { font-size: 6rem; font-weight: 500; line-height: 0.9; }
.hero-copy > span { max-width: 390px; margin-top: 18px; font-size: 0.86rem; line-height: 1.7; }
.button { min-height: 48px; padding: 0 23px; border-radius: 0; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; }
.button:hover { transform: none; }
.button-light { margin-top: 28px; }
.hero-note {
  position: absolute;
  right: 50px;
  bottom: 65px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 106px 50px 130px;
}
.section-heading { margin-bottom: 38px; }
.section-heading h2 {
  margin-top: 7px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
}
.section-heading > p { max-width: 390px; font-size: 0.74rem; line-height: 1.7; }
.eyebrow { color: var(--ink); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; }
.shop-toolbar { min-height: 58px; margin-bottom: 28px; }
.filter-tabs { gap: 28px; }
.filter-tab { min-height: 57px; font-size: 0.7rem; font-weight: 500; }
.sort-control { font-size: 0.64rem; }
.sort-control select { font-size: 0.68rem; font-weight: 500; }

.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 54px 14px; }
.product-card { cursor: pointer; }
.product-media { aspect-ratio: 3 / 4.15; background: #f1f1ef; }
.product-media img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: opacity 300ms ease, transform 650ms ease; }
.product-image-primary { opacity: 1; }
.product-image-secondary { opacity: 0; }
.product-card:hover .product-image-primary { opacity: 0; transform: none; }
.product-card:hover .product-image-secondary { opacity: 1; transform: scale(1.012); }
.product-badge {
  top: 12px;
  left: 12px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(255,255,255,0.85);
}
.quick-add {
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 47px;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.66rem;
  font-weight: 600;
}
.product-info { padding: 14px 1px 0; }
.product-title-row { align-items: baseline; }
.product-title-row h3,
.product-title-row strong { font-family: "Manrope", Arial, sans-serif; font-size: 0.74rem; font-weight: 500; }
.product-info > p { margin-top: 5px; font-size: 0.6rem; line-height: 1.5; }
.swatch-list { gap: 6px; margin-top: 10px; }
.swatch { width: 9px; height: 9px; }

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #fff;
}
.editorial-tile {
  position: relative;
  height: 760px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #d8d7d3;
  text-align: left;
}
.editorial-tile img { height: 100%; object-fit: cover; object-position: center 24%; filter: saturate(0.78); transition: transform 900ms ease; }
.editorial-tile::after { position: absolute; inset: 0; background: rgba(10,10,10,0.22); content: ""; }
.editorial-tile:hover img { transform: scale(1.018); }
.editorial-tile > span { position: absolute; right: 46px; bottom: 46px; left: 46px; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
.editorial-tile small { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.editorial-tile strong { margin-top: 8px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 3.6rem; font-weight: 500; line-height: 1; }
.editorial-tile em { margin-top: 20px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,0.8); font-size: 0.66rem; font-style: normal; font-weight: 600; }
.editorial-tile-dark img { object-position: center 20%; }

.collection-feature {
  min-height: 760px;
  grid-template-columns: 0.82fr 1.18fr;
  color: var(--ink);
  background: #f2f2ef;
}
.feature-copy { order: 1; padding: 88px 86px; }
.feature-media { order: 2; min-height: 760px; }
.feature-media img { object-position: center 28%; filter: saturate(0.72); }
.feature-copy h2 { max-width: 470px; margin-top: 14px; font-size: 4.5rem; font-weight: 500; line-height: 0.96; }
.feature-copy > p:not(.eyebrow) { max-width: 480px; margin-top: 27px; color: #5f5f5b; font-size: 0.78rem; line-height: 1.9; }
.feature-copy dl { margin-top: 42px; border-top: 1px solid #cfcfca; }
.feature-copy dl div { padding-top: 20px; border-right-color: #cfcfca; }
.feature-copy dt { font-size: 1.75rem; font-weight: 500; }
.feature-copy dd { color: var(--muted); font-size: 0.62rem; }
.text-link { width: max-content; display: inline-flex; align-items: center; gap: 8px; margin-top: 38px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 0.66rem; font-weight: 600; }
.text-link svg { width: 14px; }

.service-strip {
  max-width: 1600px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-strip > div { min-height: 112px; justify-content: flex-start; gap: 18px; padding: 24px 38px; }
.service-strip > div > span { color: #a2a29d; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; }
.service-strip p { display: flex; flex-direction: column; gap: 4px; color: var(--muted); font-size: 0.65rem; }
.service-strip strong { color: var(--ink); font-size: 0.72rem; font-weight: 600; }

.story {
  grid-template-columns: 170px minmax(0, 1fr) 360px;
  align-items: start;
  gap: 48px;
  padding: 118px 70px;
  color: #f7f7f4;
  background: #151515;
}
.story .eyebrow { margin-top: 12px; color: #a7a7a2; }
.story h2 { max-width: 760px; margin: 0; font-size: 5rem; font-weight: 500; line-height: 0.94; }
.story > div { max-width: 350px; }
.story > div > p { color: #adada8; font-size: 0.75rem; line-height: 1.85; }
.story > div > a { width: max-content; display: inline-flex; align-items: center; gap: 8px; margin-top: 27px; padding-bottom: 5px; border-bottom: 1px solid #fff; font-size: 0.66rem; font-weight: 600; }
.story > div > a svg { width: 14px; }

.site-footer { max-width: 1600px; padding: 80px 50px 26px; }
.site-footer h3 { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; }
.site-footer a,
.site-footer button,
.site-footer p { font-size: 0.69rem; }
.footer-bottom { margin-top: 58px; font-size: 0.6rem; }

.product-dialog {
  width: 100vw;
  height: 100svh;
  max-width: none;
  max-height: none;
  margin: 0;
}
.product-dialog-layout { grid-template-columns: minmax(0, 1.5fr) minmax(390px, 0.68fr); min-height: 100svh; }
.product-dialog .dialog-close { position: fixed; top: 20px; right: 22px; z-index: 5; background: rgba(255,255,255,0.9); }
.product-gallery { grid-template-columns: 76px minmax(0, 1fr); gap: 18px; padding: 28px; background: #f2f2ef; }
.product-main-media { min-height: calc(100svh - 56px); }
.product-main-media img { object-position: center top; }
.product-thumbs { gap: 8px; padding: 0; }
.product-thumbs button { border-color: transparent; }
.product-thumbs button.is-active { border-color: var(--ink); }
.product-purchase { padding: 108px 60px 54px; }
.product-purchase h2 { font-size: 3.2rem; line-height: 1; }
.detail-price { margin-top: 18px; font-size: 0.88rem; }
.detail-description { margin-top: 22px; font-size: 0.72rem; line-height: 1.8; }
.option-group { margin-top: 30px; }
.option-group legend { font-size: 0.68rem; }
.toggle-option { margin-top: 26px; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 160px 1fr 150px; padding: 0 26px; }
  .main-nav { gap: 22px; }
  .hero-copy { padding-left: 34px; }
  .hero-note { right: 34px; }
  .products-section { padding-right: 26px; padding-left: 26px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .editorial-tile { height: 650px; }
  .feature-copy { padding: 72px 54px; }
  .story { grid-template-columns: 120px 1fr 280px; padding-right: 42px; padding-left: 42px; }
  .story h2 { font-size: 4.25rem; }
  .product-dialog-layout { grid-template-columns: 1.25fr 430px; }
  .product-purchase { padding-right: 38px; padding-left: 38px; }
}

@media (max-width: 840px) {
  :root { --header-height: 68px; }
  .announcement { min-height: 29px; font-size: 0.56rem; }
  .site-header { grid-template-columns: 42px 1fr 124px; padding: 0 9px; }
  .mobile-menu-button { display: inline-flex; }
  .brand strong { font-size: 1.7rem; }
  .main-nav { top: 97px; gap: 0; padding: 12px 18px 22px; }
  .main-nav a,
  .main-nav button { padding: 15px 2px; }
  .header-tools .icon-button { width: 39px; }
  .hero { min-height: 500px; height: 62svh; }
  .hero-image { object-position: 59% center; }
  .hero-overlay { background: rgba(8,8,8,0.3); }
  .hero-copy { width: 100%; padding: 0 20px 40px; }
  .hero h1 { font-size: 4rem; }
  .hero-copy > span { max-width: 310px; font-size: 0.78rem; }
  .hero-note { display: none; }
  .products-section { padding: 72px 14px 90px; }
  .section-heading { display: block; margin-bottom: 26px; }
  .section-heading h2 { font-size: 1.65rem; }
  .section-heading > p { margin-top: 12px; font-size: 0.7rem; }
  .shop-toolbar { align-items: stretch; flex-direction: column; padding-bottom: 10px; border-bottom: 0; }
  .filter-tabs { border-bottom: 1px solid var(--line); }
  .sort-control { justify-content: flex-end; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 8px; }
  .quick-add { position: static; min-height: 39px; margin-top: 7px; border: 1px solid var(--line); opacity: 1; transform: none; }
  .product-title-row { display: block; }
  .product-title-row strong { display: block; margin-top: 5px; }
  .product-info > p { min-height: 28px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-tile { height: 72svh; min-height: 520px; }
  .editorial-tile > span { right: 22px; bottom: 30px; left: 22px; }
  .editorial-tile strong { font-size: 3.1rem; }
  .collection-feature { grid-template-columns: 1fr; min-height: 0; }
  .feature-copy { order: 2; padding: 62px 22px 70px; }
  .feature-media { order: 1; min-height: 66svh; }
  .feature-copy h2 { font-size: 3.25rem; }
  .feature-copy dl { grid-template-columns: 1fr; }
  .feature-copy dl div { display: grid; grid-template-columns: 100px 1fr; align-items: center; padding: 15px 0; border-right: 0; border-bottom: 1px solid #cfcfca; }
  .feature-copy dd { text-align: left; }
  .service-strip { grid-template-columns: 1fr; border-inline: 0; }
  .service-strip > div { min-height: 84px; padding: 18px 22px; border-right: 0; }
  .story { grid-template-columns: 1fr; gap: 28px; padding: 76px 22px 82px; }
  .story .eyebrow { margin-top: 0; }
  .story h2 { font-size: 3.15rem; }
  .site-footer { padding: 58px 22px 24px; }
  .product-dialog { height: 100svh; }
  .product-dialog-layout { display: block; min-height: 0; }
  .product-gallery { grid-template-columns: 1fr; gap: 8px; padding: 0; }
  .product-main-media { min-height: 66svh; }
  .product-thumbs { flex-direction: row; padding: 8px 12px; overflow-x: auto; }
  .product-thumbs button { width: 58px; flex: none; }
  .product-purchase { padding: 44px 20px 36px; overflow: visible; }
  .product-purchase h2 { font-size: 2.65rem; }
}

@media (max-width: 520px) {
  .hero { min-height: 470px; }
  .hero h1 { font-size: 3.45rem; }
  .product-title-row h3,
  .product-title-row strong { font-size: 0.68rem; }
  .product-info > p { font-size: 0.56rem; }
  .editorial-tile { min-height: 500px; }
  .editorial-tile strong { font-size: 2.75rem; }
  .feature-copy h2 { font-size: 2.9rem; }
  .story h2 { font-size: 2.85rem; }
}
