@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --ink: #14211f;
  --muted: #64736f;
  --paper: #fbfaf5;
  --surface: #ffffff;
  --line: #dce4df;
  --turquoise: #00a9a5;
  --turquoise-deep: #08706d;
  --jade: #2f7d64;
  --gold: #bf8f2f;
  --coral: #c95f4a;
  --charcoal: #182522;
  --shadow: 0 24px 70px rgba(20, 33, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(0, 169, 165, 0.08), transparent 420px),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  font-size: 16px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 245, 0.88);
  border-bottom: 1px solid rgba(220, 228, 223, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(191, 143, 47, 0.4);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(20, 33, 31, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: #33443f;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--turquoise);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.catalog-meta,
.drawer-header,
.total-row {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 10px;
}

.currency-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 4px 6px 4px 12px;
  color: #0f2522;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(16, 24, 22, 0.045);
}

.currency-select span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.currency-select select {
  min-height: 32px;
  padding: 0 24px 0 8px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
}

.icon-button,
.cart-button,
.primary-button,
.secondary-button,
.chip,
.text-button {
  border: 0;
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(0, 169, 165, 0.55);
  box-shadow: 0 10px 24px rgba(8, 112, 109, 0.12);
  transform: translateY(-1px);
}

.search-glyph {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-glyph::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.mobile-nav-toggle {
  display: none;
  gap: 3px;
}

.mobile-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-nav-panel {
  position: sticky;
  top: 67px;
  z-index: 19;
  display: none;
  padding: 8px 14px 14px;
  background: rgba(251, 250, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.mobile-nav-panel a {
  display: block;
  min-height: 42px;
  padding: 11px 8px;
  border-bottom: 1px solid rgba(220, 228, 223, 0.75);
  font-weight: 800;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 8px 0 16px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 999px;
  font-weight: 700;
}

.cart-button strong {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  color: var(--charcoal);
  background: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 54px) 34px;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--turquoise-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: 0.88;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6.8vw, 6.9rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.98;
}

.hero-lede {
  max-width: 590px;
  margin: 24px 0 0;
  color: #31433e;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.payment-readiness {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.payment-readiness strong {
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--turquoise-deep), var(--charcoal));
  box-shadow: 0 18px 38px rgba(8, 112, 109, 0.22);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-1px);
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin: 34px 0 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.trust-strip dt {
  font-size: 1.35rem;
  font-weight: 800;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.image-slot {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 35%, rgba(79, 223, 214, 0.55), transparent 22%),
    radial-gradient(circle at 70% 55%, rgba(191, 143, 47, 0.28), transparent 26%),
    linear-gradient(145deg, #dff7f3, #f8f1df 50%, #203330);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.image-slot.is-missing img {
  display: none;
}

.image-slot::before {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
}

.image-fallback-content {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: none;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.image-slot.is-missing .image-fallback-content {
  display: block;
}

.image-fallback-content span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.image-fallback-content strong {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.hero-visual {
  min-height: 540px;
}

.hero-panel {
  position: absolute;
  right: clamp(28px, 6vw, 96px);
  bottom: 36px;
  width: min(390px, calc(100vw - 36px));
  padding: 18px;
  color: #fff;
  background: rgba(20, 33, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.panel-heading {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-heading p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-products {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.mini-products article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-products small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
}

.stone-dot {
  width: 38px;
  height: 38px;
  background: var(--turquoise);
  border: 3px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.stone-dot.sky {
  background: #3fd2d0;
}

.stone-dot.web {
  background:
    linear-gradient(45deg, transparent 42%, rgba(32, 51, 48, 0.75) 43% 47%, transparent 48%),
    linear-gradient(-35deg, transparent 46%, rgba(32, 51, 48, 0.65) 47% 50%, transparent 51%),
    #23b9b6;
}

.stone-dot.ring {
  background: radial-gradient(circle, #71ece7 0 45%, #86641f 47% 56%, #263936 58%);
}

.shop-toolbar,
.catalog-layout,
.feature-band,
.process-section,
.visit-section,
.conversion-strip,
.elite-trust-section,
.keyword-shop-section,
.quick-buy-section,
.carat-guide-section,
.payment-section {
  padding-right: clamp(18px, 4vw, 54px);
  padding-left: clamp(18px, 4vw, 54px);
}

.conversion-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 clamp(18px, 4vw, 54px);
  padding-top: 18px;
  padding-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--turquoise-deep), var(--charcoal));
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(8, 112, 109, 0.2);
}

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

.conversion-strip span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.conversion-strip .primary-button {
  background: #fff;
  color: var(--charcoal);
  box-shadow: none;
}

.elite-trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 18px;
}

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

.elite-trust-grid article {
  min-height: 190px;
  padding: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 18%, rgba(115, 229, 223, 0.18), transparent 32%),
    linear-gradient(145deg, #15221f, #2f3e39);
  border: 1px solid rgba(213, 177, 93, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(20, 33, 31, 0.14);
}

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

.elite-trust-grid span {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.concierge-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(115, 229, 223, 0.18), transparent 30%),
    linear-gradient(135deg, #15221f, #2a3834 52%, #67511e);
}

.concierge-section .eyebrow {
  color: #8cf0eb;
}

.concierge-section p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.concierge-steps {
  display: grid;
  gap: 12px;
}

.concierge-steps article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.concierge-steps span {
  color: #8cf0eb;
  font-weight: 800;
}

.concierge-steps strong {
  display: block;
  margin-top: 18px;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 18px clamp(18px, 4vw, 54px) 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.category-strip a {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

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

.category-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.keyword-shop-section {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: 10px;
}

.keyword-shop-section .section-heading p:last-child {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
}

.keyword-shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.keyword-shop-grid a {
  display: flex;
  flex-direction: column;
  min-height: 184px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 19, 17, 0.92), rgba(0, 127, 122, 0.78)),
    #071311;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 19, 17, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.keyword-shop-grid a:hover {
  box-shadow: 0 28px 76px rgba(7, 19, 17, 0.16);
  transform: translateY(-3px);
}

.keyword-shop-grid span {
  width: fit-content;
  padding: 6px 9px;
  color: #aef3ef;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.keyword-shop-grid strong {
  margin-top: 16px;
  color: #fff;
  line-height: 1.26;
}

.keyword-shop-grid p {
  margin-top: auto;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.quick-buy-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: 18px;
}

.quick-buy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.quick-buy-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(20, 33, 31, 0.09);
}

.quick-buy-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.quick-buy-card > div {
  padding: 18px;
}

.quick-buy-card span {
  color: var(--turquoise-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-buy-card h3 {
  margin: 8px 0 0;
  font-size: 1.15rem;
}

.quick-buy-card p {
  min-height: 66px;
  color: var(--muted);
  line-height: 1.55;
}

.quick-actions,
.modal-actions {
  display: grid;
  gap: 10px;
}

.quick-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.quick-buy-card .primary-button,
.quick-buy-card .secondary-button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 50px;
  padding-bottom: 22px;
}

.shop-toolbar.compact {
  padding-top: 34px;
}

.search-field {
  display: grid;
  gap: 8px;
  width: min(380px, 100%);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-field input,
.sort-control select {
  min-height: 46px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.search-field input {
  width: 100%;
  padding: 0 14px;
}

.search-field input:focus,
.sort-control select:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(0, 169, 165, 0.12);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(18px, 3vw, 34px);
}

.filters {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-block + .filter-block,
.advisor-card {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.filter-block strong {
  display: block;
  margin-bottom: 12px;
}

.filter-hint {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 36px;
  padding: 0 12px;
  color: #31433e;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.chip.is-active {
  color: #fff;
  background: var(--turquoise-deep);
  border-color: var(--turquoise-deep);
}

.toggle-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.toggle-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--turquoise-deep);
}

.advisor-card {
  color: #fff;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(8, 112, 109, 0.95), rgba(20, 33, 31, 0.95)),
    var(--charcoal);
  border-radius: var(--radius);
}

.advisor-card span,
.advisor-card strong {
  display: block;
}

.advisor-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.advisor-card strong {
  margin-top: 8px;
  line-height: 1.4;
}

.text-button {
  margin-top: 14px;
  padding: 0;
  color: #fff;
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalog-meta {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sort-control select {
  padding: 0 34px 0 12px;
}

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

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 33, 31, 0.07);
}

.product-media {
  aspect-ratio: 1 / 0.82;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-content {
  padding: 16px;
}

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

.product-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover {
  color: var(--turquoise-deep);
}

.price {
  color: var(--turquoise-deep);
  font-weight: 800;
  white-space: nowrap;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0;
}

.product-meta span {
  padding: 5px 8px;
  color: #3d4d49;
  background: #f2f7f5;
  border: 1px solid #e1ebe7;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.product-card p {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 42px;
  gap: 10px;
  margin-top: 16px;
}

.card-actions .primary-button,
.card-actions .secondary-button {
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.card-actions .icon-button {
  width: 42px;
  height: 42px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(70px, 9vw, 124px);
  padding-bottom: clamp(64px, 8vw, 110px);
}

.feature-media {
  aspect-ratio: 0.92 / 1;
}

.feature-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.quality-grid article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quality-grid strong,
.quality-grid span {
  display: block;
}

.quality-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.process-section {
  padding-top: 76px;
  padding-bottom: 76px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 169, 165, 0.25), transparent 30%),
    linear-gradient(135deg, #172522, #27342f 48%, #7b5a1a);
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding-top: 74px;
  padding-bottom: 74px;
}

.payment-section p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}

.payment-grid {
  display: grid;
  gap: 12px;
}

.payment-grid article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 33, 31, 0.06);
}

.payment-grid strong,
.payment-grid span {
  display: block;
}

.payment-grid span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
}

.process-section .eyebrow {
  color: #74e4df;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.process-grid article {
  min-height: 230px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.process-grid span {
  color: #74e4df;
  font-weight: 800;
}

.process-grid strong {
  display: block;
  margin-top: 34px;
  font-size: 1.05rem;
}

.process-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 88px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 54px) clamp(34px, 6vw, 78px);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(3.1rem, 6.8vw, 7.2rem);
  line-height: 0.92;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #31433e;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.page-hero-media {
  min-height: 430px;
}

.quality-hero,
.about-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
}

.proof-stack,
.founder-note {
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 169, 165, 0.28), transparent 32%),
    linear-gradient(145deg, var(--charcoal), #2d3c37);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-stack {
  display: grid;
  gap: 12px;
}

.proof-stack article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.proof-stack strong,
.proof-stack span,
.founder-note span,
.founder-note strong {
  display: block;
}

.proof-stack span,
.founder-note span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.founder-note span {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-note strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.info-grid-section,
.timeline-section,
.story-section,
.contact-layout,
.wide-cta,
.comparison-band {
  padding-right: clamp(18px, 4vw, 54px);
  padding-left: clamp(18px, 4vw, 54px);
}

.info-grid-section,
.timeline-section {
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.info-grid-section.tighter {
  padding-top: 22px;
}

.info-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid article,
.timeline article {
  min-height: 230px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.info-grid span,
.timeline span {
  color: var(--turquoise-deep);
  font-weight: 800;
}

.info-grid strong,
.timeline strong {
  display: block;
  margin-top: 32px;
  font-size: 1.06rem;
}

.info-grid p,
.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.comparison-band,
.story-section,
.wide-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.comparison-band {
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 169, 165, 0.28), transparent 26%),
    linear-gradient(135deg, #172522, #314139);
}

.comparison-band .eyebrow {
  color: #74e4df;
}

.comparison-band p,
.story-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.comparison-band p {
  color: rgba(255, 255, 255, 0.74);
}

.comparison-list {
  display: grid;
  gap: 12px;
}

.comparison-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.comparison-list strong,
.comparison-list span {
  display: block;
}

.comparison-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.wide-cta {
  align-items: center;
  padding-top: 70px;
  padding-bottom: 82px;
}

.wide-cta .primary-button {
  justify-self: end;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(42px, 7vw, 92px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.contact-copy h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.94;
}

.contact-copy p {
  max-width: 680px;
  color: #31433e;
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-methods article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfaf5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.inquiry-form input,
.inquiry-form select {
  min-height: 46px;
  padding: 0 12px;
}

.inquiry-form textarea {
  min-height: 128px;
  padding: 12px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(0, 169, 165, 0.12);
}

.form-note {
  color: var(--muted);
  line-height: 1.45;
}

.currency-note {
  margin: 8px 0 0;
  color: #49625d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 54px) clamp(58px, 8vw, 104px);
}

.checkout-summary,
.checkout-form {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checkout-list {
  display: grid;
  gap: 12px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: var(--radius);
}

.checkout-item strong,
.checkout-item span {
  display: block;
}

.checkout-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfaf5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.checkout-form input,
.checkout-form select {
  min-height: 46px;
  padding: 0 12px;
}

.checkout-form textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.payment-routing,
.paypal-checkout {
  padding: 14px;
  background: rgba(0, 127, 122, 0.07);
  border: 1px solid rgba(0, 127, 122, 0.14);
  border-radius: 8px;
}

.payment-routing strong,
.payment-routing span {
  display: block;
}

.payment-routing strong {
  color: #071311;
  font-size: 0.9rem;
}

.payment-routing span {
  margin-top: 5px;
  color: #49625d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.paypal-checkout {
  background: #fff;
}

.payment-loading {
  color: #49625d;
  font-size: 0.84rem;
  font-weight: 800;
}

.policy-content,
.review-section,
.seo-content {
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 54px) clamp(58px, 8vw, 104px);
}

.policy-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.policy-card,
.review-card,
.seo-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.policy-card p,
.review-card p,
.seo-card p,
.seo-content p {
  color: var(--muted);
  line-height: 1.7;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 10px;
  color: var(--turquoise-deep);
  font-weight: 800;
}

.faq-page .page-hero {
  padding-bottom: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
  padding: 0 clamp(18px, 4vw, 54px) clamp(58px, 8vw, 104px);
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 33, 31, 0.06);
}

.faq-list summary {
  min-height: 56px;
  padding: 18px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(36px, 6vw, 82px) clamp(18px, 4vw, 54px) clamp(58px, 8vw, 104px);
}

.gallery-main {
  min-height: 520px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumbs button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-thumbs button.is-active img,
.gallery-thumbs button:focus-visible img {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(0, 169, 165, 0.16);
}

.product-detail-copy {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-detail-copy h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.detail-badges span {
  padding: 7px 10px;
  color: var(--turquoise-deep);
  background: #eefaf8;
  border: 1px solid #d4eeea;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-price {
  color: var(--turquoise-deep);
  font-size: 1.45rem;
  font-weight: 800;
}

.detail-specs {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.detail-specs div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.detail-specs span {
  color: var(--muted);
}

.detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.roadmap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.seo-card {
  position: sticky;
  top: 92px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 30px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.site-footer strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-links a {
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  background: #128c7e;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.3);
  font-weight: 800;
}

.mobile-buy-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  display: none;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 250, 245, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 34px rgba(20, 33, 31, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-buy-bar a,
.mobile-buy-bar button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.mobile-buy-bar .mobile-buy-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--turquoise-deep), var(--charcoal));
  border-color: transparent;
}

.visit-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visit-card p {
  color: var(--muted);
  line-height: 1.65;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(10, 18, 17, 0.42);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(20, 33, 31, 0.22);
  pointer-events: none;
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open {
  pointer-events: auto;
  transform: translateX(0);
}

.drawer-header,
.drawer-footer {
  padding: 22px;
}

.drawer-header {
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  font-size: 1.8rem;
}

.cart-items {
  overflow: auto;
  padding: 18px 22px;
}

.empty-state {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
}

.remove-button {
  width: 34px;
  height: 34px;
  color: var(--coral);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

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

.total-row {
  justify-content: space-between;
  margin-bottom: 16px;
}

.full {
  width: 100%;
}

.drawer-footer small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.drawer-footer .secondary-button {
  width: 100%;
  margin-top: 10px;
}

.quick-view {
  width: min(860px, calc(100vw - 28px));
  padding: 0;
  overflow: visible;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-view::backdrop {
  background: rgba(10, 18, 17, 0.48);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
}

.modal-grid .product-media {
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
}

.modal-copy {
  padding: 34px;
}

.modal-copy h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.modal-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.modal-actions {
  margin-top: 18px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

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

@media (max-width: 1050px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .product-grid,
  .process-grid,
  .info-grid,
  .info-grid.three,
  .timeline,
  .contact-methods,
  .policy-grid,
  .review-grid,
  .quick-buy-grid,
  .category-strip,
  .elite-trust-section,
  .elite-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .brand small {
    display: none;
  }

  .shop-toolbar,
  .catalog-layout,
  .feature-band,
  .visit-section,
  .modal-grid,
  .page-hero,
  .quality-hero,
  .about-hero,
  .comparison-band,
  .story-section,
  .wide-cta,
  .contact-layout,
  .checkout-layout,
  .seo-content,
  .site-footer,
  .conversion-strip,
  .payment-section,
  .elite-trust-section,
  .concierge-section,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .mobile-nav-toggle,
  .mobile-nav-panel:not([hidden]) {
    display: grid;
  }

  .mobile-buy-bar {
    display: grid;
  }

  .whatsapp-float {
    display: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .wide-cta .primary-button {
    justify-self: start;
  }

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

  .filters {
    position: static;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 76px;
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .cart-button span {
    display: none;
  }

  .hero-section {
    gap: 18px;
    padding: 24px 14px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 12.6vw, 4.35rem);
    line-height: 0.98;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .primary-button,
  .secondary-button,
  .chip,
  .cart-button {
    min-height: 48px;
  }

  .trust-strip,
  .product-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 14px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-panel {
    padding: 14px;
  }

  .payment-readiness {
    gap: 6px;
  }

  .payment-readiness span {
    flex-basis: 100%;
  }

  .payment-readiness strong {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .shop-toolbar,
  .catalog-layout,
  .feature-band,
  .process-section,
  .visit-section,
  .conversion-strip,
  .elite-trust-section,
  .quick-buy-section,
  .page-hero,
  .info-grid-section,
  .timeline-section,
  .story-section,
  .comparison-band,
  .wide-cta,
  .contact-layout,
  .checkout-layout,
  .faq-list,
  .policy-content,
  .review-section,
  .seo-content,
  .payment-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .conversion-strip {
    margin-right: 14px;
    margin-left: 14px;
  }

  .category-strip {
    margin-right: 14px;
    margin-left: 14px;
  }

  .catalog-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card p,
  .quick-buy-card p {
    min-height: 0;
  }

  .product-content,
  .quick-buy-card > div {
    padding: 14px;
  }

  .product-topline {
    align-items: start;
    flex-direction: column;
  }

  .product-media {
    aspect-ratio: 1 / 0.78;
  }

  .category-strip a,
  .trust-strip div {
    padding: 13px;
  }

  .sort-control {
    justify-content: space-between;
  }

  .process-grid article,
  .info-grid article,
  .timeline article {
    min-height: 190px;
  }

  .info-grid,
  .info-grid.three,
  .timeline,
  .contact-methods,
  .policy-grid,
  .review-grid,
  .quick-buy-grid,
  .category-strip,
  .elite-trust-grid {
    grid-template-columns: 1fr;
  }

  .detail-actions,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    min-height: 340px;
  }

  .checkout-item {
    grid-template-columns: 60px 1fr;
  }

  .checkout-item b {
    grid-column: 2;
  }

  .quick-actions,
  .card-actions {
    grid-template-columns: 1fr;
  }

  .quick-actions .primary-button,
  .quick-actions .secondary-button,
  .card-actions .primary-button,
  .card-actions .secondary-button {
    min-height: 48px;
  }

  .card-actions .icon-button {
    width: 100%;
    border-radius: var(--radius);
  }

  .modal-grid .product-media {
    min-height: 300px;
  }

  .modal-copy {
    padding: 24px;
  }
}

/* Modern premium storefront refresh */
:root {
  --ink: #101816;
  --muted: #66716d;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --line: #e5e9e4;
  --turquoise: #00b8b0;
  --turquoise-deep: #006f6b;
  --gold: #c7a052;
  --charcoal: #101816;
  --shadow: 0 18px 48px rgba(16, 24, 22, 0.08);
  --radius: 8px;
}

body {
  background: var(--paper);
}

h1,
h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

h1 {
  font-size: 5.4rem;
  line-height: 0.92;
}

h2 {
  font-size: 3rem;
  line-height: 1;
}

.topbar {
  margin: 10px clamp(12px, 3vw, 34px) 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 233, 228, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 24, 22, 0.06);
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: #0f1d1a;
  border-radius: 8px;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  color: #7a837f;
}

.nav-links {
  gap: 8px;
  padding: 5px;
  background: #f3f5f1;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: var(--charcoal);
}

.cart-button,
.primary-button {
  background: #101816;
  box-shadow: none;
}

.cart-button {
  border-radius: 8px;
}

.secondary-button {
  background: #fff;
}

.primary-button,
.secondary-button {
  border-radius: 8px;
}

.hero-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: auto;
  padding-top: 42px;
  padding-bottom: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  max-width: 680px;
  font-size: 4.7rem;
  letter-spacing: 0;
}

.hero-lede,
.page-hero p:not(.eyebrow) {
  color: #4e5a56;
}

.payment-readiness strong,
.trust-strip div,
.category-strip a,
.filters,
.product-card,
.quick-buy-card,
.product-detail-copy,
.checkout-summary,
.checkout-form,
.inquiry-form,
.visit-card {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 14px 38px rgba(16, 24, 22, 0.06);
}

.trust-strip,
.category-strip,
.info-grid,
.timeline,
.process-grid {
  background: var(--line);
  border-color: var(--line);
}

.hero-visual,
.page-hero-media,
.feature-media,
.gallery-main,
.product-media,
.quick-buy-card img {
  background: #eef6f3;
}

.image-slot {
  border-color: var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-slot::before {
  display: none;
}

.hero-visual {
  min-height: 590px;
  border-radius: 8px;
}

.hero-visual img,
.feature-media img,
.media-tile img {
  object-position: center;
}

.hero-panel {
  right: clamp(36px, 7vw, 112px);
  bottom: 70px;
  width: min(430px, calc(100vw - 36px));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 58px rgba(16, 24, 22, 0.18);
}

.panel-heading {
  border-bottom-color: var(--line);
}

.panel-heading p,
.mini-products small {
  color: var(--muted);
}

.conversion-strip {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.conversion-strip span {
  color: var(--muted);
}

.conversion-strip .primary-button {
  color: #fff;
  background: var(--charcoal);
}

.real-media-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.72fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 14px;
  padding: 18px clamp(18px, 4vw, 54px) 26px;
}

.media-tile {
  position: relative;
  min-height: 250px;
  border-radius: 8px;
}

.media-tile.large {
  grid-row: span 2;
  min-height: 530px;
}

.media-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(16, 24, 22, 0.82));
  pointer-events: none;
}

.media-tile div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
}

.media-tile span,
.media-tile strong {
  display: block;
}

.media-tile span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-tile strong {
  max-width: 520px;
  font-size: clamp(1.15rem, 2vw, 2rem);
  line-height: 1.08;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.about-list span {
  padding: 14px;
  color: #101816;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 14px 38px rgba(16, 24, 22, 0.05);
}

.about-media-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 54px);
}

.about-media {
  min-height: 520px;
}

.about-media-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.elite-trust-grid article,
.concierge-section,
.process-section,
.comparison-band {
  background: #101816;
}

.elite-trust-grid article {
  min-height: 172px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.elite-trust-grid span {
  margin-top: 26px;
}

.concierge-section,
.process-section,
.comparison-band {
  color: #fff;
}

.shop-toolbar {
  align-items: center;
}

.shop-toolbar h2 {
  font-size: 2.35rem;
}

.search-field input,
.sort-control select {
  background: #fff;
  border-radius: 8px;
}

.catalog-layout {
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
}

.filters {
  top: 92px;
  padding: 16px;
}

.chip {
  border-radius: 8px;
  font-size: 0.84rem;
}

.chip.is-active {
  background: #101816;
  border-color: #101816;
}

.advisor-card {
  background: #101816;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(0, 184, 176, 0.42);
  box-shadow: 0 24px 62px rgba(16, 24, 22, 0.12);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
}

.product-media img {
  transition: transform 360ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card-badges span {
  padding: 6px 8px;
  color: #101816;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.product-content {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-topline {
  display: grid;
  gap: 10px;
}

.product-card h3 {
  font-size: 1.02rem;
  line-height: 1.35;
}

.price,
.price-stack strong {
  color: #006f6b;
  font-size: 1.02rem;
  font-weight: 900;
}

.price-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
}

.price-stack del {
  color: #8a928e;
  font-size: 0.86rem;
  font-weight: 700;
}

.product-meta {
  gap: 6px;
  margin: 0;
}

.product-meta span {
  color: #41504c;
  background: #f4f7f4;
  border-radius: 7px;
  font-size: 0.7rem;
}

.product-card p {
  display: -webkit-box;
  min-height: 64px;
  overflow: hidden;
  color: #63706c;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-actions {
  grid-template-columns: 1fr 1fr 52px;
  gap: 8px;
  margin-top: 0;
}

.card-actions .icon-button {
  width: 52px;
  height: 42px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.page-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  padding-top: 48px;
}

.page-hero h1 {
  font-size: 4.4rem;
}

.page-hero-media {
  min-height: 390px;
}

.product-detail-layout {
  grid-template-columns: minmax(340px, 1.05fr) minmax(320px, 0.75fr);
  gap: 28px;
  padding-top: 38px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
}

.gallery-main {
  grid-column: 2;
  grid-row: 1;
  min-height: 680px;
  border-radius: 8px;
}

.gallery-thumbs {
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 1fr;
  align-content: start;
  margin-top: 0;
}

.gallery-thumbs img {
  aspect-ratio: 1;
  border-radius: 8px;
}

.product-detail-copy {
  position: sticky;
  top: 94px;
  align-self: start;
  padding: 28px;
}

.product-detail-copy h1 {
  font-size: 2.85rem;
  line-height: 1.03;
}

.detail-price {
  color: #006f6b;
  font-size: 1.75rem;
}

.detail-badges span {
  border-radius: 8px;
}

.detail-specs div {
  align-items: center;
}

.quick-view {
  border-radius: 8px;
}

.mobile-buy-bar {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 -12px 34px rgba(16, 24, 22, 0.08);
}

.mobile-buy-bar a,
.mobile-buy-bar button {
  border-radius: 8px;
}

@media (max-width: 1050px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 3.75rem;
  }

  .hero-panel {
    right: auto;
    bottom: auto;
  }

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

  .product-detail-layout,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .real-media-strip {
    grid-template-columns: 1fr 1fr;
  }

  .about-media-section {
    grid-template-columns: 1fr;
  }

  .media-tile.large {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .gallery-main,
  .gallery-thumbs {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .product-detail-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .topbar {
    margin: 0;
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .hero-copy {
    padding: 22px;
  }

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

  .filters {
    position: static;
  }

  .real-media-strip {
    grid-template-columns: 1fr;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .media-tile.large {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  h1,
  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  h2,
  .shop-toolbar h2,
  .product-detail-copy h1 {
    font-size: 2rem;
    line-height: 1.06;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-copy {
    border-radius: 8px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .real-media-strip {
    padding-right: 14px;
    padding-left: 14px;
  }

  .media-tile,
  .media-tile.large {
    min-height: 260px;
  }

  .about-media-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .about-media {
    min-height: 320px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-media {
    aspect-ratio: 1 / 0.88;
  }

  .card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .card-actions .icon-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .product-detail-layout {
    padding-top: 18px;
  }

  .gallery-main {
    min-height: 420px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-detail-copy {
    padding: 18px;
  }
}

/* Premium finish pass */
html {
  background: #eef1ed;
}

body {
  color: #0d1715;
  background:
    linear-gradient(180deg, #eef4f1 0, #f8f8f4 360px, #f5f6f2 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 24, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 22, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 62%);
}

.site-shell {
  max-width: 1920px;
  margin: 0 auto;
}

.topbar {
  max-width: calc(100vw - 24px);
}

.brand strong {
  letter-spacing: 0;
}

.eyebrow {
  color: #00635f;
}

.primary-button,
.cart-button,
.mobile-buy-bar .mobile-buy-primary {
  background: linear-gradient(135deg, #0d1715, #14322f 54%, #006f6b);
  box-shadow: 0 14px 30px rgba(0, 111, 107, 0.18);
}

.secondary-button,
.icon-button,
.search-field input,
.sort-control select {
  box-shadow: 0 8px 22px rgba(16, 24, 22, 0.045);
}

.primary-button:active,
.secondary-button:active,
.icon-button:active {
  transform: translateY(0);
}

.hero-section {
  gap: clamp(18px, 3vw, 38px);
}

.hero-copy {
  border-color: rgba(0, 111, 107, 0.12);
}

.hero-copy::after {
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 26px;
  content: "";
  background: linear-gradient(90deg, #006f6b, #c7a052);
  border-radius: 999px;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
  min-width: 168px;
}

.hero-visual img,
.page-hero-media img {
  filter: saturate(1.05) contrast(1.02);
}

.trust-strip {
  box-shadow: 0 18px 42px rgba(16, 24, 22, 0.055);
}

.trust-strip dt {
  color: #006f6b;
}

.real-media-strip {
  max-width: 1600px;
  margin: 0 auto;
}

.media-tile {
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(16, 24, 22, 0.1);
}

.elite-trust-section,
.keyword-shop-section,
.quick-buy-section,
.carat-guide-section,
.shop-toolbar,
.catalog-layout,
.feature-band,
.payment-section,
.visit-section,
.info-grid-section,
.story-section,
.about-media-section,
.comparison-band,
.policy-content,
.review-section,
.seo-content {
  max-width: 1680px;
  margin-right: auto;
  margin-left: auto;
}

.quick-buy-card,
.product-card,
.policy-card,
.review-card,
.seo-card,
.payment-grid article,
.quality-grid article,
.contact-methods article {
  border-color: rgba(0, 111, 107, 0.12);
}

.quick-buy-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-buy-card:hover {
  border-color: rgba(0, 111, 107, 0.35);
  box-shadow: 0 24px 62px rgba(16, 24, 22, 0.13);
  transform: translateY(-2px);
}

.quick-buy-card img {
  transition: transform 360ms ease;
}

.quick-buy-card:hover img {
  transform: scale(1.035);
}

.filters {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.filter-block strong {
  color: #0d1715;
}

.chip {
  box-shadow: 0 6px 16px rgba(16, 24, 22, 0.035);
}

.product-grid {
  align-items: stretch;
}

.product-card {
  min-height: 100%;
}

.product-card::after {
  display: block;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #006f6b, transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card-badges span:first-child {
  color: #fff;
  background: rgba(0, 111, 107, 0.92);
  border-color: rgba(0, 111, 107, 0.92);
}

.card-actions .primary-button,
.card-actions .secondary-button {
  font-size: 0.78rem;
}

.page-hero {
  max-width: 1680px;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 980px;
}

.product-detail-copy {
  border-color: rgba(0, 111, 107, 0.14);
}

.detail-specs strong {
  text-align: right;
}

.gallery-main,
.gallery-thumbs img {
  border-color: rgba(0, 111, 107, 0.12);
}

.site-footer {
  margin-top: 54px;
  color: #d9e4df;
  background: #0d1715;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer strong {
  color: #fff;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
  color: #8cf0eb;
}

.policy-content > p:not(.eyebrow),
.policy-content > h1 + p {
  max-width: 860px;
  color: #4e5a56;
  line-height: 1.75;
}

.policy-card h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
}

.policy-card a {
  color: #006f6b;
  font-weight: 800;
}

@media (max-width: 820px) {
  body::before {
    background-size: 34px 34px;
  }

  .topbar {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    min-width: 0;
  }

  .product-card {
    box-shadow: 0 14px 34px rgba(16, 24, 22, 0.08);
  }

  .policy-grid {
    gap: 10px;
  }
}

/* Premium ecommerce conversion pass */
:root {
  --premium-ink: #071311;
  --premium-soft: #f4f7f3;
  --premium-line: rgba(7, 19, 17, 0.1);
  --premium-teal: #007f7a;
  --premium-teal-dark: #053f3b;
  --premium-gold: #c59a45;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 127, 122, 0.13), transparent 25rem),
    radial-gradient(circle at 92% 18%, rgba(197, 154, 69, 0.14), transparent 22rem),
    linear-gradient(180deg, #f6f8f4 0, #eef3ef 42rem, #f8f8f3 100%);
}

.topbar {
  top: 12px;
  width: min(1680px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(7, 19, 17, 0.1);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand small {
  max-width: 168px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  padding: 0 10px;
}

.cart-button,
.primary-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-button,
.secondary-button {
  min-height: 46px;
  justify-content: center;
}

.secondary-button {
  color: #0b2522;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 127, 122, 0.18);
}

.hero-section {
  position: relative;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  max-width: 1680px;
  padding-top: clamp(28px, 5vw, 72px);
  isolation: isolate;
}

.hero-section::before {
  position: absolute;
  top: 44px;
  right: clamp(16px, 4vw, 82px);
  bottom: 34px;
  left: clamp(16px, 4vw, 82px);
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(7, 19, 17, 0.08);
}

.hero-copy {
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px rgba(7, 19, 17, 0.12);
}

.hero-copy h1 {
  max-width: 760px;
  color: var(--premium-ink);
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  line-height: 0.91;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: #4c5b57;
  font-size: 1.05rem;
  line-height: 1.8;
}

.payment-readiness {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
}

.payment-readiness span,
.payment-readiness strong {
  min-height: 34px;
  padding: 8px 12px;
  background: rgba(245, 248, 245, 0.9);
  border: 1px solid rgba(7, 19, 17, 0.08);
  border-radius: 8px;
  font-size: 0.78rem;
}

.payment-readiness strong {
  color: #053f3b;
  background: rgba(0, 127, 122, 0.09);
  border-color: rgba(0, 127, 122, 0.16);
}

.limited-offer-card {
  max-width: 620px;
  margin: 22px 0;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 246, 210, 0.88), rgba(255, 255, 255, 0.82)),
    #fff;
  border: 1px solid rgba(197, 154, 69, 0.32);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(123, 86, 20, 0.1);
}

.limited-offer-card span {
  display: block;
  margin-bottom: 6px;
  color: #7a5a18;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.limited-offer-card strong {
  display: block;
  color: #071311;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.limited-offer-card p {
  margin: 8px 0 0;
  color: #5b574b;
  line-height: 1.6;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
  background: rgba(7, 19, 17, 0.08);
  border: 1px solid rgba(7, 19, 17, 0.08);
  border-radius: 8px;
}

.trust-strip div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.hero-visual {
  min-height: clamp(520px, 63vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(7, 19, 17, 0.16);
}

.hero-visual::after,
.media-tile::after,
.quick-buy-card::after,
.product-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 19, 17, 0.54));
}

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

.hero-panel {
  max-width: 360px;
  background: rgba(7, 19, 17, 0.84);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 74px rgba(7, 19, 17, 0.28);
  backdrop-filter: blur(18px);
}

.hero-panel strong,
.hero-panel p {
  color: #fff;
}

.hero-panel small {
  color: rgba(255, 255, 255, 0.72);
}

.conversion-strip {
  background: #071311;
  border: 0;
  box-shadow: 0 24px 72px rgba(7, 19, 17, 0.22);
}

.conversion-strip strong {
  color: #fff;
}

.conversion-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.conversion-strip .primary-button {
  color: #071311;
  background: linear-gradient(135deg, #e9cf86, #fff1bd);
  box-shadow: none;
}

.shipping-clarity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 54px) clamp(24px, 5vw, 54px);
}

.shipping-clarity article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 111, 107, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 24, 22, 0.07);
}

.shipping-clarity span {
  display: block;
  margin-bottom: 8px;
  color: #006f6b;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shipping-clarity strong {
  display: block;
  color: #071311;
  font-size: 1.08rem;
}

.shipping-clarity p {
  margin: 8px 0 0;
  color: #5a6965;
  line-height: 1.6;
}

.real-media-strip {
  gap: 14px;
}

.media-tile {
  overflow: hidden;
  border-radius: 8px;
}

.media-tile img {
  transition: transform 520ms ease;
}

.media-tile:hover img {
  transform: scale(1.04);
}

.elite-trust-section,
.concierge-section,
.keyword-shop-section,
.quick-buy-section,
.carat-guide-section,
.shop-toolbar,
.catalog-layout,
.feature-band,
.process-section,
.payment-section,
.visit-section {
  padding-right: clamp(16px, 4vw, 54px);
  padding-left: clamp(16px, 4vw, 54px);
}

.elite-trust-section,
.concierge-section,
.feature-band,
.payment-section,
.visit-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(7, 19, 17, 0.08);
  backdrop-filter: blur(12px);
}

.elite-trust-grid article,
.concierge-steps article,
.process-grid article,
.payment-grid article,
.quality-grid article,
.advisor-card,
.filters {
  border: 1px solid rgba(7, 19, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(7, 19, 17, 0.055);
}

.category-strip {
  max-width: 1680px;
  gap: 10px;
}

.category-strip a {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  background:
    linear-gradient(135deg, rgba(7, 19, 17, 0.88), rgba(0, 127, 122, 0.78)),
    #071311;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 19, 17, 0.12);
}

.category-strip a::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.55);
  content: "View";
  font-size: 0.78rem;
  font-weight: 800;
}

.category-strip strong,
.category-strip span {
  color: #fff;
}

.quick-buy-grid {
  gap: 14px;
}

.quick-buy-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 58px rgba(7, 19, 17, 0.095);
}

.quick-buy-card img {
  height: 238px;
}

.quick-buy-card > div {
  padding: 20px;
}

.carat-guide-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding-top: 26px;
  padding-bottom: 12px;
}

.carat-guide-copy {
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 19, 17, 0.94), rgba(0, 127, 122, 0.84)),
    #071311;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 19, 17, 0.16);
}

.carat-guide-copy .eyebrow,
.carat-guide-copy h2,
.carat-guide-copy p {
  color: #fff;
}

.carat-guide-copy p:last-child {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

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

.carat-guide-grid a {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(7, 19, 17, 0.085);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.carat-guide-grid a:hover {
  border-color: rgba(0, 127, 122, 0.24);
  box-shadow: 0 28px 76px rgba(7, 19, 17, 0.13);
  transform: translateY(-3px);
}

.carat-guide-grid span {
  width: fit-content;
  padding: 7px 10px;
  color: #006f6b;
  background: rgba(0, 127, 122, 0.08);
  border: 1px solid rgba(0, 127, 122, 0.12);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.carat-guide-grid strong {
  display: block;
  margin-top: 18px;
  color: #071311;
  font-size: 1.05rem;
  line-height: 1.25;
}

.carat-guide-grid p {
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.shop-toolbar {
  align-items: end;
  padding-top: 48px;
}

.shop-toolbar h2 {
  color: #071311;
}

.search-field {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(7, 19, 17, 0.08);
  box-shadow: 0 16px 44px rgba(7, 19, 17, 0.07);
}

.catalog-layout {
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
}

.filters {
  top: 92px;
  padding: 18px;
}

.product-grid {
  gap: 16px;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(7, 19, 17, 0.095);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(0, 127, 122, 0.25);
  box-shadow: 0 30px 82px rgba(7, 19, 17, 0.15);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.product-media img {
  transition: transform 520ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-media-glass {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 10px 12px;
  color: #fff;
  background: rgba(7, 19, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 19, 17, 0.22);
  backdrop-filter: blur(12px);
}

.product-media-glass span,
.product-media-glass strong {
  display: block;
  color: #fff;
  line-height: 1.1;
}

.product-media-glass span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-media-glass strong {
  font-size: 0.82rem;
}

.product-content {
  padding: 18px;
}

.product-topline {
  gap: 12px;
}

.product-card h3 {
  font-size: 1.04rem;
  line-height: 1.25;
}

.price,
.price-stack strong {
  color: #006f6b;
  white-space: nowrap;
}

.product-meta {
  gap: 6px;
}

.product-meta span,
.proof-row span,
.detail-badges span {
  border-radius: 8px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.proof-row span {
  padding: 6px 8px;
  color: #31524d;
  background: rgba(0, 127, 122, 0.08);
  border: 1px solid rgba(0, 127, 122, 0.12);
  font-size: 0.68rem;
  font-weight: 800;
}

.card-actions {
  gap: 8px;
  margin-top: 16px;
}

.card-actions .primary-button,
.card-actions .secondary-button {
  min-height: 42px;
}

.mobile-buy-bar {
  right: 10px;
  bottom: 10px;
  left: 10px;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 19, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(7, 19, 17, 0.18);
  backdrop-filter: blur(16px);
}

.mobile-buy-bar a,
.mobile-buy-bar button {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
}

.whatsapp-float {
  right: 18px;
  bottom: 92px;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 127, 122, 0.22);
}

@media (max-width: 1050px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .carat-guide-section {
    grid-template-columns: 1fr;
  }

  .hero-section::before {
    inset: 22px 10px 20px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-panel {
    max-width: none;
  }

  .keyword-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    top: 0;
    width: 100%;
    max-width: none;
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .brand small {
    max-width: 128px;
  }

  .hero-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-copy {
    padding: 22px;
  }

  .trust-strip,
  .catalog-layout,
  .keyword-shop-grid,
  .carat-guide-grid,
  .shipping-clarity {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    align-items: stretch;
  }

  .quick-buy-card img {
    height: 220px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 76px;
  }

  .header-actions {
    gap: 6px;
  }

  .currency-select {
    gap: 0;
    min-width: 76px;
    padding: 4px 3px 4px 8px;
  }

  .currency-select span {
    display: none;
  }

  .currency-select select {
    min-height: 34px;
    padding-left: 2px;
    font-size: 0.78rem;
  }

  .cart-button span {
    display: none;
  }

  .cart-button {
    padding: 0 7px;
  }

  .hero-copy h1,
  h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-lede {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .payment-readiness strong,
  .payment-readiness span {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-visual {
    min-height: 390px;
  }

  .elite-trust-section,
  .concierge-section,
  .feature-band,
  .payment-section,
  .visit-card {
    border-radius: 8px;
  }

  .category-strip {
    grid-template-columns: 1fr 1fr;
  }

  .category-strip a {
    min-height: 104px;
    padding: 16px;
  }

  .product-media-glass {
    right: 10px;
    bottom: 10px;
  }

  .proof-row {
    display: none;
  }

  .whatsapp-float {
    display: none;
  }
}

/* Final storefront polish: fixes contrast, hierarchy, and old marketplace feel. */
body {
  color: #111b19;
  background:
    linear-gradient(180deg, rgba(0, 127, 122, 0.08), transparent 360px),
    #f6f8f4;
}

.topbar {
  top: 12px;
  max-width: calc(100% - 40px);
  margin: 12px auto 0;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 19, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 19, 17, 0.11);
}

.brand small {
  max-width: 180px;
  overflow: hidden;
  color: #6b7772;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  background: #f4f7f4;
}

.hero-section {
  grid-template-columns: minmax(420px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(18px, 3vw, 38px);
  max-width: 1680px;
  min-height: auto;
  padding-top: clamp(40px, 6vw, 86px);
  padding-bottom: clamp(44px, 7vw, 90px);
  overflow: visible;
}

.hero-section::before {
  display: none;
}

.hero-copy {
  position: relative;
  align-self: stretch;
  max-width: none;
  z-index: 4;
  padding: clamp(28px, 4.2vw, 58px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 19, 17, 0.97), rgba(0, 88, 84, 0.92)),
    #071311;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 82px rgba(7, 19, 17, 0.22);
}

.hero-copy .eyebrow {
  color: #7ee7df;
}

.hero-copy h1 {
  max-width: 720px;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.75rem, 4.15vw, 4.55rem);
  font-weight: 900;
  line-height: 1.02;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.75;
}

.hero-copy .secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-copy .primary-button {
  color: #071311;
  background: linear-gradient(135deg, #f0d27e, #fff2bf);
}

.limited-offer-card {
  display: none;
}

.limited-offer-card span {
  color: #f5d77e;
}

.limited-offer-card strong,
.limited-offer-card p {
  color: #fff;
}

.limited-offer-card p {
  color: rgba(255, 255, 255, 0.72);
}

.payment-readiness span,
.payment-readiness strong {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-copy .payment-readiness {
  display: none;
}

.payment-readiness strong {
  color: #c7fff8;
}

.hero-copy .hero-actions {
  position: relative;
  z-index: 2;
}

.hero-copy .hero-actions .primary-button,
.hero-copy .hero-actions .secondary-button {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.hero-copy .trust-strip {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-copy .trust-strip div {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.hero-copy .trust-strip dt {
  color: #80f2ea;
}

.hero-copy .trust-strip dd {
  color: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative !important;
  z-index: 1;
  min-height: clamp(520px, 50vw, 720px);
  border: 0;
  box-shadow: 0 30px 86px rgba(7, 19, 17, 0.18);
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  display: none !important;
  content: none !important;
}

.hero-panel {
  z-index: 5;
  right: clamp(28px, 5vw, 76px);
  bottom: clamp(62px, 7vw, 108px);
  background: rgba(7, 19, 17, 0.88);
}

.conversion-strip {
  width: calc(100% - clamp(32px, 8vw, 108px));
  max-width: 1680px;
  margin: 0 auto;
  border-radius: 8px;
}

.shipping-clarity {
  padding-top: 14px;
}

.elite-trust-section {
  color: #101816;
  background: #fff;
}

.elite-trust-section h2,
.elite-trust-section p,
.elite-trust-section .eyebrow {
  color: inherit;
}

.concierge-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 19, 17, 0.96), rgba(0, 92, 88, 0.9)),
    #071311;
  border: 0;
  box-shadow: 0 28px 86px rgba(7, 19, 17, 0.18);
}

.concierge-section h2,
.concierge-section p,
.concierge-steps strong,
.concierge-steps p {
  color: #fff;
}

.concierge-section p,
.concierge-steps p {
  color: rgba(255, 255, 255, 0.74);
}

.concierge-section .primary-button {
  color: #071311;
  background: linear-gradient(135deg, #f0d27e, #fff2bf);
}

.concierge-steps article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.category-strip,
.keyword-shop-grid,
.quick-buy-grid,
.carat-guide-grid,
.product-grid {
  align-items: stretch;
}

.category-strip a,
.keyword-shop-grid a {
  border-radius: 8px;
}

.shop-toolbar h2,
.section-heading h2,
.feature-copy h2,
.payment-section h2,
.visit-section h2 {
  color: #071311;
}

@media (max-width: 1050px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: -18px;
  }
}

@media (max-width: 820px) {
  .topbar {
    top: 0;
    max-width: none;
    margin: 0;
    border-radius: 0;
  }

  .hero-section {
    padding-top: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.65rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .concierge-section,
  .elite-trust-section,
  .keyword-shop-section,
  .quick-buy-section,
  .carat-guide-section,
  .shop-toolbar,
  .catalog-layout,
  .feature-band,
  .payment-section,
  .visit-section {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/* Premium storefront rescue: cleaner hierarchy and no low-contrast overlays. */
.hero-section {
  align-items: stretch;
  padding-top: clamp(54px, 7vw, 98px);
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(245, 250, 248, 0.98), rgba(246, 248, 244, 0.98)),
    #f6f8f4 !important;
}

.hero-section::before,
.hero-section::after,
.hero-copy::after {
  display: none !important;
  content: none !important;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(600px, 58vw, 760px);
  isolation: isolate;
}

.hero-copy h1 {
  max-width: 680px;
  text-wrap: balance;
}

.hero-copy .hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero-copy .hero-actions .primary-button,
.hero-copy .hero-actions .secondary-button {
  min-width: 172px;
  min-height: 50px;
  font-size: 0.98rem;
}

.hero-copy .hero-actions .secondary-button {
  color: #eafffb;
  background: rgba(255, 255, 255, 0.1);
}

.hero-copy .trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin-top: 34px;
  overflow: visible;
  background: transparent;
  border: 0;
}

.hero-copy .trust-strip div {
  padding: 16px;
  color: #10231f;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero-copy .trust-strip dt {
  color: #007f78 !important;
  font-size: 1.35rem;
}

.hero-copy .trust-strip dd {
  color: #3d514d !important;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  min-height: clamp(600px, 54vw, 720px);
  place-items: center;
  background: #fff;
  border: 1px solid rgba(7, 19, 17, 0.06);
  isolation: isolate;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover !important;
  object-position: center 20%;
  background: #fff;
  filter: saturate(1.06) contrast(1.03);
  box-sizing: border-box;
  transform: scale(1.1);
}

.hero-panel {
  right: clamp(18px, 3vw, 44px);
  top: clamp(18px, 3vw, 44px);
  bottom: auto;
  max-width: 380px;
  color: #10231f;
  background: #fff;
  border: 1px solid rgba(0, 127, 122, 0.14);
  box-shadow: 0 22px 58px rgba(7, 19, 17, 0.16);
  backdrop-filter: blur(14px);
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-section > .hero-panel {
  position: absolute;
  z-index: 3;
}

.conversion-strip {
  position: relative;
  z-index: 1;
}

.hero-panel strong,
.hero-panel p,
.hero-panel small {
  color: #10231f;
}

.hero-panel small {
  color: #4c615d;
}

.panel-heading {
  border-bottom-color: rgba(7, 19, 17, 0.12);
}

.panel-heading p {
  color: #007f78;
}

.mini-products article {
  padding: 10px;
  background: #f4fbf9;
  border: 1px solid rgba(0, 127, 122, 0.12);
  border-radius: 8px;
}

.conversion-strip {
  margin-top: 0;
}

.elite-trust-section,
.concierge-section,
.category-strip,
.keyword-shop-section,
.quick-buy-section,
.carat-guide-section {
  width: calc(100% - clamp(32px, 8vw, 108px));
  max-width: 1680px;
}

.elite-trust-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 250, 248, 0.96)),
    #fff;
  border: 1px solid rgba(0, 127, 122, 0.1);
  box-shadow: 0 20px 64px rgba(7, 19, 17, 0.08);
}

.elite-trust-grid article {
  color: #10231f;
  background: #fff;
  border: 1px solid rgba(0, 127, 122, 0.12);
}

.elite-trust-grid span {
  color: #526561;
}

.concierge-section {
  width: calc(100% - clamp(32px, 8vw, 108px));
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 214, 204, 0.16), transparent 28rem),
    linear-gradient(135deg, #071311 0%, #073a36 58%, #0d1715 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.concierge-section h2,
.concierge-section p,
.concierge-steps strong,
.concierge-steps p {
  color: #fff !important;
}

.concierge-section .eyebrow,
.concierge-steps span {
  color: #80f2ea !important;
}

.concierge-steps article {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.category-strip {
  gap: 12px;
  margin-top: 22px;
}

.category-strip a {
  color: #10231f;
  background: #fff;
  border: 1px solid rgba(0, 127, 122, 0.12);
  box-shadow: 0 16px 44px rgba(7, 19, 17, 0.07);
}

.category-strip a::after {
  display: none;
}

.category-strip strong {
  color: #10231f;
}

.category-strip span {
  color: #526561;
}

@media (max-width: 1050px) {
  .hero-copy,
  .hero-visual {
    min-height: auto;
  }

  .hero-panel {
    margin-top: 12px;
  }
}

@media (max-width: 820px) {
  .hero-section {
    padding-top: 20px;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .hero-copy .hero-actions,
  .hero-copy .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy .hero-actions {
    display: grid;
  }

  .hero-copy .trust-strip {
    display: grid;
  }

  .hero-visual img {
    padding: 18px;
  }

  .elite-trust-section,
  .concierge-section,
  .category-strip,
  .keyword-shop-section,
  .quick-buy-section,
  .carat-guide-section {
    width: calc(100% - 24px);
  }
}

/* 2026 storefront audit refresh: product-first hierarchy, gemstone photography, tighter cards. */
body {
  background:
    linear-gradient(180deg, rgba(238, 252, 250, 0.78), rgba(251, 250, 245, 0) 520px),
    #fbfaf5;
}

.modern-storefront-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr) !important;
  min-height: auto;
  padding: clamp(28px, 4vw, 62px) clamp(16px, 4vw, 54px) clamp(18px, 3vw, 42px) !important;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(229, 249, 246, 0.88) 52%, rgba(255, 255, 255, 0.96)),
    #f7fbf9 !important;
  border-bottom: 1px solid rgba(8, 112, 109, 0.12);
}

.modern-storefront-hero .hero-copy {
  min-height: clamp(430px, 44vw, 610px) !important;
  padding: clamp(18px, 3vw, 36px) 0;
}

.modern-storefront-hero .hero-copy h1 {
  max-width: 610px;
  color: #10231f;
  font-size: 5.2rem;
  line-height: 0.94;
}

.modern-storefront-hero .hero-lede {
  max-width: 580px;
  color: #465a56;
  font-size: 1.12rem;
}

.hero-product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 620px;
  margin-top: 24px;
}

.hero-product-pills a {
  min-height: 40px;
  padding: 10px 14px;
  color: #12302c;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 112, 109, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(7, 19, 17, 0.06);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-product-pills a.is-active {
  color: #10231f;
  background: #88fff3;
  border-color: #00a9a5;
}

.modern-storefront-hero .hero-actions {
  margin-top: 26px !important;
}

.modern-storefront-hero .secondary-button {
  color: #10231f !important;
  background: #fff !important;
  border-color: rgba(8, 112, 109, 0.18);
}

.modern-storefront-hero .hero-visual {
  min-height: clamp(430px, 43vw, 640px) !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 112, 109, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 19, 17, 0.12);
}

.modern-storefront-hero .hero-visual img {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center;
  transform: none !important;
}

.modern-storefront-hero .hero-panel {
  right: clamp(26px, 5vw, 74px);
  top: auto;
  bottom: clamp(26px, 5vw, 70px);
  max-width: 330px;
}

.priority-shop,
.priority-catalog {
  width: calc(100% - clamp(24px, 6vw, 90px)) !important;
  max-width: 1720px !important;
}

.priority-shop {
  align-items: end;
  margin: 18px auto 0 !important;
  padding: 18px clamp(14px, 2vw, 22px) 16px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 250, 247, 0.9)),
    #fff !important;
  border: 1px solid rgba(8, 112, 109, 0.12) !important;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 19, 17, 0.06) !important;
}

.priority-shop h2 {
  max-width: 780px;
  color: #10231f;
  font-size: 3rem !important;
  line-height: 1;
}

.priority-catalog {
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr) !important;
  gap: clamp(14px, 2vw, 28px) !important;
  margin-top: 12px !important;
  padding: clamp(12px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(8, 112, 109, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(7, 19, 17, 0.08);
}

.priority-catalog .filters {
  position: sticky;
  top: 88px;
  align-self: start;
  background:
    linear-gradient(180deg, rgba(16, 35, 31, 0.98), rgba(10, 55, 50, 0.96)),
    #10231f !important;
  border: 0;
  box-shadow: none;
}

.priority-catalog .filters strong,
.priority-catalog .filter-hint,
.priority-catalog .toggle-row {
  color: #fff !important;
}

.priority-catalog .filter-hint,
.priority-catalog .toggle-row {
  color: rgba(255, 255, 255, 0.72) !important;
}

.priority-catalog .chip {
  min-height: 38px;
  color: #f4fffc;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.priority-catalog .chip.is-active,
.priority-catalog .chip:hover,
.priority-catalog .chip:focus-visible {
  color: #10231f;
  background: #88fff3;
  border-color: #88fff3;
}

.priority-catalog .advisor-card {
  color: #10231f;
  background: #f6df9d;
  border: 0;
}

.priority-catalog .advisor-card span,
.priority-catalog .advisor-card strong {
  color: #10231f !important;
}

.priority-catalog .text-button {
  color: #10231f;
}

.catalog-meta {
  min-height: 42px;
  padding: 0 0 12px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 24px) !important;
}

.product-card {
  overflow: hidden;
  background: #fff !important;
  border: 1px solid rgba(8, 112, 109, 0.11) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 44px rgba(7, 19, 17, 0.08) !important;
}

.product-card:hover {
  border-color: rgba(0, 169, 165, 0.35) !important;
  box-shadow: 0 26px 70px rgba(7, 19, 17, 0.14) !important;
}

.product-media {
  aspect-ratio: 1 / 1.08;
  min-height: 0 !important;
  background:
    linear-gradient(140deg, rgba(233, 250, 247, 0.95), rgba(255, 255, 255, 0.96)),
    #fff !important;
}

.product-media img {
  width: 100%;
  height: 100%;
  padding: clamp(10px, 1.6vw, 18px);
  object-fit: contain !important;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.product-media-glass {
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: auto;
  max-width: none;
  padding: 10px 12px;
  background: rgba(16, 35, 31, 0.84) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.product-card-badges {
  top: 12px;
  left: 12px;
}

.product-card-badges span {
  color: #10231f !important;
  background: #fff !important;
  border-color: rgba(8, 112, 109, 0.12) !important;
}

.product-content {
  padding: 16px !important;
}

.product-card-kicker {
  gap: 6px;
  overflow: hidden;
}

.product-card-kicker span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-topline {
  align-items: flex-start;
  gap: 10px;
}

.product-topline h3 {
  min-height: 52px;
  color: #10231f;
  font-size: 1.05rem !important;
  line-height: 1.24;
}

.product-card .price,
.product-card .price-stack strong {
  color: #08706d;
  font-size: 1rem;
}

.product-card p {
  min-height: 58px;
  color: #526561 !important;
  font-size: 0.88rem !important;
  line-height: 1.48;
}

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

.proof-row span {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 6px;
  text-align: center;
  font-size: 0.68rem;
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 42px;
  gap: 8px;
}

.card-actions .primary-button,
.card-actions .secondary-button {
  min-width: 0 !important;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px !important;
  white-space: nowrap;
}

.card-actions .icon-button {
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: transparent;
}

.card-actions .icon-button::before {
  content: "i";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #10231f;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.conversion-strip,
.shipping-clarity,
.real-media-strip,
.elite-trust-section,
.concierge-section,
.category-strip,
.keyword-shop-section,
.quick-buy-section,
.carat-guide-section,
.feature-band,
.process-section,
.payment-section,
.visit-section {
  margin-top: clamp(28px, 5vw, 62px);
}

@media (max-width: 1050px) {
  .modern-storefront-hero {
    grid-template-columns: 1fr !important;
  }

  .modern-storefront-hero .hero-copy {
    min-height: auto !important;
  }

  .modern-storefront-hero .hero-panel {
    position: static !important;
    max-width: none;
    margin-top: 14px;
  }

  .priority-catalog {
    grid-template-columns: 1fr !important;
  }

  .priority-catalog .filters {
    position: static;
  }

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

@media (max-width: 720px) {
  .modern-storefront-hero {
    padding: 16px 12px 18px !important;
  }

  .modern-storefront-hero .hero-copy {
    padding: 10px 0 0;
  }

  .modern-storefront-hero .hero-copy h1 {
    font-size: 3rem;
  }

  .priority-shop h2 {
    font-size: 2.2rem !important;
  }

  .modern-storefront-hero .hero-actions,
  .priority-shop {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .modern-storefront-hero .hero-visual {
    min-height: 360px !important;
  }

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

  .hero-product-pills a {
    text-align: center;
  }

  .priority-shop,
  .priority-catalog {
    width: calc(100% - 24px) !important;
  }

  .priority-catalog {
    padding: 10px;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
  }

  .product-media {
    aspect-ratio: 1 / 0.92;
  }

  .product-card p {
    min-height: auto;
  }
}

/* Stronger 2026 brand mark: clearer gemstone identity and premium lockup. */
.brand {
  gap: 13px;
}

.brand-mark {
  width: 54px !important;
  height: 54px !important;
  padding: 3px;
  background:
    linear-gradient(135deg, #f4d989, #9d6f1d 48%, #f8df8c),
    #10231f !important;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 28px rgba(7, 19, 17, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.42) inset;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background: #0d1d19;
  border-radius: 6px;
}

.brand strong {
  color: #10231f;
  font-size: 1.08rem !important;
  font-weight: 900;
}

.brand small {
  color: #08706d !important;
  font-size: 0.74rem !important;
  font-weight: 800;
}

@media (max-width: 720px) {
  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 46px !important;
    height: 46px !important;
  }

  .brand strong {
    font-size: 0.98rem !important;
  }
}

/* SEO description and typography refresh. */
body,
button,
input,
select,
textarea {
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

h1,
h2,
.modal-copy h3,
.product-detail-copy h1,
.shop-toolbar h2,
.section-heading h2,
.feature-copy h2,
.payment-section h2,
.visit-section h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-weight: 700;
  letter-spacing: 0;
}

.product-card h3,
.brand strong,
.product-card-kicker,
.price,
.price-stack strong {
  font-family: Manrope, Inter, system-ui, sans-serif !important;
}

.product-description-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 253, 250, 0.98), rgba(255, 255, 255, 0.98)),
    #fff;
  border: 1px solid rgba(0, 169, 165, 0.16);
  border-radius: 8px;
  box-shadow: inset 4px 0 0 rgba(0, 169, 165, 0.34);
}

.product-description-card::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 169, 165, 0.18), rgba(191, 143, 47, 0.18)),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 169, 165, 0.12);
  border-radius: 50%;
}

.product-description-card span,
.description-kicker {
  color: #08706d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-description-card p {
  display: block !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding-right: 18px;
  overflow: visible !important;
  color: #384d49 !important;
  font-size: 0.88rem !important;
  font-weight: 500;
  line-height: 1.62 !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
}

.seo-description-box {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 250, 247, 0.96)),
    #fff;
  border: 1px solid rgba(0, 169, 165, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 19, 17, 0.09), inset 5px 0 0 rgba(191, 143, 47, 0.55);
}

.seo-description-box::before {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 169, 165, 0.16), rgba(191, 143, 47, 0.18)),
    rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 169, 165, 0.12);
  border-radius: 50%;
}

.seo-description-box > * {
  position: relative;
  z-index: 1;
}

.seo-description-box h2 {
  margin: 0;
  color: #10231f;
  font-size: 2.2rem;
  line-height: 1.04;
}

.seo-description-box p {
  margin: 0;
  color: #384d49;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.78;
}

.seo-description-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-description-box li {
  position: relative;
  min-height: 50px;
  padding: 12px 12px 12px 34px;
  color: #10231f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 169, 165, 0.13);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
}

.seo-description-box li::before {
  position: absolute;
  width: 8px;
  height: 8px;
  margin: 7px 0 0 -18px;
  content: "";
  background: #00a9a5;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 169, 165, 0.12);
}

.modal-description {
  min-height: 0;
  margin: 12px 0 16px;
}

@media (max-width: 820px) {
  .seo-description-box ul {
    grid-template-columns: 1fr;
  }

  .seo-description-box h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 720px) {
  .product-description-card {
    min-height: auto;
  }
}

/* Brand-first homepage redesign. */
.home-redesign,
.guide-page {
  background:
    linear-gradient(180deg, rgba(235, 252, 249, 0.82), rgba(251, 250, 245, 0) 520px),
    #fbfaf5;
}

.home-hero,
.guide-hero,
.why-rohi-section,
.visual-category-section,
.home-product-section,
.video-teaser-section,
.authenticity-section,
.collector-craft-section,
.review-proof-section,
.certification-section,
.home-faq-section,
.home-cta-section,
.guide-section {
  width: calc(100% - clamp(24px, 6vw, 90px));
  max-width: 1680px;
  margin: clamp(24px, 4vw, 58px) auto 0;
}

.home-hero,
.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: stretch;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 28, 24, 0.98), rgba(7, 74, 68, 0.96)),
    #10231f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 86px rgba(7, 19, 17, 0.16);
}

.home-hero h1,
.guide-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: 4.8rem;
  line-height: 0.96;
}

.home-hero p:not(.eyebrow),
.guide-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
}

