:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-soft: #181818;
  --surface: #f5f5f0;
  --surface-muted: #e8e5df;
  --text: #f5f5f0;
  --text-dark: #111111;
  --muted: #8a8580;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(17, 17, 17, 0.12);
  --gold: #c8a97e;
  --gold-strong: #b8925f;
  --success: #79d08a;
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.22);
  --container: 1400px;
  --section-space: clamp(72px, 10vw, 120px);
  --header-offset: 124px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

html,
body {
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(200, 169, 126, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.96) 0%, rgba(10, 10, 10, 0.94) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at 78% 20%, rgba(200, 169, 126, 0.05), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.03), transparent 26%);
}

html.reveal-enabled {
  scroll-behavior: smooth;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 300ms ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--gold);
  flex-wrap: wrap;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 auto;
  min-width: 0;
}

.brand--logo {
  gap: 16px;
  align-items: center;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 250ms ease, transform 250ms ease;
}

.brand-title {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.24);
}


.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: rgba(200, 169, 126, 0.72);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.site-nav a,
.nav-actions a {
  color: rgba(245, 245, 240, 0.78);
  font-size: 12px;
  padding: 10px 12px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-current,
.nav-actions a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.mobile-quick-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-icon-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.mobile-icon-link:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 126, 0.12);
}

.mobile-icon-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-cart-badge {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-toggle,
.mobile-overlay,
.mobile-panel {
  display: none; /* shown via JS on mobile only */
}

.mobile-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(200, 169, 126, 0.28);
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mobile-toggle:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 126, 0.08);
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 49;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  flex-direction: column;
  width: min(360px, 86vw);
  height: 100vh;
  padding: 22px 20px 28px;
  background: rgba(8, 8, 8, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.36);
  transform: translateX(110%);
  visibility: hidden;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 240ms;
  overflow-y: auto;
}

.mobile-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel-header strong {
  display: block;
  font-size: 18px;
  color: var(--gold);
}

.mobile-panel-header small {
  display: block;
  margin-top: 4px;
  color: rgba(245, 245, 240, 0.62);
}

.mobile-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 169, 126, 0.24);
  background: transparent;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav,
.mobile-actions {
  display: grid;
  gap: 8px;
}

.mobile-nav {
  padding: 18px 0;
}

.mobile-actions {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a,
.mobile-actions a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  color: rgba(245, 245, 240, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-nav a.is-current,
.mobile-nav a:hover,
.mobile-actions a:hover {
  color: var(--gold);
  border-color: rgba(200, 169, 126, 0.3);
}

.mobile-contact {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-contact a {
  color: var(--gold);
}

.mobile-contact p {
  margin: 10px 0 0;
  color: rgba(245, 245, 240, 0.62);
  font-size: 14px;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open .mobile-panel {
  transform: translateX(0);
  visibility: visible;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

body.mobile-menu-open .mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

html.reveal-enabled .reveal-target {
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-enabled .reveal-target.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

html.reveal-enabled .reveal-up {
  transform: translate3d(0, 42px, 0);
}

html.reveal-enabled .reveal-left {
  transform: translate3d(-48px, 0, 0);
}

html.reveal-enabled .reveal-right {
  transform: translate3d(48px, 0, 0);
}

html.reveal-enabled .reveal-zoom {
  transform: translate3d(0, 28px, 0) scale(0.94);
}

.hero {
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  align-items: center;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(200, 169, 126, 0.14), transparent 36%),
    linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
}

.theme-home .hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.94) 0%, rgba(6, 6, 6, 0.82) 42%, rgba(6, 6, 6, 0.58) 100%);
}

.theme-home .hero::after {
  content: none;
}

.theme-home .hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: 48px;
  align-items: center;
}

.theme-home .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
}

.theme-home .hero-copy {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.theme-home .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero-copy h1,
.page-hero h1,
.split-copy h2,
.section-header h2,
.cta-inner h2,
.product-summary h1,
.content-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(42px, 7vw, 66px);
  line-height: 1.08;
  color: var(--gold);
}

.hero-copy p {
  max-width: 460px;
  font-size: 16px;
  color: rgba(245, 245, 240, 0.68);
  margin: 24px 0 32px;
}

.hero-copy p.hero-subtitle-main {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 20px !important;
  opacity: 0.88;
}

.hero-copy p.hero-subtitle-main::before {
  content: "";
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200, 169, 126, 0.95), rgba(200, 169, 126, 0.24));
}

.hero-copy p.hero-description {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.62;
  color: rgba(245, 245, 240, 0.7);
  margin: 20px 0 36px !important;
}

.hero-actions,
.cta-actions,
.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-solid {
  background: var(--gold);
  color: var(--text-dark);
}

.button-solid:hover {
  background: #dec8a8;
}

.button-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.button-outline:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.hero-actions .button {
  min-height: 54px;
  min-width: 236px;
  justify-content: space-between;
  gap: 20px;
}

.button-arrow {
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-1px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(245, 245, 240, 0.82);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-frame {
  width: min(100%, 560px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.34));
  display: block;
}

.hero-mobile-product {
  display: none;
}

.trust-strip,
.stats-strip,
.detail-trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip {
  background: #000;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 28px 0;
}

.icon-card {
  display: flex;
  gap: 16px;
  align-items: center;
}

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 126, 0.3);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.icon-chip--svg svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-card h3,
.stat-card strong,
.benefit-card h3,
.testimonial-person strong,
.sidebar-group h2,
.content-panel h3,
.detail-sidecard h3 {
  margin: 0;
}

.icon-card h3 {
  font-size: 14px;
  color: var(--gold);
}

.icon-card p,
.footer-grid p,
.testimonial-person span,
.sidebar-group li,
.content-panel p,
.guide-list li,
.catalog-toolbar p,
.detail-sidecard p {
  margin: 0;
  color: rgba(245, 245, 240, 0.55);
  font-size: 13px;
}

.stats-strip {
  background: #050505;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 30px 0;
}

.stat-card {
  padding: 18px 20px;
  border: 1px solid rgba(200, 169, 126, 0.12);
  background: rgba(255, 255, 255, 0.01);
}

.stat-card strong {
  display: block;
  font-size: 30px;
  color: #fff;
}

