:root {
  --ink: #1f2320;
  --muted: #687069;
  --line: #dce4df;
  --paper: #fbfdfc;
  --soft: #eef5f1;
  --jade: #2f7d62;
  --jade-dark: #1f5d48;
  --gold: #b99255;
  --shadow: 0 18px 48px rgba(31, 35, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  background: rgba(251, 253, 252, 0.94);
  border-bottom: 1px solid rgba(220, 228, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-name {
  color: var(--jade-dark);
  font-family: "STKaiti", "KaiTi", "PingFang SC", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a:hover {
  color: var(--jade);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghost-button,
.cart-button,
.menu-button,
.primary-button,
.secondary-button,
.filter-tabs button {
  border: 0;
  cursor: pointer;
}

.ghost-button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
}

.cart-button span {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: min(820px, calc(100vh - 72px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero picture,
.hero picture img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(7, 12, 9, 0.76), rgba(7, 12, 9, 0.22) 55%, rgba(7, 12, 9, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 88px 8vw;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.primary-button {
  color: #fff;
  background: var(--jade);
}

.primary-button:hover {
  background: var(--jade-dark);
}

.secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.secondary-button.dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section {
  padding: 88px 6vw;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.compact {
  text-align: center;
  margin: 0 auto 32px;
}

.section-heading h2,
.detail-copy h2,
.custom-card h2,
.story-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
}

.section-heading p:not(.eyebrow),
.detail-copy p,
.custom-card p,
.story-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.collection-card.large {
  grid-row: 1 / span 2;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover img {
  transform: scale(1.04);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.collection-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
}

.collection-card span {
  color: #f1d19a;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.collection-card h3 {
  margin: 8px 0;
  font-size: 28px;
}

.collection-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.diy-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  min-height: 580px;
  color: #fff;
  background: #183d31;
}

.diy-feature-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  overflow: hidden;
  background: #eaf3ef;
}

.diy-feature-media::before {
  content: "在线排列 · 实时计价";
  position: absolute;
  top: 26px;
  left: 28px;
  color: var(--jade-dark);
  font-size: 13px;
  font-weight: 800;
}

.mini-bracelet {
  position: relative;
  width: min(340px, 68vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(47, 125, 98, 0.35);
  border-radius: 50%;
}

.mini-bracelet span {
  --angle: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #e7fff3, #6ea78f 48%, #264f40 120%);
  border: 1px solid rgba(19, 72, 53, .2);
  box-shadow: inset -5px -6px 9px rgba(0,0,0,.14), inset 4px 4px 8px rgba(255,255,255,.38), 0 4px 12px rgba(20,55,43,.16);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-148px);
}

.mini-bracelet span:nth-child(2) { --angle: 30deg; }
.mini-bracelet span:nth-child(3) { --angle: 60deg; background: radial-gradient(circle at 32% 26%, #fff, #e7e5d9 55%, #99a69f); }
.mini-bracelet span:nth-child(4) { --angle: 90deg; }
.mini-bracelet span:nth-child(5) { --angle: 120deg; background: radial-gradient(circle at 32% 26%, #ffe29b, #ae8439 55%, #694812); }
.mini-bracelet span:nth-child(6) { --angle: 150deg; }
.mini-bracelet span:nth-child(7) { --angle: 180deg; }
.mini-bracelet span:nth-child(8) { --angle: 210deg; background: radial-gradient(circle at 32% 26%, #fff, #e7e5d9 55%, #99a69f); }
.mini-bracelet span:nth-child(9) { --angle: 240deg; }
.mini-bracelet span:nth-child(10) { --angle: 270deg; }
.mini-bracelet span:nth-child(11) { --angle: 300deg; background: radial-gradient(circle at 32% 26%, #ffe29b, #ae8439 55%, #694812); }
.mini-bracelet span:nth-child(12) { --angle: 330deg; }

.diy-feature-copy {
  align-self: center;
  max-width: 680px;
  padding: 64px clamp(32px, 6vw, 90px);
}

.diy-feature-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
}

.diy-feature-copy > p:not(.eyebrow),
.diy-feature-copy li {
  color: #d3e4dc;
  line-height: 1.8;
}

.diy-feature-copy ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 28px;
  padding-left: 20px;
}

.product-section {
  background: #fff;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 26px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tabs button {
  padding: 10px 16px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 999px;
}

.filter-tabs button.active {
  color: #fff;
  background: var(--jade);
}

.sort-select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.sort-select select {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.filter-toggle {
  display: none;
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  background: var(--jade);
  border-radius: 999px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.sidebar-head button {
  color: var(--gold);
  background: transparent;
  font-size: 13px;
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-group h3 {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-group button {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  text-align: left;
}

.filter-group button.active {
  border-color: rgba(21, 92, 74, 0.26);
  color: var(--jade);
  background: rgba(21, 92, 74, 0.08);
  font-weight: 800;
}

.product-results {
  min-width: 0;
}

.result-summary {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image {
  aspect-ratio: 1 / 1;
  background: var(--soft);
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
}

.product-info h3 {
  margin: 0 0 8px;
  min-height: 48px;
  font-size: 17px;
  line-height: 1.45;
}

.product-desc {
  margin: 0 0 14px;
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--jade);
  font-size: 20px;
  font-weight: 800;
}

.mini-button {
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
}

.review-line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #d9a441;
}

.detail-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--soft);
}

.gift-guide {
  background: #f4f8f6;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.gift-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, border-color .2s ease;
}

.gift-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--jade);
}

.gift-grid span,
.gift-grid small {
  color: var(--muted);
}

.gift-grid strong {
  margin: 6px 0;
  color: var(--jade-dark);
  font-size: 22px;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 226, 216, 0.9);
  border-radius: 8px;
}

.detail-list strong {
  color: var(--jade);
  font-size: 22px;
}

.detail-list span {
  color: var(--muted);
  line-height: 1.7;
}

.custom-section {
  background: #fff;
}

.custom-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 44px;
  padding: 44px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #18271f, #2f7d62);
}

.custom-card p {
  color: rgba(255, 255, 255, 0.82);
}

.consult-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.consult-form label:nth-child(4),
.consult-form .primary-button,
.form-note {
  grid-column: 1 / -1;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.consult-form textarea {
  min-height: 104px;
  resize: vertical;
}

.consult-form option {
  color: var(--ink);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.story-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 8px;
  background: var(--soft);
}

.story-media img {
  width: min(240px, 60%);
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.story-metrics span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.story-metrics strong {
  display: block;
  color: var(--jade);
  font-size: 26px;
}

.service-section {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-grid h3 {
  margin: 0 0 12px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 6vw;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer,
.filter-drawer,
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 220;
  width: min(420px, 92vw);
  height: 100vh;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 0.25s ease;
}

.mobile-drawer.open,
.filter-drawer.open,
.cart-drawer.open {
  transform: translateX(0);
}

.mobile-drawer {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 28px;
}

.mobile-drawer a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
}

.drawer-logo {
  width: 120px;
  margin: 20px 0;
}

.drawer-close,
.modal-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 32px;
  cursor: pointer;
}

.cart-drawer {
  display: flex;
  flex-direction: column;
}

.filter-drawer {
  display: flex;
  flex-direction: column;
}

.filter-drawer-body {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 22px;
  overflow: auto;
  padding: 20px 24px 28px;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-controls button,
.remove-button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
}

.qty-controls button {
  width: 28px;
  height: 28px;
}

.remove-button {
  padding: 8px 10px;
  color: var(--muted);
}

.cart-empty {
  display: none;
  padding: 28px 24px;
  color: var(--muted);
  text-align: center;
}

.cart-empty.show {
  display: block;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.cart-summary strong {
  color: var(--ink);
}

.checkout-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.checkout-field textarea {
  min-height: 72px;
  resize: vertical;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, 92vh);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: auto;
  border-radius: 8px;
  background: var(--paper);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 1;
}

.modal-image-wrap {
  min-height: 520px;
  background: var(--soft);
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 48px;
}

.modal-info h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.2;
}

.modal-price {
  margin: 0 0 18px;
  color: var(--jade);
  font-size: 28px;
  font-weight: 800;
}

.modal-info p:not(.eyebrow):not(.modal-price) {
  color: var(--muted);
  line-height: 1.8;
}

.spec-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
  }

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

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

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

@media (max-width: 820px) {
  .site-header {
    padding: 0 18px;
  }

  .desktop-nav,
  .ghost-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 680px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(7, 12, 9, 0.16), rgba(7, 12, 9, 0.82));
  }

  .hero-content {
    align-self: end;
    padding: 60px 24px;
  }

  .trust-strip,
  .collection-grid,
  .diy-feature,
  .detail-band,
  .custom-card,
  .story-section,
  .modal-card {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-rows: none;
  }

  .collection-card,
  .collection-card.large {
    min-height: 320px;
    grid-row: auto;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
  }

  .filter-tabs {
    display: none;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

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

  .modal-image-wrap {
    min-height: 320px;
  }

  .modal-info {
    padding: 32px 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 64px;
  }

  .brand-name {
    font-size: 22px;
  }

  .diy-feature-media {
    min-height: 430px;
  }

  .cart-button {
    padding: 9px 12px;
    font-size: 13px;
  }

  .section {
    padding: 60px 18px;
  }

  .trust-strip,
  .product-grid,
  .service-grid,
  .gift-grid,
  .consult-form,
  .story-metrics {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .custom-card {
    padding: 28px 20px;
  }

  .diy-feature-media {
    min-height: 360px;
  }

  .mini-bracelet {
    width: 260px;
  }

  .mini-bracelet span {
    width: 42px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-112px);
  }

  .product-info h3,
  .product-desc {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
.consent-row,
.checkout-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted, #687069);
  font-size: 12px;
  line-height: 1.55;
}

.consent-row input,
.checkout-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.consent-row a,
.checkout-consent a {
  color: #176b50;
  text-decoration: underline;
  text-underline-offset: 2px;
}