.home-hero .eyebrow,
.guide-hero .eyebrow {
  color: #8efff4;
}

.home-hero-copy,
.guide-hero > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.home-hero-media,
.guide-hero-media {
  min-height: 440px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.home-hero-media img,
.guide-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
}

.home-trust-badges span {
  min-height: 44px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

.home-trust-badges span::before {
  margin-right: 8px;
  color: #8efff4;
  content: "✓";
}

.compact-heading h2,
.split-heading h2 {
  color: #10231f;
  font-size: 3rem;
  line-height: 1;
}

.compact-heading p:not(.eyebrow),
.split-heading p:not(.eyebrow) {
  max-width: 760px;
  color: #526561;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.trust-card-grid,
.review-proof-grid,
.comparison-grid,
.certification-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-card-grid article,
.review-proof-grid article,
.comparison-grid article,
.certification-points span {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(0, 169, 165, 0.13);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 19, 17, 0.06);
}

.trust-card-grid strong,
.review-proof-grid strong,
.comparison-grid strong,
.certification-points span {
  display: block;
  color: #10231f;
  font-weight: 900;
}

.trust-card-grid p,
.review-proof-grid p,
.comparison-grid p {
  margin: 8px 0 0;
  color: #526561;
  line-height: 1.62;
}

.visual-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.visual-category-grid a {
  display: grid;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0, 169, 165, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(7, 19, 17, 0.06);
}

.visual-category-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  background: #eef8f6;
  border-radius: 6px;
}