.stat-card span {
  display: block;
  font-size: 12px;
  color: rgba(245, 245, 240, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.section-dark,
.section-light,
.cta-banner,
.catalog-section,
.related-section,
.product-content {
  padding: var(--section-space) 0;
}

.section-dark {
  background: var(--bg);
}

.theme-home .section-dark,
.theme-home .trust-strip,
.theme-home .stats-strip,
.theme-home .cta-banner,
.theme-home .site-footer {
  background: rgba(8, 8, 8, 0.84);
}

.section-light {
  background: var(--surface);
  color: var(--text-dark);
}

.section-light p,
.section-light .section-header p,
.section-light .split-copy p,
.section-light .benefit-card p,
.section-light .testimonial-person span,
.section-light .content-panel p,
.section-light .guide-list li {
  color: rgba(17, 17, 17, 0.72);
}

.section-light .section-kicker,
.section-light .text-link,
.section-light .highlight-price,
.section-light .content-panel h2,
.section-light .content-panel h3 {
  color: var(--gold-strong);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-header.centered {
  justify-content: center;
  text-align: center;
}

.section-header h2,
.split-copy h2,
.cta-inner h2,
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
}

.text-link {
  color: var(--gold);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link.light {
  color: rgba(245, 245, 240, 0.8);
}

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

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

.featured-products-header {
  align-items: end;
}

.featured-products-heading {
  max-width: 980px;
}

.featured-products-link {
  flex-shrink: 0;
  white-space: nowrap;
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 126, 0.34);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.product-card-link {
  display: block;
  height: 100%;
}

.product-image-wrap {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  background: #000;
  padding: 20px;
}

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

.product-copy {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.96) 0%, rgba(17, 17, 17, 1) 100%);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(200, 169, 126, 0.2);
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-copy h3 {
  margin: 14px 0 0;
  font-size: 15px;
  color: rgba(245, 245, 240, 0.94);
  line-height: 1.35;
}

.product-code {
  margin-top: 6px;
}

.product-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
}

.split-copy p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  margin: 22px 0 0;
}

.split-media img,
.craft-main img,
.craft-detail,
.stacked-media img {
  width: 100%;
  object-fit: cover;
}

.stacked-media {
  position: relative;
  min-height: 440px;
}

.stacked-media .bg-media {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.stacked-media .fg-media {
  position: absolute;
  inset: 36px;
  box-shadow: var(--shadow-lg);
}

.highlight-price {
  font-size: 20px;
  font-weight: 700;
  margin: 22px 0 28px;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 52px;
  align-items: start;
}

.craft-copy p {
  color: rgba(17, 17, 17, 0.74);
  font-size: 17px;
  line-height: 1.7;
  margin: 22px 0 28px;
}

.mini-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.mini-stats div {
  min-width: 130px;
}

.mini-stats strong {
  display: block;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.mini-stats span {
  display: block;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.craft-detail {
  max-width: 420px;
}

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

.benefit-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.benefit-index {
  display: inline-block;
  color: rgba(200, 169, 126, 0.65);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color: var(--text);
}

.benefit-card p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
}

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

.testimonial-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line-dark);
}

.testimonial-stars {
  color: var(--gold-strong);
  font-size: 16px;
  letter-spacing: 0.18em;
}

.star {
  display: inline-block;
}

