:root {
  --ink: #0b1220;
  --slate: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #f4f6fb;
  --white: #ffffff;
  --cobalt: #2557ff;
  --cobalt-deep: #1a3fd6;
  --sky: #dbe6ff;
  --mint: #ecfdf5;
  --amber: #f59e0b;
  --announce-h: 40px;
  --header-h: 132px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --shadow: 0 18px 40px rgba(11, 18, 32, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.drawer-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.chip-light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2,
.hero-panel h1,
.about-card h2,
.contact-box h2,
.shop-side h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-note {
  max-width: 260px;
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.text-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--cobalt);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cobalt);
  color: #fff;
}

.btn-primary:hover {
  background: var(--cobalt-deep);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-tiny {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.78rem;
  width: 100%;
  background: var(--ink);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.icon-btn .count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--cobalt);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
}

.announce {
  height: var(--announce-h);
  background: var(--ink);
  color: #e8eefc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  position: relative;
}

.announce p {
  margin: 0;
}

.announce-close {
  position: absolute;
  right: 16px;
  border: 0;
  background: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

body.announce-off {
  --announce-h: 0px;
}

body.announce-off .announce {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-top {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cobalt);
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  line-height: 1.05;
}

.logo-text strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-text small {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 6px 4px 16px;
}

.header-search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  font: inherit;
  outline: none;
  min-width: 0;
}

.header-search button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--cobalt);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.search-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 20;
  max-height: 360px;
  overflow: auto;
}

.search-hit {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.search-hit:hover {
  background: var(--paper);
}

.search-hit img {
  width: 52px;
  height: 64px;
  border-radius: 8px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tool-link {
  font-size: 0.82rem;
  font-weight: 700;
  margin-right: 8px;
  display: none;
}

.header-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 10px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--cobalt);
}

.nav-mobile-meta {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: none;
  gap: 5px;
  align-content: center;
  justify-items: center;
  cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  padding: 40px 20px 48px;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin-left: max(20px, calc((100% - 1180px) / 2));
}

.hero-lead {
  font-size: 1.05rem;
  color: #e8eef8;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 22px;
}

.hero-facts {
  display: flex;
  gap: 28px;
}

.hero-facts strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-facts span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9d4ea;
}

.hero-cards {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 48px;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(280px, 38vw);
}

.hero-mini {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 0;
  border-radius: 14px;
  padding: 8px;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.hero-mini img {
  width: 72px;
  height: 88px;
  border-radius: 10px;
}

.hero-mini small,
.hero-mini em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-mini strong {
  display: block;
  font-size: 0.9rem;
  margin: 2px 0;
}

.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-grid article {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sky);
  color: var(--cobalt);
  font-weight: 800;
  margin-bottom: 12px;
}

.trust-grid h2 {
  font-family: var(--font);
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog,
.picks,
.shop,
.stories,
.reviews {
  padding: 72px 0;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}

.bento-card {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: #d7dde8;
  color: #fff;
  text-align: left;
}

.bento-card.is-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.bento-card:hover img {
  transform: scale(1.05);
}

.bento-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(11, 18, 32, 0.78));
}

.bento-meta em,
.bento-meta small {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  opacity: 0.85;
}

.bento-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  margin: 4px 0;
}

.picks-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.pick-card,
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.pick-media,
.product-media {
  position: relative;
  display: block;
  background: #e8edf5;
}

.pick-media {
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.pick-media img,
.product-media img {
  width: 100%;
  height: 260px;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--cobalt);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 8px;
}

.pick-copy,
.product-card-copy {
  padding: 12px 14px 16px;
  text-align: left;
}

.pick-copy span,
.product-card-copy span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pick-copy h3,
.product-card-copy h3 {
  font-size: 1rem;
  margin: 4px 0;
  font-family: var(--font);
  letter-spacing: 0;
}

.pick-copy p,
.product-card-copy p {
  margin: 0 0 10px;
  font-weight: 700;
}