.visual-category-grid strong {
  min-height: 42px;
  color: #10231f;
  font-size: 0.92rem;
  font-weight: 900;
}

.home-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  margin-top: 16px;
}

.video-teaser-section,
.certification-section,
.home-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 4vw, 42px);
  color: #fff;
  background: linear-gradient(135deg, #071311, #074b45);
  border-radius: 8px;
}

.video-teaser-section h2,
.certification-section h2,
.home-cta-section h2 {
  color: #fff;
  font-size: 3rem;
}

.video-teaser-section p,
.certification-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.video-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px;
  min-width: min(460px, 42vw);
}

.video-thumb-grid a {
  min-height: 92px;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.video-thumb-grid span {
  display: block;
  color: #8efff4;
  font-size: 0.78rem;
  font-weight: 900;
}

.authenticity-grid,
.source-story-grid,
.collector-craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.authenticity-grid article,
.source-story-grid article,
.collector-craft-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 169, 165, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 19, 17, 0.07);
}

.authenticity-grid img,
.source-story-grid img,
.collector-craft-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
}

.authenticity-grid strong,
.authenticity-grid p,
.source-story-grid strong,
.source-story-grid p,
.collector-craft-grid strong,
.collector-craft-grid p {
  display: block;
  margin: 0;
  padding: 0 16px 16px;
}