.testimonial-card blockquote {
  margin: 18px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-dark);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.cta-banner {
  background: linear-gradient(180deg, #090909 0%, #000 100%);
}

.cta-inner {
  max-width: 760px;
  text-align: center;
}

.cta-inner p {
  margin: 22px auto 30px;
  max-width: 620px;
  color: rgba(245, 245, 240, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.cta-inner .cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 88px 0 32px;
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 48px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 18px;
  color: var(--text);
}

.site-footer h3 {
  font-size: 28px;
  letter-spacing: 0.12em;
}

.site-footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-links a,
.site-footer p a {
  color: var(--muted);
}

.footer-links a:hover,
.site-footer p a:hover {
  color: var(--text);
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1 1 220px;
  min-height: 46px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.newsletter input::placeholder {
  color: rgba(138, 133, 128, 0.7);
}

.newsletter button {
  min-height: 46px;
  padding: 0 18px;
  background: var(--gold);
  border: 0;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.social-row a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
}

.footer-thumb {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: #111;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-main {
  min-height: 100vh;
}

.page-hero {
  padding: 34px 0 18px;
}

.page-hero.compact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(245, 245, 240, 0.54);
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb strong {
  color: var(--gold);
}

.catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  padding: 24px 0 22px;
}

.catalog-head p {
  max-width: 560px;
  color: rgba(245, 245, 240, 0.62);
  font-size: 16px;
  margin: 16px 0 0;
}

.catalog-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.catalog-meta div {
  min-width: 140px;
  padding: 16px 18px;
  border: 1px solid rgba(200, 169, 126, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.catalog-meta strong {
  display: block;
  font-size: 24px;
  color: var(--gold);
}

.catalog-meta span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(245, 245, 240, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.catalog-sidebar {
  display: grid;
  gap: 28px;
  align-self: start;
  position: sticky;
  top: 130px;
}

.sidebar-group {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.01);
}

.sidebar-group h2 {
  margin-bottom: 16px;
  color: rgba(245, 245, 240, 0.92);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.sidebar-group li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.sidebar-group a.active,
.sidebar-group a:hover {
  color: var(--gold);
}

.sidebar-group em {
  font-style: normal;
  color: rgba(245, 245, 240, 0.32);
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

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

.product-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 520px);
  gap: 40px;
}

.product-gallery {
  display: grid;
  gap: 18px;
}

.product-main-image {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px;
}

.product-main-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.thumb-card {
  margin: 0;
  background: #000;
  border: 2px solid transparent;
  padding: 4px;
  width: 60px;
  flex-shrink: 0;
}

.thumb-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.product-summary h1 {
  color: var(--gold);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.product-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.product-tags span {
  border: 1px solid rgba(200, 169, 126, 0.3);
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
}

.product-detail-code {
  color: rgba(245, 245, 240, 0.42);
  font-size: 14px;
  margin-top: 8px;
}

.product-detail-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin: 18px 0 10px;
}

.stock-line {
  color: var(--success);
  font-size: 14px;
  margin-bottom: 18px;
}

.summary-text {
  color: rgba(245, 245, 240, 0.68);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}

.summary-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
}

.summary-list dt {
  color: rgba(245, 245, 240, 0.42);
}

.summary-list dd {
  margin: 0;
  color: rgba(245, 245, 240, 0.82);
}

.mini-policies {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-policies p {
  padding-left: 16px;
  position: relative;
  color: rgba(245, 245, 240, 0.62);
  font-size: 13px;
}

.mini-policies p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.product-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.content-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-panel h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.content-panel h3 {
  color: rgba(245, 245, 240, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  margin-bottom: 14px;
}

.content-panel p + p {
  margin-top: 14px;
}

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

.spec-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-row dt {
  color: rgba(245, 245, 240, 0.42);
}

.spec-row dd {
  margin: 0;
  color: rgba(245, 245, 240, 0.84);
}

.review-summary {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
}

.review-score {
  text-align: center;
}

.review-score strong {
  display: inline-block;
  font-size: 56px;
  color: var(--gold);
}

.review-score span {
  color: rgba(245, 245, 240, 0.42);
}

.review-score p {
  margin-top: 10px;
}

.review-breakdown {
  display: grid;
  gap: 10px;
  align-content: start;
}

.review-bar {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  color: rgba(245, 245, 240, 0.52);
  font-size: 13px;
}

.review-bar div {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.review-bar i {
  display: block;
  height: 100%;
  background: var(--gold);
}

.guide-list {
  margin: 0;
  padding-left: 18px;
}

.guide-list li + li {
  margin-top: 10px;
}

.detail-sidecard {
  align-self: start;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.detail-sidecard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #090909;
  padding: 20px;
}

.detail-sidecard div {
  padding: 22px;
}

.detail-sidecard h3 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin-bottom: 10px;
}

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

.product-card.compact .product-copy {
  padding: 14px;
}

.product-card.compact .product-copy h3 {
  font-size: 13px;
}

.product-card.compact .product-code,
.product-card.compact .product-price {
  font-size: 12px;
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 16px;
  }

  .brand--logo {
    gap: 14px;
  }

  .brand-logo {
    height: 58px;
  }

  .brand-title {
    font-size: 17px;
    letter-spacing: 0.03em;
  }

  .site-nav a,
  .nav-actions a {
    padding: 10px 10px;
    font-size: 11.5px;
  }

  .featured-grid,
  .product-grid,
  .catalog-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .catalog-sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .theme-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theme-home .hero-visual {
    display: none;
  }

  .hero-mobile-product {
    display: block;
    width: 100%;
  }

  .hero-mobile-frame {
    width: 100%;
    aspect-ratio: 11 / 8;
    display: grid;
    place-items: center;
    background: #020202;
    border: 1px solid rgba(200, 169, 126, 0.34);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  }

  .hero-mobile-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 32%, rgba(200, 169, 126, 0.14), rgba(0, 0, 0, 0.96) 72%);
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.55));
    padding: 14px;
  }

  .theme-home .hero {
    min-height: auto;
    padding: 34px 0 38px;
    background:
      radial-gradient(circle at 100% 25%, rgba(200, 169, 126, 0.16), transparent 42%),
      linear-gradient(180deg, #030303 0%, #050505 100%);
  }

  .theme-home .hero::after {
    content: "";
    right: -138px;
    top: 96px;
    width: min(88vw, 500px);
    height: min(88vw, 500px);
    opacity: 0.24;
    background: url("../assets/images/watch-orient-gold.jpg") no-repeat center center / contain;
    mix-blend-mode: screen;
    pointer-events: none;
    filter: blur(0.6px) brightness(0.42) contrast(1.12) saturate(0.76);
    -webkit-mask-image: radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 0.78) 58%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 0.78) 58%, transparent 100%);
  }

  .hero-grid,
  .split-grid,
  .craftsmanship-grid,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .icon-grid,
  .stats-grid,
  .benefit-grid,
  .testimonial-grid,
  .product-grid,
  .catalog-grid,
  .related-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .mobile-quick-actions {
    display: flex;
    margin-left: auto;
  }

  .catalog-head,
  .section-header,
  .catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-shell {
    padding: 14px 0 13px;
    gap: 10px;
  }

  .brand-logo {
    height: 60px;
  }

  .brand--logo {
    gap: 10px;
    flex: 1 1 auto;
  }

  .brand-title {
    max-width: 148px;
    font-size: 13px;
    line-height: 1.18;
    white-space: normal;
    letter-spacing: 0.04em;
  }

  .mobile-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(200, 169, 126, 0.3);
    border-radius: 999px;
    color: var(--gold);
    gap: 4px;
  }

  .mobile-toggle span {
    width: 16px;
  }

  .mobile-overlay {
    display: block;
  }

  .mobile-panel {
    display: flex;
  }

  .stacked-media {
    min-height: 300px;
  }

  .split-grid.reverse {
    grid-template-columns: 1fr;
  }

  .stacked-media .bg-media,
  .stacked-media .fg-media {
    position: relative;
    inset: auto;
    width: 100%;
    box-shadow: none;
  }

  .stacked-media .bg-media {
    display: none;
  }

  .stacked-media .fg-media {
    object-fit: cover;
    height: 280px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero {
    padding: 36px 0 56px;
  }

  .theme-home .hero::after {
    right: -112px;
    top: 86px;
    width: 320px;
    height: 320px;
    opacity: 0.27;
  }

  .nav-shell {
    gap: 8px;
  }

  .brand-logo {
    height: 56px;
  }

  .brand-title {
    max-width: 122px;
    font-size: 11px;
    line-height: 1.16;
    letter-spacing: 0.03em;
  }

  .mobile-quick-actions {
    gap: 8px;
  }

  .mobile-icon-link {
    width: 41px;
    height: 41px;
  }

  .mobile-icon-link svg {
    width: 19px;
    height: 19px;
  }

  .mobile-toggle {
    width: 41px;
    height: 41px;
  }

  .mobile-toggle span {
    width: 14px;
  }

  .hero-copy h1,
  .page-hero h1,
  .split-copy h2,
  .section-header h2,
  .cta-inner h2,
  .product-summary h1,
  .content-panel h2 {
    line-height: 1.14;
  }

  .hero-copy h1 {
    font-size: 64px;
    letter-spacing: 0.01em;
    line-height: 1.03;
  }

  .hero-copy p.hero-subtitle-main {
    font-size: 12px;
    margin-bottom: 18px !important;
    letter-spacing: 0.12em;
  }

  .hero-copy p.hero-subtitle-main::before {
    width: 44px;
  }

  .hero-copy p.hero-description {
    font-size: 15px;
    line-height: 1.72;
    margin: 18px 0 26px !important;
  }

  .hero-mobile-frame {
    border-radius: 20px;
    padding: 8px;
  }

  .hero-mobile-frame img {
    border-radius: 14px;
    padding: 10px;
  }

  .hero-copy p,
  .split-copy p,
  .craft-copy p,
  .cta-inner p,
  .catalog-head p {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions,
  .product-actions {
    flex-direction: row;
  }

  .hero-actions .button,
  .cta-actions .button,
  .product-actions .button {
    width: auto;
  }

  .hero-actions .button {
    width: min(100%, 320px);
    min-height: 52px;
  }

  .theme-home .trust-strip {
    border-top-color: rgba(200, 169, 126, 0.22);
    border-bottom-color: rgba(200, 169, 126, 0.22);
  }

  .theme-home .trust-strip .icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 22px 0 18px;
  }

  .theme-home .trust-strip .icon-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 0 10px;
    min-height: 120px;
    border-right: 1px solid rgba(200, 169, 126, 0.18);
  }

  .theme-home .trust-strip .icon-card:last-child {
    border-right: 0;
  }

  .theme-home .trust-strip .icon-chip {
    width: 42px;
    height: 42px;
    border-color: rgba(200, 169, 126, 0.34);
  }

  .theme-home .trust-strip .icon-chip--svg svg {
    width: 20px;
    height: 20px;
  }

  .theme-home .trust-strip .icon-card h3 {
    font-size: 11px;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  .theme-home .trust-strip .icon-card p {
    font-size: 10px;
    color: rgba(245, 245, 240, 0.72);
    line-height: 1.35;
  }

  #stats {
    display: none;
  }

  .section-header {
    gap: 16px;
  }

  #products {
    padding-top: 62px;
  }

  #products .container {
    width: min(100%, calc(100% - 20px));
    margin-right: 0;
    margin-left: 20px;
  }

  #products .featured-products-header {
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 26px;
    padding-right: 20px;
  }

  #products .featured-products-heading {
    max-width: 100%;
  }

  #products .section-kicker {
    display: block;
    margin-bottom: 16px;
    color: rgba(200, 169, 126, 0.9);
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  #products .section-header h2 {
    max-width: 11ch;
    font-size: clamp(44px, 12vw, 62px);
    line-height: 0.98;
    color: #f2efe9;
    letter-spacing: -0.03em;
  }

  #products .featured-products-link {
    font-size: 14px;
    color: var(--gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
  }

  #products .featured-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(248px, 78vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 4px 20px 6px 0;
    scrollbar-width: none;
  }

  #products .featured-grid::-webkit-scrollbar {
    display: none;
  }

  #products .product-card {
    scroll-snap-align: start;
    min-height: 100%;
    background: #121212;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  }

  #products .product-card:hover {
    transform: none;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  }

  #products .product-image-wrap {
    aspect-ratio: 1 / 1.28;
    padding: 22px;
    background:
      radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.05), transparent 24%),
      linear-gradient(180deg, #050505 0%, #000 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  #products .product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.42));
    transform: scale(0.98);
  }

  #products .product-copy {
    padding: 18px 18px 20px;
    min-height: 164px;
  }

  #products .product-badge {
    min-height: 28px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.14em;
    border-color: rgba(200, 169, 126, 0.24);
    background: rgba(200, 169, 126, 0.04);
  }

  #products .product-copy h3 {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.28;
    color: #f3f1eb;
  }

  #products .product-code {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(245, 245, 240, 0.7);
  }

  #products .product-price {
    margin-top: 16px;
    font-size: 18px;
    color: #d2b07c;
    letter-spacing: -0.01em;
  }

  .icon-grid,
  .stats-grid,
  .benefit-grid,
  .testimonial-grid,
  .product-grid,
  .catalog-grid,
  .related-grid,
  .footer-grid,
  .spec-grid,
  .review-summary {
    grid-template-columns: 1fr;
  }

  .catalog-meta {
    width: 100%;
  }

  .catalog-meta div {
    flex: 1 1 100%;
  }

  .summary-list div,
  .spec-row,
  .review-bar {
    grid-template-columns: 1fr;
  }

  .review-score {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }
}