.product-card-copy {
  width: 100%;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

.product-card-copy s {
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

.product-media .img-b {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.media-hit {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.product-media:hover .img-b {
  opacity: 1;
}

.card-actions {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
}

.product-card:hover .card-actions,
.product-card:focus-within .card-actions {
  opacity: 1;
  transform: none;
}

.card-actions button {
  flex: 1;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.wish-mini {
  flex: 0 0 38px !important;
  background: #fff !important;
  color: var(--ink) !important;
}

.wish-mini.is-on {
  color: var(--cobalt) !important;
}

.promos {
  padding: 0 0 24px;
}

.promo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.promo {
  position: relative;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
}

.promo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  filter: brightness(0.5);
}

.promo-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.shop-side {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.side-filters {
  display: grid;
  gap: 6px;
  margin: 16px 0;
}

.side-filters button {
  text-align: left;
  border: 0;
  background: var(--paper);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
}

.side-filters button.is-active {
  background: var(--ink);
  color: #fff;
}

.side-label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}

.side-label select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.checkout input,
.checkout select,
.news-form input {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: inherit;
  width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-card.is-hidden {
  display: none;
}

.shop-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-card {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.story-card img,
.look-trigger {
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.story-card img {
  height: 340px;
}

.story-card figcaption {
  padding: 16px 18px 20px;
}

.about {
  padding: 20px 0 80px;
}

.about-frame {
  position: relative;
  min-height: 520px;
}

.about-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 520px;
}

.about-card {
  position: absolute;
  right: 24px;
  bottom: -28px;
  width: min(460px, 92%);
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-card p {
  color: var(--slate);
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 18px;
}

.about-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}

.about-stats span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews {
  background: #fff;
  border-block: 1px solid var(--line);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-grid blockquote {
  margin: 0;
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
}

.review-grid p {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.35;
}

.review-grid footer {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.contact {
  padding: 72px 0 80px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.contact-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.contact-cards span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label,
.checkout label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  min-height: 1.4em;
  color: var(--cobalt);
  font-weight: 600;
}

.site-footer {
  background: #0b1220;
  color: #c5cddc;
  padding: 36px 0 20px;
}

.news-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #152038;
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 36px;
}

.news-band h2 {
  color: #fff;
  font-size: 1.7rem;
  margin: 0;
}

.news-form {
  display: flex;
  gap: 8px;
  min-width: min(380px, 100%);
}

.news-form input {
  background: #0b1220;
  color: #fff;
  border-color: #2a3a58;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 28px;
}

.footer-logo {
  color: var(--cobalt);
  margin-bottom: 10px;
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-grid h4 {
  color: #fff;
  font-family: var(--font);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid ul,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.46);
  z-index: 60;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 70;
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.drawer-list {
  overflow: auto;
  flex: 1;
  display: grid;
  gap: 12px;
  align-content: start;
}

.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}

.drawer-item img {
  width: 72px;
  height: 90px;
  border-radius: 10px;
}

.drawer-item h4 {
  font-size: 0.95rem;
  margin: 0 0 4px;
  font-family: var(--font);
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button,
.qty input {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.qty button {
  cursor: pointer;
}

.cart-foot {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.cart-note,
.empty-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-modal,
.checkout {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-shell,
.checkout-card {
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.product-close {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}

.product-gallery {
  padding: 22px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #e8edf5;
  height: min(62vh, 560px);
}

.gallery-main img {
  width: 100%;
  height: 100%;
}

.zoom-lens {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #fff;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.gallery-thumbs button {
  width: 64px;
  height: 80px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.gallery-thumbs button.is-active {
  border-color: var(--cobalt);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
}

.zoom-hint {
  font-size: 0.78rem;
  color: var(--muted);
}

.product-info {
  padding: 36px 32px 32px 8px;
}

.price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.price-row s {
  color: var(--muted);
  font-size: 1rem;
}

.option-block,
.qty-row {
  margin: 16px 0;
}

.option-block span,
.qty-row span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.swatches,
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
}

.swatch.is-on {
  box-shadow: 0 0 0 2px var(--cobalt);
}

.size-pills button {
  min-width: 42px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.size-pills button.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.product-actions {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.product-meta {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.product-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.product-meta dt {
  color: var(--muted);
}

.checkout-card {
  width: min(560px, 100%);
  padding: 36px 28px;
  position: relative;
}

.checkout-summary {
  background: var(--paper);
  border-radius: 14px;
  padding: 14px;
  margin: 8px 0 16px;
  display: grid;
  gap: 6px;
}

.help-chip {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s var(--ease);
  z-index: 90;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.error-page,
.page-pad {
  min-height: 50vh;
  padding: 80px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 981px) {
  .tool-link {
    display: inline;
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .bento-card.is-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .trust-grid,
  .footer-grid,
  .review-grid,
  .story-row,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-cards {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-top {
    grid-template-columns: auto auto;
  }

  .header-search {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .header-nav {
    display: none;
  }

  body.nav-open .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: calc(var(--announce-h) + 78px) 0 0;
    background: var(--ink);
    color: #fff;
    width: 100%;
    padding: 32px 28px;
    z-index: 50;
    gap: 24px;
  }

  body.nav-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.3rem;
  }

  body.nav-open .nav-mobile-meta {
    display: grid;
    gap: 8px;
    color: #9db0d4;
  }

  .shop-layout,
  .promo-pair,
  .contact-box,
  .product-shell,
  .form-row,
  .news-band {
    grid-template-columns: 1fr;
  }

  .shop-side {
    position: static;
  }

  .hero {
    min-height: 560px;
    padding: 28px 16px 32px;
  }

  .hero-panel {
    margin-left: 0;
  }

  .about-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -48px;
    width: calc(100% - 24px);
    margin-left: 12px;
  }

  .about-photo img {
    height: 320px;
  }

  .product-info {
    padding: 20px;
  }

  .gallery-main {
    height: 380px;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .trust-grid,
  .footer-grid,
  .review-grid,
  .story-row,
  .contact-cards,
  .product-grid,
  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card.is-wide,
  .bento-card {
    grid-column: span 1;
    min-height: 220px;
  }

  .picks-rail {
    grid-auto-columns: 70vw;
  }

  .card-actions {
    opacity: 1;
    transform: none;
  }

  .announce p {
    max-width: 80%;
    text-align: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