.authenticity-grid strong,
.source-story-grid strong,
.collector-craft-grid strong {
  padding-top: 16px;
  color: #10231f;
  font-weight: 900;
}

.authenticity-grid p,
.source-story-grid p,
.collector-craft-grid p {
  color: #526561;
  line-height: 1.62;
}

.collector-craft-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collector-craft-grid img {
  aspect-ratio: 1 / 0.58;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.home-faq-grid details {
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(0, 169, 165, 0.13);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 19, 17, 0.05);
}

.home-faq-grid summary {
  color: #10231f;
  cursor: pointer;
  font-weight: 900;
}

.home-faq-grid p {
  margin: 10px 0 0;
  color: #526561;
  line-height: 1.68;
}

.guide-section {
  padding: clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 169, 165, 0.12);
  border-radius: 8px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.video-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 169, 165, 0.12);
  border-radius: 8px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-grid strong {
  display: block;
  padding: 14px;
  color: #10231f;
}

.certification-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 20px;
  align-items: center;
}

@media (max-width: 1100px) {
  .home-hero,
  .guide-hero,
  .video-teaser-section,
  .certification-section,
  .home-cta-section,
  .certification-detail {
    grid-template-columns: 1fr;
  }

  .visual-category-grid,
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .trust-card-grid,
  .review-proof-grid,
  .comparison-grid,
  .certification-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-hero,
  .guide-hero,
  .why-rohi-section,
  .visual-category-section,
  .home-product-section,
  .video-teaser-section,
  .authenticity-section,
  .collector-craft-section,
  .review-proof-section,
  .certification-section,
  .home-faq-section,
  .home-cta-section,
  .guide-section {
    width: calc(100% - 24px);
  }

  .home-hero,
  .guide-hero {
    padding: 18px;
  }

  .home-hero h1,
  .guide-hero h1 {
    font-size: 2.85rem;
  }

  .compact-heading h2,
  .split-heading h2,
  .video-teaser-section h2,
  .certification-section h2,
  .home-cta-section h2 {
    font-size: 2.2rem;
  }

  .home-hero-media,
  .guide-hero-media {
    min-height: 300px;
  }

  .home-trust-badges,
  .trust-card-grid,
  .review-proof-grid,
  .comparison-grid,
  .certification-points,
  .visual-category-grid,
  .home-product-grid,
  .authenticity-grid,
  .source-story-grid,
  .collector-craft-grid,
  .home-faq-grid,
  .video-grid,
  .video-thumb-grid {
    grid-template-columns: 1fr !important;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }
}