/* ── WordPress compatibility patch ──────────────────────── */
/* wp_nav_menu wraps output — strip any injected list items */
.site-nav ul, .mobile-nav ul { list-style: none; margin: 0; padding: 0; display: contents; }
.site-nav li, .mobile-nav li { display: contents; }

/* Gallery thumbnails */
.thumb-card {
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.thumb-card:hover { opacity: 0.85; }
.thumb-card.is-active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.thumb-card.is-active img { outline: none; }

/* Product main image transition */
.product-main-image img { transition: opacity 200ms ease; }
.product-main-image img.is-fading { opacity: 0; }

/* Editor content inside Mô Tả Sản Phẩm */
.entry-content p,
.entry-content li {
  color: rgba(245, 245, 240, 0.78);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.entry-content p:last-child { margin-bottom: 0; }
.entry-content strong, .entry-content b { font-weight: 700; color: rgba(245, 245, 240, 0.95); }
.entry-content em, .entry-content i { font-style: italic; }
.entry-content ul, .entry-content ol { padding-left: 22px; margin: 0 0 14px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content h2, .entry-content h3, .entry-content h4 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  margin: 20px 0 10px;
}
.entry-content a { color: var(--gold); text-decoration: underline; }

/* Fix wp_body_open empty output */
body > noscript:first-child { display: none; }

/* Catalog sidebar active link */
.sidebar-group a.active { font-weight: 600; color: var(--color-text, #1a1a1a); }

/* WP adds .page-main class via body_class - ensure no conflicts */
.page-main { padding-top: 0; }

/* Doseco homepage restore */
body.doseco-home {
  background: #fff;
  color: #141414;
}

body.doseco-home::before {
  background: #fff;
}

body.doseco-home::after {
  opacity: 0;
  background: none;
}

.doseco-home #site-main {
  padding-top: 0;
  background: #fff;
}

.doseco-home a {
  color: inherit;
}

.doseco-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.08);
}

.doseco-header-top {
  display: none;
}

.doseco-header-top-inner {
  display: none;
}

.doseco-header-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 92px;
  padding: 14px 0;
}

.doseco-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.doseco-brand-logo {
  width: auto;
  height: 78px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.doseco-brand-title {
  color: #9f783f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: none;
}

.doseco-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.doseco-menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #111;
}

.doseco-header-nav {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ededed;
  background: #f3f3f3;
}

.doseco-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 40px;
  overflow-x: auto;
  white-space: nowrap;
}

.doseco-nav a {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 10px;
}

.doseco-main {
  padding: 0;
  background: #fff;
}

body.doseco-product {
  background: #f4f1ec;
  color: #141414;
}

body.doseco-product::before {
  background: #f4f1ec;
}

body.doseco-product::after {
  opacity: 0;
  background: none;
}

.doseco-product #site-main {
  padding-top: 0;
  background: #f4f1ec;
}

.doseco-product-page {
  padding: 0 0 44px;
}

.doseco-product-breadcrumb {
  padding: 16px 0 12px;
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.doseco-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #6e6e6e;
  font-size: 14px;
}

.doseco-breadcrumb strong {
  color: #111;
}

.doseco-product-hero {
  padding: 24px 0 0;
}

.doseco-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.doseco-product-gallery-card,
.doseco-product-summary-card,
.doseco-product-support-card,
.doseco-product-detail-card,
.doseco-product-sidecard {
  background: #fff;
  border: 1px solid #e7e7e7;
}

.doseco-product-gallery-card {
  padding: 18px;
}

.doseco-product-gallery-stage {
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: #fbfbfb;
  border: 1px solid #efefef;
}

.doseco-product-gallery-stage img {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: opacity 200ms ease;
}

.doseco-product-gallery-stage img.is-fading {
  opacity: 0;
}

.doseco-product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.doseco-thumb-card {
  width: 78px;
  margin: 0;
  padding: 6px;
  border: 1px solid #d8d8d8;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.doseco-thumb-card:hover {
  transform: translateY(-1px);
}

.doseco-thumb-card.is-active {
  border-color: #d22f23;
  box-shadow: 0 0 0 1px rgba(210, 47, 35, 0.18);
}

.doseco-thumb-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.doseco-product-summary-column {
  display: grid;
  gap: 18px;
}

.doseco-product-summary-card {
  padding: 26px 28px 24px;
}

.doseco-product-summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.doseco-product-brand {
  color: #6c6c6c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doseco-product-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.doseco-product-flags span {
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dddddd;
  background: #fafafa;
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.doseco-product-flags .is-available {
  color: #1b7b33;
  border-color: #cce5cf;
  background: #eff8f0;
}

.doseco-product-flags .is-pre-order {
  color: #855b00;
  border-color: #ead9a6;
  background: #fff8df;
}

.doseco-product-flags .is-sold-out {
  color: #a22c2c;
  border-color: #efc7c7;
  background: #fff1f1;
}

.doseco-product-summary-card h1 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 700;
}

.doseco-product-code-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 14px 0 0;
  color: #5e5e5e;
  font-size: 14px;
}

.doseco-product-code-row p {
  margin: 0;
}

.doseco-product-code-row strong {
  color: #111;
}

.doseco-product-pricebox {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 14px;
  padding: 18px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.doseco-product-priceblock strong {
  display: block;
  color: #d22f23;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1;
}

.doseco-product-priceblock span {
  display: block;
  margin-top: 10px;
  color: #8a8a8a;
  font-size: 16px;
  text-decoration: line-through;
}

.doseco-product-saving {
  text-align: right;
}

.doseco-product-saving b {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d22f23;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.doseco-product-saving small {
  display: block;
  margin-top: 8px;
  color: #6a6a6a;
  font-size: 13px;
  line-height: 1.5;
}

.doseco-product-summary-text {
  margin: 0;
  color: #444;
  font-size: 16px;
  line-height: 1.75;
}

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

.doseco-product-quickfacts article {
  padding: 14px 15px;
  background: #faf7f4;
  border: 1px solid #ece4dc;
}

.doseco-product-quickfacts span {
  display: block;
  margin-bottom: 6px;
  color: #7a7a7a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.doseco-product-quickfacts strong {
  color: #141414;
  font-size: 15px;
  line-height: 1.45;
}

.doseco-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.doseco-detail-button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.doseco-detail-button--primary {
  background: #d22f23;
  color: #fff;
}

.doseco-detail-button--secondary {
  border: 1px solid #d4d4d4;
  background: #fff;
  color: #111;
}

.doseco-product-benefits {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.doseco-product-benefits p {
  margin: 0;
  padding-left: 18px;
  position: relative;
  color: #505050;
  font-size: 14px;
  line-height: 1.65;
}

.doseco-product-benefits p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d22f23;
}

.doseco-product-support-card {
  padding: 24px 26px;
  background: #f7f4f0;
}

.doseco-product-support-card h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: 24px;
  line-height: 1.2;
}

.doseco-product-support-card ul {
  margin: 0;
  padding-left: 18px;
  color: #4f4f4f;
}

.doseco-product-support-card li + li {
  margin-top: 9px;
}

.doseco-product-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.doseco-product-support-links a {
  color: #d22f23;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.doseco-product-detail-body {
  padding-top: 28px;
}

.doseco-product-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.doseco-product-anchor-nav a {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dedede;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.doseco-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.doseco-product-detail-main {
  display: grid;
  gap: 20px;
}

.doseco-product-detail-card {
  padding: 26px 28px;
}

.doseco-product-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ededed;
}

.doseco-product-card-head span {
  display: block;
  margin-bottom: 8px;
  color: #7a7a7a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doseco-product-card-head h2 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
}

.doseco-product-card-head p {
  max-width: 340px;
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.doseco-entry-content,
.doseco-entry-content p,
.doseco-entry-content li {
  color: #353535;
  font-size: 16px;
  line-height: 1.78;
}

.doseco-entry-content h2,
.doseco-entry-content h3 {
  color: #111;
  margin-top: 26px;
  margin-bottom: 14px;
}

.doseco-entry-content ul,
.doseco-entry-content ol {
  padding-left: 20px;
}

.doseco-entry-content img,
.doseco-entry-content iframe {
  max-width: 100%;
}

.doseco-spec-table {
  display: grid;
  gap: 0;
  margin: 0;
}

.doseco-spec-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #efefef;
}

.doseco-spec-row:first-child {
  border-top: 1px solid #efefef;
}

.doseco-spec-row dt {
  color: #6b6b6b;
}

.doseco-spec-row dd {
  margin: 0;
  color: #141414;
  font-weight: 500;
}

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

.doseco-policy-card {
  padding: 18px;
  background: #faf7f4;
  border: 1px solid #ece4dc;
}

.doseco-policy-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 18px;
  line-height: 1.3;
}

.doseco-policy-card ul {
  margin: 0;
  padding-left: 18px;
  color: #454545;
}

.doseco-policy-card li + li {
  margin-top: 9px;
}

.doseco-guide-list {
  margin: 0;
  padding-left: 20px;
  color: #3f3f3f;
}

.doseco-guide-list li + li {
  margin-top: 12px;
}

.doseco-product-sidebar-stick {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 18px;
}

.doseco-product-sidecard {
  overflow: hidden;
}

.doseco-product-sidecard--image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fafafa;
  border-bottom: 1px solid #ededed;
  padding: 18px;
}

.doseco-product-sidecard div,
.doseco-product-sidecard:not(.doseco-product-sidecard--image) {
  padding: 20px 22px;
}

.doseco-product-sidecard h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 22px;
  line-height: 1.2;
}