/* 9/10 conversion pass: minimal product cards, founder story, stronger proof. */
.brand-mark {
  width: 60px !important;
  height: 60px !important;
}

.home-hero-media img {
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card .product-media {
  aspect-ratio: 1 / 0.92 !important;
}

.product-card .product-media img {
  padding: 12px !important;
}

.product-card .product-content {
  display: grid;
  gap: 10px;
  padding: 14px !important;
}

.product-card .product-card-kicker {
  display: flex;
  gap: 6px;
}

.product-card .product-card-kicker span:first-child {
  display: none;
}

.product-card .product-card-kicker span {
  padding: 5px 8px;
  color: #08706d;
  background: rgba(0, 169, 165, 0.08);
  border: 1px solid rgba(0, 169, 165, 0.12);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.product-card .product-topline {
  display: grid !important;
  gap: 8px;
}

.product-card .product-topline h3 {
  min-height: 44px !important;
  margin: 0;
  font-size: 0.98rem !important;
  line-height: 1.28;
}

.product-card .price,
.product-card .price-stack strong {
  font-size: 1.08rem !important;
  font-weight: 900;
}

.product-card .product-description-card,
.product-card .proof-row,
.product-card .product-meta {
  display: none !important;
}

.product-card .card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 8px;
  margin-top: 2px;
}

.product-card .card-actions .primary-button,
.product-card .card-actions .secondary-button {
  min-height: 40px !important;
  padding: 9px 10px !important;
  font-size: 0.78rem;
}

.founder-story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  width: calc(100% - clamp(24px, 6vw, 90px));
  max-width: 1680px;
  margin: clamp(24px, 4vw, 58px) auto 0;
  padding: clamp(18px, 3vw, 34px);
  background: #fff;
  border: 1px solid rgba(0, 169, 165, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 19, 17, 0.08);
}