.doseco-product-sidecard p {
  margin: 0;
  color: #595959;
  font-size: 14px;
  line-height: 1.7;
}

.doseco-side-specs {
  display: grid;
  gap: 12px;
  margin: 0;
}

.doseco-side-specs div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #efefef;
}

.doseco-side-specs dt {
  color: #6e6e6e;
  font-size: 13px;
}

.doseco-side-specs dd {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.doseco-side-link {
  margin-top: 16px;
  display: inline-flex;
  color: #d22f23;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.doseco-related-section {
  padding: 34px 0 0;
}

.doseco-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.doseco-related-grid .product-card {
  background: #fff;
  border: 1px solid #e7e7e7;
}

.doseco-related-grid .product-card-link {
  display: block;
}

.doseco-related-grid .product-image-wrap {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #ededed;
}

.doseco-related-grid .product-image-wrap img {
  aspect-ratio: 325 / 420;
  object-fit: cover;
}

.doseco-related-grid .product-copy {
  padding: 14px;
}

.doseco-related-grid .product-badge {
  min-height: 28px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #e1e1e1;
  color: #6b6b6b;
  font-size: 11px;
}

.doseco-related-grid .product-copy h3 {
  margin-top: 12px;
  color: #111;
  font-size: 17px;
  line-height: 1.35;
}

.doseco-related-grid .product-code {
  margin-top: 7px;
  color: #636363;
  font-size: 14px;
}

.doseco-related-grid .product-price {
  margin-top: 12px;
  color: #111;
  font-size: 16px;
}

body.doseco-catalog {
  background: #ffffff;
  color: #141414;
}

body.doseco-catalog::before {
  background: #ffffff;
}

body.doseco-catalog::after {
  opacity: 0;
  background: none;
}

.doseco-catalog #site-main {
  padding-top: 0;
  background: #ffffff;
}

.doseco-catalog-page {
  padding-bottom: 44px;
}

.doseco-catalog-hero {
  padding: 18px 0 0;
}

.doseco-catalog-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 26px 0 24px;
  border-bottom: 1px solid #ececec;
}

.doseco-catalog-hero-copy span {
  display: block;
  margin-bottom: 10px;
  color: #7a7a7a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doseco-catalog-hero-copy h1 {
  margin: 0;
  color: #111;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 700;
}

.doseco-catalog-hero-copy p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 1.8;
}

.doseco-catalog-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
}

.doseco-catalog-hero-stats article {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
}

.doseco-catalog-hero-stats strong {
  display: block;
  color: #111;
  font-size: 28px;
  line-height: 1;
}

.doseco-catalog-hero-stats span {
  display: block;
  margin-top: 8px;
  color: #6d6d6d;
  font-size: 13px;
  line-height: 1.45;
}

.doseco-catalog-body {
  padding-top: 24px;
}

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

.doseco-catalog-sidebar {
  position: sticky;
  top: 132px;
}

.doseco-filter-panel {
  background: #fff;
  border: 1px solid #e7e7e7;
}

.doseco-filter-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid #ececec;
}

.doseco-filter-panel-head span {
  display: block;
  margin-bottom: 7px;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doseco-filter-panel-head h2 {
  margin: 0;
  color: #111;
  font-size: 24px;
  line-height: 1.2;
}

.doseco-filter-panel-head a {
  color: #d22f23;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.doseco-filter-group {
  padding: 18px 22px;
  border-bottom: 1px solid #f0f0f0;
}

.doseco-filter-group:last-child {
  border-bottom: 0;
}

.doseco-filter-group h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 16px;
  line-height: 1.3;
}

.doseco-filter-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.doseco-filter-list a {
  min-height: 38px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #ededed;
  background: #fafafa;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.45;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.doseco-filter-list a:hover,
.doseco-filter-list a.active {
  border-color: #d22f23;
  background: #fff4f3;
  color: #111;
}

.doseco-filter-list em {
  flex: 0 0 auto;
  color: #8b8b8b;
  font-style: normal;
  font-size: 12px;
}

.doseco-filter-list--compact a {
  justify-content: flex-start;
}

.doseco-catalog-content {
  min-width: 0;
}

.doseco-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 16px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.doseco-catalog-toolbar-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.doseco-catalog-toolbar-copy strong {
  color: #111;
  font-size: 24px;
  line-height: 1;
}

.doseco-catalog-toolbar-copy span {
  color: #666;
  font-size: 14px;
}

.doseco-catalog-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doseco-catalog-sort label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.doseco-catalog-sort select {
  min-width: 190px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  background: #fff;
  color: #111;
}

.doseco-catalog-active {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.doseco-active-chip {
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.doseco-active-chip b {
  font-size: 16px;
  line-height: 1;
}

.doseco-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 18px;
}

.doseco-catalog-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  overflow: hidden;
}

.doseco-catalog-card a {
  display: block;
}

.doseco-catalog-card-media {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #ececec;
  display: grid;
  place-items: center;
  padding: 16px;
}

.doseco-catalog-card-media img {
  width: 100%;
  aspect-ratio: 325 / 440;
  object-fit: contain;
  display: block;
}

.doseco-catalog-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 56px;
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d22f23;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.doseco-catalog-card-copy {
  padding: 14px 14px 16px;
}

.doseco-catalog-card-brand {
  margin: 0 0 8px;
  color: #767676;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doseco-catalog-card-copy h3 {
  margin: 0;
  color: #111;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}

.doseco-catalog-card-meta {
  margin: 8px 0 0;
  color: #6c6c6c;
  font-size: 14px;
}

.doseco-catalog-card-status {
  margin: 8px 0 0;
  color: #d22f23;
  font-size: 14px;
  font-weight: 600;
}

.doseco-catalog-card-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
}

.doseco-catalog-card-price strong {
  color: #111;
  font-size: 18px;
  line-height: 1.2;
}

.doseco-catalog-card-price span {
  color: #929292;
  font-size: 14px;
  text-decoration: line-through;
}

.doseco-catalog-pagination {
  margin-top: 26px;
}

.doseco-catalog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doseco-catalog-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddddd;
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

.doseco-catalog-pagination .page-numbers.current,
.doseco-catalog-pagination .page-numbers:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.doseco-catalog-empty {
  padding: 34px;
  border: 1px solid #e7e7e7;
  background: #fff;
}

.doseco-catalog-empty h2 {
  margin: 0 0 12px;
  color: #111;
  font-size: 28px;
}

.doseco-catalog-empty p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #5d5d5d;
  font-size: 15px;
  line-height: 1.8;
}

.doseco-banner-section {
  padding: 12px 0 24px;
}

.doseco-shortcuts-grid::-webkit-scrollbar,
.doseco-product-grid::-webkit-scrollbar,
.doseco-collection-grid::-webkit-scrollbar,
.doseco-video-grid::-webkit-scrollbar,
.doseco-review-columns::-webkit-scrollbar {
  height: 8px;
}

.doseco-shortcuts-grid::-webkit-scrollbar-thumb,
.doseco-product-grid::-webkit-scrollbar-thumb,
.doseco-collection-grid::-webkit-scrollbar-thumb,
.doseco-video-grid::-webkit-scrollbar-thumb,
.doseco-review-columns::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.18);
  border-radius: 999px;
}

.doseco-banner-slider {
  position: relative;
}

.doseco-banner-stage {
  position: relative;
  aspect-ratio: 1156 / 400;
  overflow: hidden;
}

.doseco-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.doseco-banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.doseco-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doseco-banner-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.doseco-banner-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfcfcf;
}

.doseco-banner-dot.is-active {
  background: #7d8796;
}

.doseco-shortcuts {
  padding: 10px 0 22px;
}

.doseco-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 44px;
  max-width: 940px;
  margin: 0 auto;
}

.doseco-shortcut {
  text-align: center;
}

.doseco-shortcut-media {
  width: min(148px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f8f8f8;
  box-shadow: none;
  border: 0;
  overflow: hidden;
}

.doseco-shortcut-media img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.doseco-shortcut-title {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
}

.doseco-section {
  padding: 34px 0 0;
}

.doseco-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.doseco-section-head--center {
  justify-content: center;
  text-align: center;
}

.doseco-kicker {
  display: none;
}

.doseco-title {
  margin: 0;
  color: #111;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 700;
}

.doseco-title--caps {
  text-transform: uppercase;
}

.doseco-link {
  color: #5b6578;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.doseco-sale .container {
  background: #f5f5f5;
  border: 1px solid #ededed;
  padding: 44px 34px 36px;
}

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

.doseco-product-card,
.doseco-collection-card,
.doseco-article-feature,
.doseco-article-card,
.doseco-video-card,
.doseco-review-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.doseco-product-card {
  background: transparent;
  border: 0;
}

.doseco-product-card a,
.doseco-collection-card a,
.doseco-article-feature a,
.doseco-article-card a,
.doseco-video-card a,
.doseco-review-card {
  display: block;
}

.doseco-product-media {
  position: relative;
  padding: 0;
  background: transparent;
}

.doseco-product-media img {
  width: 100%;
  aspect-ratio: 325 / 450;
  object-fit: cover;
  display: block;
}

.doseco-product-badge {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  padding: 7px 8px;
  border-radius: 0;
  background: #d93122;
  color: #fff;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}

.doseco-product-stamp {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 50px;
}

.doseco-product-stamp img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.doseco-product-copy {
  padding: 12px 0 0;
}

.doseco-product-copy h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}

.doseco-product-status {
  margin: 0 0 8px;
  color: #f03b30;
  font-size: 14px;
}

.doseco-price-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.doseco-price-row strong {
  color: #111;
  font-size: 16px;
}

.doseco-price-row span {
  color: #8e8e8e;
  font-size: 15px;
  text-decoration: line-through;
}

.doseco-collections {
  padding-top: 30px;
}

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

.doseco-collection-card img {
  width: 100%;
  aspect-ratio: 340 / 180;
  object-fit: cover;
  display: block;
}

.doseco-collection-copy {
  padding: 10px 14px 0;
  min-height: 80px;
}

.doseco-collection-copy h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  text-align: center;
}

.doseco-section-actions {
  padding-top: 22px;
  text-align: center;
}

.doseco-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 46px;
  padding: 0 24px;
  background: #4e5564;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.doseco-news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.doseco-article-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.doseco-article-feature-copy,
.doseco-article-copy,
.doseco-video-copy {
  padding: 14px 0 0;
}

.doseco-article-feature-copy h3,
.doseco-article-copy h3,
.doseco-video-copy h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.doseco-article-feature-copy p,
.doseco-article-copy p {
  margin: 0;
  color: #5e5e5e;
  font-size: 15px;
  line-height: 1.7;
}

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

.doseco-article-card {
  border: 0;
  background: transparent;
}

.doseco-article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

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

.doseco-video-media {
  position: relative;
}

.doseco-video-media img {
  width: 100%;
  aspect-ratio: 460 / 250;
  object-fit: cover;
  display: block;
}

.doseco-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.76);
  color: #fff;
  font-size: 24px;
  transform: translate(-50%, -50%);
}

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

.doseco-review-column h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.doseco-review-stack {
  display: grid;
  gap: 14px;
}

.doseco-review-card img {
  width: 100%;
  display: block;
}

.doseco-review-card span {
  display: block;
  padding: 12px 16px 16px;
  font-size: 14px;
  font-weight: 600;
}

.doseco-footer {
  margin-top: 40px;
  padding: 42px 0 96px;
  background: #fff;
  border-top: 1px solid #ececec;
}

.doseco-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px;
}

.doseco-footer h3,
.doseco-footer h4 {
  margin: 0 0 16px;
  color: #111;
}

.doseco-footer p {
  margin: 0 0 10px;
  color: #4f4f4f;
  line-height: 1.65;
}

.doseco-footer-brand img {
  width: 250px;
  max-width: 100%;
  margin-top: 14px;
}

.doseco-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.doseco-footer-links a {
  color: #2d2d2d;
}

.doseco-footer-media img,
.doseco-map-frame iframe {
  width: 100%;
  border-radius: 0;
  border: 1px solid #ececec;
}

.doseco-contact-float {
  position: fixed;
  right: 18px;
  left: 18px;
  bottom: 18px;
  z-index: 130;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}

.doseco-contact-float a {
  pointer-events: auto;
}

.doseco-contact-launcher {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff7b36 0%, #f05f26 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(240, 95, 38, 0.35);
}

.doseco-contact-launcher svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.doseco-contact-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.doseco-contact-rail-label {
  color: #2d60e2;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: translate(-4px, 8px) rotate(-67deg);
  transform-origin: right bottom;
}

.doseco-contact-rail-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: linear-gradient(180deg, #4f86ff 0%, #2d60e2 100%);
  color: #fff;
  border: 8px solid rgba(45, 96, 226, 0.16);
  box-shadow: 0 20px 40px rgba(45, 96, 226, 0.18);
}

.doseco-contact-rail-bubble svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.doseco-contact-rail-bubble span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.doseco-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 88vw);
  height: 100vh;
  padding: 22px;
  background: #fff;
  box-shadow: 24px 0 48px rgba(17, 17, 17, 0.18);
  transform: translateX(-105%);
  transition: transform 220ms ease;
  z-index: 140;
}