.founder-photo {
  overflow: hidden;
  border-radius: 8px;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.founder-story-section h2 {
  max-width: 760px;
  color: #10231f;
  font-size: 3rem;
  line-height: 1;
}

.founder-story-section p:not(.eyebrow) {
  max-width: 820px;
  color: #526561;
  font-size: 1rem;
  line-height: 1.78;
}

.enhanced-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enhanced-review-grid article {
  overflow: hidden;
  padding: 0;
}

.enhanced-review-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.58;
  object-fit: cover;
  background: #eef8f6;
}

.enhanced-review-grid strong,
.enhanced-review-grid p {
  padding-right: 16px;
  padding-left: 16px;
}

.enhanced-review-grid strong {
  padding-top: 16px;
}

.enhanced-review-grid p {
  padding-bottom: 16px;
}

.certification-timeline-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.46fr) minmax(320px, 0.9fr) auto;
}

.certification-image-stack {
  display: grid;
  gap: 10px;
}

.certification-image-stack img {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.certification-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.certification-timeline article {
  min-height: 112px;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.certification-timeline span {
  display: block;
  color: #8efff4;
  font-size: 0.76rem;
  font-weight: 900;
}

.certification-timeline strong {
  display: block;
  margin-top: 18px;
  font-size: 0.95rem;
}

.whatsapp-float {
  right: 18px !important;
  bottom: 24px !important;
  display: grid !important;
  min-width: 238px;
  min-height: 58px;
  align-content: center;
  justify-content: start;
  padding: 10px 16px !important;
  color: #fff !important;
  background: #128c7e !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px !important;
  box-shadow: 0 18px 50px rgba(18, 140, 126, 0.34) !important;
  text-align: left;
}

.whatsapp-float strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.1;
}

.whatsapp-float span {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0.9;
}

@media (max-width: 1100px) {
  .founder-story-section,
  .certification-timeline-section {
    grid-template-columns: 1fr;
  }

  .certification-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .brand-mark {
    width: 48px !important;
    height: 48px !important;
  }

  .founder-story-section {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .founder-story-section h2 {
    font-size: 2.2rem;
  }

  .certification-timeline,
  .enhanced-review-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 12px !important;
    bottom: 86px !important;
    left: 12px;
    width: auto;
    min-width: 0;
  }
}

/* 2026 luxury polish: Playfair headings, Inter body, gold trust accents. */
:root {
  --luxury-gold: #c9a86a;
  --luxury-emerald: #061512;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

h1,
h2,
.modal-copy h3,
.product-detail-copy h1,
.shop-toolbar h2,
.section-heading h2,
.feature-copy h2,
.payment-section h2,
.visit-section h2,
.founder-story-section h2,
.home-hero h1,
.guide-hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif !important;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-mark {
  border-color: rgba(201, 168, 106, 0.72) !important;
  border-radius: 8px !important;
}

.since-pill,
.header-contact-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #15312c;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 168, 106, 0.42);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.since-pill {
  color: #7a5a22;
  background: rgba(201, 168, 106, 0.14);
}

.header-contact-link.whatsapp {
  color: #fff;
  background: #0f7f73;
  border-color: rgba(15, 127, 115, 0.38);
}

.header-contact-link:hover,
.header-contact-link:focus-visible {
  color: #061512;
  background: var(--luxury-gold);
}

.home-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1.18fr);
  min-height: clamp(620px, 72vh, 820px);
  padding: clamp(26px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 28%, rgba(20, 207, 196, 0.22), transparent 32%),
    linear-gradient(135deg, #03110f 0%, #061512 44%, #0b332e 100%);
  border-color: rgba(201, 168, 106, 0.28);
  box-shadow: 0 34px 100px rgba(7, 19, 17, 0.24);
}