.doseco-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.doseco-drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  font-size: 28px;
  line-height: 1;
}

.doseco-drawer-nav {
  display: grid;
  gap: 8px;
}

.doseco-drawer-nav a {
  padding: 12px 0;
  border-bottom: 1px solid #efefef;
  font-weight: 600;
}

.doseco-drawer-contact {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  color: #575757;
}

.doseco-drawer-contact strong {
  color: #9f783f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
}

.doseco-drawer-contact a {
  font-weight: 700;
}

.doseco-home .mobile-overlay.doseco-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 135;
}

body.mobile-menu-open .doseco-drawer {
  transform: translateX(0);
}

body.mobile-menu-open .mobile-overlay.doseco-overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1200px) {
  .doseco-header-main {
    min-height: 84px;
  }

  .doseco-brand-title {
    font-size: 23px;
  }

  .doseco-product-shell,
  .doseco-product-detail-grid {
    grid-template-columns: 1fr;
  }

  .doseco-catalog-layout,
  .doseco-catalog-hero-card {
    grid-template-columns: 1fr;
  }

  .doseco-catalog-sidebar {
    position: static;
  }

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

  .doseco-product-sidebar-stick {
    position: static;
  }

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

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

  .doseco-news-layout,
  .doseco-footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .doseco-header-main {
    min-height: 74px;
    gap: 14px;
    padding: 12px 0;
  }

  .doseco-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .doseco-brand {
    gap: 12px;
    min-width: 0;
  }

  .doseco-brand-title {
    font-size: 18px;
  }

  .doseco-nav {
    justify-content: flex-start;
    padding-left: 4px;
  }

  .doseco-nav a {
    padding: 0 14px;
  }

  .doseco-product-gallery-stage {
    min-height: 440px;
  }

  .doseco-catalog-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .doseco-catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .doseco-product-summary-card,
  .doseco-product-support-card,
  .doseco-product-detail-card {
    padding: 22px;
  }

  .doseco-product-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .doseco-product-card-head p {
    max-width: none;
  }

  .doseco-shortcuts-grid {
    gap: 24px 22px;
  }

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

@media (max-width: 720px) {
  .doseco-header-main {
    min-height: 70px;
    gap: 10px;
  }

  .doseco-brand-logo {
    width: auto;
    height: 58px;
  }

  .doseco-brand-title {
    font-size: 14px;
    line-height: 1.15;
  }

  .doseco-header-nav {
    display: none;
  }

  .doseco-catalog-hero {
    padding-top: 12px;
  }

  .doseco-catalog-hero-card {
    padding: 18px 0 20px;
  }

  .doseco-catalog-hero-copy h1 {
    font-size: 34px;
  }

  .doseco-catalog-hero-copy p {
    font-size: 15px;
  }

  .doseco-catalog-hero-stats {
    grid-template-columns: 1fr;
  }

  .doseco-catalog-body {
    padding-top: 18px;
  }

  .doseco-filter-panel-head,
  .doseco-filter-group,
  .doseco-catalog-empty {
    padding-left: 18px;
    padding-right: 18px;
  }

  .doseco-catalog-sort {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .doseco-catalog-sort select {
    width: 100%;
    min-width: 0;
  }

  .doseco-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .doseco-catalog-card-copy {
    padding: 12px 12px 14px;
  }

  .doseco-catalog-card-copy h3 {
    font-size: 15px;
  }

  .doseco-catalog-card-meta,
  .doseco-catalog-card-status,
  .doseco-catalog-card-price span {
    font-size: 13px;
  }

  .doseco-catalog-card-price strong {
    font-size: 16px;
  }

  .doseco-product-breadcrumb {
    padding: 12px 0 10px;
  }

  .doseco-breadcrumb {
    font-size: 13px;
    gap: 6px;
  }

  .doseco-product-hero {
    padding-top: 16px;
  }

  .doseco-product-gallery-card {
    padding: 12px;
  }

  .doseco-product-gallery-stage {
    min-height: 320px;
    padding: 14px;
  }

  .doseco-product-gallery-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .doseco-thumb-card {
    width: 68px;
    flex: 0 0 auto;
  }

  .doseco-product-summary-card,
  .doseco-product-support-card,
  .doseco-product-detail-card {
    padding: 18px;
  }

  .doseco-product-summary-head,
  .doseco-product-pricebox {
    flex-direction: column;
    align-items: flex-start;
  }

  .doseco-product-flags {
    justify-content: flex-start;
  }

  .doseco-product-summary-card h1 {
    font-size: 28px;
  }

  .doseco-product-priceblock strong {
    font-size: 32px;
  }

  .doseco-product-quickfacts,
  .doseco-policy-grid,
  .doseco-related-grid {
    grid-template-columns: 1fr;
  }

  .doseco-product-actions {
    flex-direction: column;
  }

  .doseco-detail-button {
    width: 100%;
  }

  .doseco-product-anchor-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .doseco-product-anchor-nav a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .doseco-spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .doseco-banner-section {
    padding: 10px 0 18px;
  }

  .doseco-banner-stage {
    aspect-ratio: 16 / 9;
  }

  .doseco-shortcuts {
    padding: 6px 0 8px;
  }

  .doseco-shortcuts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .doseco-shortcut-media {
    width: 132px;
  }

  .doseco-section {
    padding-top: 28px;
  }

  .doseco-sale .container {
    padding: 28px 18px 30px;
  }

  .doseco-title {
    font-size: 28px;
  }

  .doseco-title--caps {
    font-size: clamp(22px, 6.6vw, 30px);
  }

  .doseco-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .doseco-section-head--center {
    align-items: center;
  }

  .doseco-news-layout,
  .doseco-footer-grid {
    grid-template-columns: 1fr;
  }

  .doseco-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .doseco-product-grid,
  .doseco-collection-grid,
  .doseco-video-grid,
  .doseco-review-columns {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(84vw, 84vw);
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
  }

  .doseco-product-card,
  .doseco-collection-card,
  .doseco-video-card,
  .doseco-review-column {
    scroll-snap-align: start;
  }

  .doseco-contact-float {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .doseco-contact-launcher {
    width: 54px;
    height: 54px;
  }

  .doseco-contact-rail-label {
    font-size: 18px;
  }

  .doseco-contact-rail-bubble {
    width: 62px;
    height: 62px;
    border-width: 7px;
  }

  .doseco-contact-rail-bubble span {
    font-size: 12px;
  }
}