.home-hero h1 {
  max-width: 860px;
  font-size: clamp(3.3rem, 5.9vw, 6.7rem);
  line-height: 0.9;
}

.home-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
}

.home-hero-media {
  min-height: clamp(500px, 58vw, 710px);
  background: #071815;
  border-color: rgba(201, 168, 106, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 26px 80px rgba(0, 0, 0, 0.28);
}

.home-hero-media img {
  transform: scale(1.04);
  transform-origin: center;
  filter: saturate(1.14) contrast(1.08);
}

.home-trust-badges span {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(201, 168, 106, 0.32);
}

.home-trust-badges span::before,
.video-thumb-grid span,
.certification-timeline span,
.eyebrow {
  color: var(--luxury-gold) !important;
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  border-color: var(--luxury-gold) !important;
  box-shadow: 0 14px 32px rgba(201, 168, 106, 0.22);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: calc(100% - clamp(24px, 6vw, 90px));
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(201, 168, 106, 0.34);
  border: 1px solid rgba(201, 168, 106, 0.34);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.stats-strip article {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: #fffdf5;
  text-align: center;
}

.stats-strip strong {
  color: #09201c;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.stats-strip span {
  color: #65736f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-teaser-section {
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.75fr) minmax(260px, 0.55fr);
  background:
    radial-gradient(circle at 58% 8%, rgba(201, 168, 106, 0.2), transparent 28%),
    linear-gradient(135deg, #061512, #073f39);
  border: 1px solid rgba(201, 168, 106, 0.2);
}

.home-video-frame {
  overflow: hidden;
  background: #020a09;
  border: 1px solid rgba(201, 168, 106, 0.28);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.home-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.home-product-grid .product-card .product-card-kicker span:last-child,
.home-product-grid .product-card .card-actions .secondary-button {
  display: none !important;
}

.home-product-grid .product-card .card-actions {
  grid-template-columns: minmax(0, 1fr) !important;
}

.home-product-grid .product-card .card-actions .primary-button {
  min-height: 42px !important;
}

.product-card h3,
.product-card .product-card-kicker,
.product-card .price,
.product-card .price-stack strong {
  font-family: Inter, system-ui, sans-serif !important;
}

.enhanced-review-grid img[src*="rohi-luxury-packaging-certificate"] {
  object-position: center;
}

@media (max-width: 1180px) {
  .home-hero,
  .video-teaser-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero-media {
    min-height: 420px;
  }

  .video-thumb-grid {
    min-width: 0;
  }

  .header-contact-link {
    display: none;
  }
}

@media (max-width: 820px) {
  .since-pill {
    display: none;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 24px);
  }
}

@media (max-width: 620px) {
  .home-hero {
    padding: 22px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .home-hero-media {
    min-height: 330px;
  }

  .stats-strip article {
    min-height: 92px;
    padding: 14px 10px;
  }

  .video-teaser-section {
    padding: 22px;
  }
}

/* Final 9.5 trust pass: minimal logo, clearer WhatsApp, reviews, and premium category labels. */
:root {
  --luxury-gold: #c8a66a;
}

.brand-mark {
  background: #061512 !important;
  border-color: rgba(200, 166, 106, 0.78) !important;
}

.visual-category-grid a {
  align-content: start;
  border-color: rgba(200, 166, 106, 0.2);
}

.visual-category-grid strong {
  min-height: 20px;
}

.visual-category-grid span {
  display: block;
  min-height: 34px;
  color: #65736f;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.video-teaser-section {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr) minmax(260px, 0.6fr);
}

.video-trust-list {
  display: grid;
  gap: 10px;
  min-width: min(320px, 32vw);
}

.video-trust-list span {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(200, 166, 106, 0.24);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

.video-trust-list span::before {
  color: var(--luxury-gold);
  content: "✓";
  font-weight: 900;
}

.review-stars {
  padding: 16px 16px 0;
  color: var(--luxury-gold);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.enhanced-review-grid .review-stars + strong {
  padding-top: 8px;
}

.enhanced-review-grid p {
  font-weight: 800;
}

.whatsapp-float {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  left: auto !important;
  z-index: 80 !important;
  min-width: 292px;
  min-height: 68px;
  padding: 12px 18px 12px 54px !important;
  background: linear-gradient(135deg, #128c7e, #0b6f65) !important;
  border: 2px solid rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 20px 54px rgba(18, 140, 126, 0.42), 0 0 0 1px rgba(200, 166, 106, 0.34) !important;
}

.whatsapp-float::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 24px;
  height: 24px;
  color: #fff;
  content: "WA";
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

.whatsapp-float strong {
  font-size: 0.98rem;
}

@media (max-width: 1180px) {
  .video-teaser-section {
    grid-template-columns: 1fr;
  }

  .video-trust-list {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 12px !important;
    bottom: 84px !important;
    left: 12px !important;
    width: auto;
    min-width: 0;
    padding-left: 48px !important;
  }
}

/* Reference-logo polish and final conversion spacing. */
.brand {
  gap: 10px;
}

.brand-mark {
  width: 56px !important;
  height: 56px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.brand-mark img {
  object-fit: contain !important;
}

.brand strong {
  color: #061512;
  font-size: 1.16rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--luxury-gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.26em;
}

.brand small::before,
.brand small::after {
  width: 22px;
  height: 1px;
  content: "";
  background: var(--luxury-gold);
}

.home-redesign > section:not(.home-hero):not(.stats-strip) {
  position: relative;
}

.home-redesign > section:not(.home-hero):not(.stats-strip)::before {
  position: absolute;
  top: -18px;
  left: 0;
  width: min(140px, 32vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--luxury-gold), rgba(200, 166, 106, 0));
}

.home-product-grid .product-card {
  grid-template-rows: auto 1fr;
}

.home-product-grid .product-card .product-media {
  aspect-ratio: 1 / 0.72 !important;
  background: linear-gradient(145deg, #061512, #0b302b) !important;
}

.home-product-grid .product-card .product-media img {
  padding: 9px !important;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-product-grid .product-card:hover .product-media img {
  transform: scale(1.05);
}

.home-product-grid .product-card .product-content {
  gap: 9px;
  padding: 16px !important;
}

.home-product-grid .product-card .product-topline h3 {
  min-height: 50px !important;
}

.header-contact-link.whatsapp {
  gap: 8px;
  background: #0f7f73;
}

.header-contact-link.whatsapp::before {
  content: "WA";
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 900;
}

@media (max-width: 720px) {
  .brand-mark {
    width: 48px !important;
    height: 48px !important;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    max-width: none;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .brand small::before,
  .brand small::after {
    width: 12px;
  }

  .home-product-grid .product-card .product-media {
    aspect-ratio: 1 / 0.78 !important;
  }
}

@media (max-width: 1180px) and (min-width: 721px) {
  .header-contact-link.whatsapp {
    display: inline-flex;
  }
}

/* Ivory luxury balance: keep emerald for hero/CTA, make commerce surfaces lighter. */
:root {
  --paper: #f6f3ee;
  --luxury-ivory: #f6f3ee;
  --luxury-card: #ffffff;
  --luxury-line: #e5ded3;
  --luxury-charcoal: #1f1f1f;
  --turquoise: #00afc4;
}

body,
.home-redesign,
.guide-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(246, 243, 238, 0) 420px),
    var(--luxury-ivory) !important;
}

.home-hero,
.video-teaser-section,
.certification-section,
.home-cta-section {
  background:
    radial-gradient(circle at 76% 20%, rgba(0, 175, 196, 0.18), transparent 30%),
    linear-gradient(135deg, #03110f, #063b36) !important;
}

.home-product-section,
.visual-category-section,
.why-rohi-section,
.authenticity-section,
.collector-craft-section,
.review-proof-section,
.home-faq-section,
.founder-story-section {
  background: transparent !important;
}

.trust-card-grid article,
.review-proof-grid article,
.comparison-grid article,
.visual-category-grid a,
.collector-craft-grid article,
.authenticity-grid article,
.home-faq-grid details,
.product-card {
  background: var(--luxury-card) !important;
  border: 1px solid var(--luxury-line) !important;
  box-shadow: 0 16px 44px rgba(31, 31, 31, 0.055) !important;
}

.visual-category-grid a:hover,
.product-card:hover,
.trust-card-grid article:hover,
.review-proof-grid article:hover {
  border-color: rgba(200, 166, 106, 0.62) !important;
  box-shadow: 0 22px 58px rgba(31, 31, 31, 0.085) !important;
}

.visual-category-grid a::after {
  width: 46px;
  height: 2px;
  content: "";
  background: #00afc4;
  border-radius: 999px;
}

.product-card::after {
  display: none !important;
}

.home-product-grid .product-card {
  overflow: hidden;
  border-radius: 8px;
}

.home-product-grid .product-card .product-media,
.product-card .product-media {
  background:
    linear-gradient(180deg, #ffffff, #f8f5ef) !important;
  border-bottom: 1px solid var(--luxury-line);
}

.home-product-grid .product-card .product-media img {
  padding: 10px !important;
  filter: saturate(1.05) contrast(1.02);
}

.product-card .product-card-badges span,
.product-card .product-card-kicker span {
  color: var(--luxury-charcoal) !important;
  background: #fbfaf7 !important;
  border-color: rgba(200, 166, 106, 0.38) !important;
}

.product-card .product-topline h3 a,
.product-card h3,
.product-card .price,
.product-card .price-stack strong {
  color: var(--luxury-charcoal) !important;
}

.home-product-grid .product-card .card-actions .primary-button {
  color: #fff !important;
  background: var(--luxury-charcoal) !important;
  border-color: var(--luxury-charcoal) !important;
}

.home-product-grid .product-card .card-actions .primary-button:hover,
.home-product-grid .product-card .card-actions .primary-button:focus-visible {
  color: var(--luxury-charcoal) !important;
  background: #ffffff !important;
  border-color: var(--luxury-gold) !important;
}

.stats-strip article {
  background: #ffffff !important;
}

.home-redesign > section:not(.home-hero):not(.stats-strip)::before {
  background: linear-gradient(90deg, var(--luxury-gold), rgba(200, 166, 106, 0)) !important;
}

@media (max-width: 720px) {
  .home-product-grid .product-card .product-media {
    background: #ffffff !important;
  }
}

/* Final homepage polish requested: emerald buttons, warm image slab, roomier product sections. */
.brand-mark {
  width: 64px !important;
  height: 64px !important;
}

.brand strong {
  font-size: 1.24rem;
}

.brand small {
  font-size: 0.72rem;
}

.home-product-section {
  margin-top: clamp(42px, 6vw, 86px) !important;
}

.home-product-section + .home-product-section,
.home-product-section + .video-teaser-section {
  margin-top: clamp(52px, 7vw, 104px) !important;
}

.home-product-grid .product-card .product-media,
.product-card .product-media {
  background: #f8f6f1 !important;
}

.home-product-grid .product-card .card-actions .primary-button {
  color: #fff !important;
  background: #063b36 !important;
  border-color: #063b36 !important;
}

.home-product-grid .product-card .card-actions .primary-button:hover,
.home-product-grid .product-card .card-actions .primary-button:focus-visible {
  color: #fff !important;
  background: #c8a66a !important;
  border-color: #c8a66a !important;
}

.visual-category-grid a {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visual-category-grid a::after {
  transition: width 180ms ease, background 180ms ease;
}

.visual-category-grid a:hover,
.visual-category-grid a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

.visual-category-grid a:hover::after,
.visual-category-grid a:focus-visible::after {
  width: 68px;
  background: #c8a66a;
}

.review-stars {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.enhanced-review-grid strong {
  color: #1f1f1f;
  font-size: 1rem;
  line-height: 1.35;
}

.enhanced-review-grid p {
  color: #6a6258;
}

@media (max-width: 720px) {
  .brand-mark {
    width: 54px !important;
    height: 54px !important;
  }

  .brand strong {
    font-size: 1.04rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .home-product-section {
    margin-top: 48px !important;
  }
}

/* Premium guided shop page polish. */
.shop-page-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 246, 241, 0.72)),
    #f8f6f1 !important;
  border: 1px solid #e5ded3 !important;
  box-shadow: 0 18px 54px rgba(31, 31, 31, 0.06) !important;
}

.shop-page-hero h1 {
  max-width: 840px;
  color: #1f1f1f;
  font-size: clamp(3.1rem, 6vw, 6.1rem);
  line-height: 0.92;
}

.shop-page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: #5f5a52;
  font-size: 1.08rem;
}

.shop-page-hero .page-hero-media {
  border: 1px solid #e5ded3;
  box-shadow: 0 18px 46px rgba(31, 31, 31, 0.08);
}

.shop-trust-strip,
.shop-chip-strip {
  width: calc(100% - clamp(24px, 6vw, 90px));
  max-width: 1680px;
  margin: clamp(18px, 3vw, 34px) auto 0;
}

.shop-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(200, 166, 106, 0.34);
  border: 1px solid rgba(200, 166, 106, 0.34);
  border-radius: 8px;
}

.shop-trust-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #1f1f1f;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.shop-trust-strip span::before {
  margin-right: 8px;
  color: #c8a66a;
  content: "✓";
}

.shop-chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e5ded3;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 31, 31, 0.045);
}

.shop-toolbar.compact {
  align-items: end;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.shop-toolbar h2 {
  color: #1f1f1f;
}

.catalog-layout {
  align-items: start;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.filters {
  position: sticky;
  top: 98px;
  background: #fff !important;
  border: 1px solid #e5ded3 !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 44px rgba(31, 31, 31, 0.06) !important;
}

.filter-block strong {
  color: #1f1f1f;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.filter-hint {
  color: #6a6258;
}

.chip {
  border-color: #e5ded3 !important;
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
  color: #fff !important;
  background: #063b36 !important;
  border-color: #063b36 !important;
}

.advisor-card {
  background: #f8f6f1 !important;
  border: 1px solid rgba(200, 166, 106, 0.42) !important;
  border-radius: 8px !important;
}

.catalog-meta {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e5ded3;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(31, 31, 31, 0.045);
}

.catalog-meta > span {
  color: #1f1f1f;
  font-weight: 900;
}

body:not(.home-redesign) .product-card .product-media {
  background: #f8f6f1 !important;
}

[data-products] .product-card .product-description-card,
[data-products] .product-card .proof-row,
[data-products] .product-card .product-meta {
  display: none !important;
}

[data-products] .product-card .card-actions .primary-button {
  color: #fff !important;
  background: #063b36 !important;
  border-color: #063b36 !important;
}

[data-products] .product-card .card-actions .primary-button:hover,
[data-products] .product-card .card-actions .primary-button:focus-visible {
  color: #fff !important;
  background: #c8a66a !important;
  border-color: #c8a66a !important;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.load-more-wrap [hidden] {
  display: none !important;
}

.wide-cta p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .filters {
    position: static;
  }

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

@media (max-width: 720px) {
  .shop-page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .shop-trust-strip,
  .shop-chip-strip {
    width: calc(100% - 24px);
  }

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