:root {
  --gold: #b08a2e;
  --gold-hover: #9a7624;
  --black: #000000;
  --ink: #111111;
  --muted: #666666;
  --line: #e6e6e6;
  --soft: #f2f1ed;
  --white: #ffffff;
  /* Site-wide content width (header / home / inner pages share this) */
  --container: 1560px;
  --gutter: 24px;
  --font: "Poppins", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

.dt01-wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}
.site-main {
  display: block;
  width: 100%;
  overflow: visible;
}

/* ========== HEADER (black) ========== */
.site-header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 90px;
}
.site-logo {
  display: flex;
  align-items: center;
  max-width: 180px;
  line-height: 0;
  text-decoration: none;
}
.site-logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
}
.site-logo--text {
  max-width: min(320px, 42vw);
  line-height: 1.05;
}
.site-logo__text {
  position: relative;
  display: inline-block;
  font-family: var(--display);
  font-size: var(--dt01-logo-size, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
  background-image: linear-gradient(
    105deg,
    #7a5c18 0%,
    #b08a2e 22%,
    #d4af5a 38%,
    #fff6d0 48%,
    #ffffff 50%,
    #fff6d0 52%,
    #d4af5a 62%,
    #b08a2e 78%,
    #7a5c18 100%
  );
  background-size: 220% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: dt01-logo-shine 3.8s linear infinite;
  filter: drop-shadow(0 1px 0 rgba(176, 138, 46, 0.35));
}
@keyframes dt01-logo-shine {
  0% { background-position: 120% 50%; }
  100% { background-position: -120% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .site-logo__text { animation: none; background-position: 40% 50%; }
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 28px;
}
.site-nav__list > li { position: relative; }
.site-nav__list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 32px 0;
  letter-spacing: 0;
}
/* Left-to-right gold underline (WoodMart-style) */
.site-nav__list > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
  pointer-events: none;
}
.site-nav__list > li > a:hover::before,
.site-nav__list > li.current-menu-item > a::before,
.site-nav__list > li.current_page_item > a::before {
  transform: scaleX(1);
}
.site-nav__list > .menu-item-has-children > a::before {
  width: calc(100% - 14px);
}
.site-nav__list > li > a:hover,
.site-nav__list > li.current-menu-item > a {
  color: var(--white);
}
.site-nav__list > .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .85;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.site-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #111;
  border: 1px solid #222;
  padding: 8px 0;
  z-index: 120;
}
.site-nav__list > li:hover > .sub-menu { display: block; }
.site-nav__list .sub-menu a {
  display: block;
  padding: 9px 16px;
  color: #ddd;
  font-size: 13px;
}
.site-nav__list .sub-menu a:hover {
  background: #1a1a1a;
  color: var(--gold);
}

.site-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-tools__search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding-inline: 10px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease;
}
.site-tools__search:hover { color: var(--gold); }
.site-tools__search-icon { display: inline-flex; }
.site-tools__search-icon--close { display: none; }
body.dt01-search-open .site-tools__search-icon--loupe { display: none; }
body.dt01-search-open .site-tools__search-icon--close { display: inline-flex; }
.site-tools__search svg {
  flex-shrink: 0;
  display: block;
}

/* Cart: gold pill + white icon circle + white price + count badge (WoodMart design-8) */
.site-tools__cart {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #fff;
}
.site-tools__cart-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
  border-radius: 42px;
  padding-inline: 3px;
  background: var(--gold);
  color: #fff;
  transition: background-color .25s ease, color .25s ease;
}
.site-tools__cart:hover .site-tools__cart-inner {
  color: rgba(255, 255, 255, .85);
}
.site-tools__cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  flex-shrink: 0;
  transition: color .25s ease;
}
.site-tools__cart:hover .site-tools__cart-icon { color: #767676; }
.site-tools__cart-icon svg { display: block; }
.site-tools__cart-total {
  margin-inline: 10px;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  white-space: nowrap;
  line-height: 1;
}
.site-tools__cart-count {
  position: absolute;
  top: -3px;
  right: -7px;
  z-index: 1;
  min-width: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  box-shadow: 0 0 4px rgba(0, 0, 0, .17);
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

/* ========== FULLSCREEN SEARCH (WoodMart-style) ========== */
.site-search {
  --search-sp: 20px;
  --search-header-offset: 90px;
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding-top: var(--search-header-offset);
  background: #fff;
  box-shadow: 0 0 14px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 100%, 0);
  transition: opacity .5s cubic-bezier(.19, 1, .22, 1) .15s, visibility .5s cubic-bezier(.19, 1, .22, 1) .15s, transform .5s cubic-bezier(.19, 1, .22, 1);
  outline: none;
  box-sizing: border-box;
}
.site-search.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0s, visibility 0s, transform .5s cubic-bezier(.19, 1, .22, 1);
}
body.dt01-search-open {
  overflow: hidden;
}
body.dt01-search-open .site-header {
  z-index: 110;
}
.site-search__close {
  position: absolute;
  top: calc(var(--search-header-offset) + 8px);
  right: 16px;
  z-index: 120;
  width: 72px;
  height: 72px;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.site-search__close svg {
  width: 34px;
  height: 34px;
  display: block;
}
.site-search__close:hover {
  color: #000;
  opacity: .7;
}
.site-search__form {
  padding: 28px 100px 24px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: var(--search-sp);
}
.site-search__input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  text-align: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  color: #333;
  padding: 18px 0;
}
.site-search__input::placeholder {
  color: #333;
  opacity: 1;
}
.site-search__hint {
  margin: 0;
  padding: 0 15px 24px;
  text-align: center;
  font-size: 17px;
  color: #777;
}
.site-search__results {
  flex: 1;
  overflow: auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.site-search__results:empty { display: none; }
.site-search__card {
  text-align: center;
  padding: 10px;
}
.site-search__card a { color: inherit; }
.site-search__card img {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}
.site-search__card-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
}
.site-search__card-price {
  font-size: 13px;
  color: #666;
}
.site-search.is-searched .site-search__hint { display: none; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

/* ========== PROMO MARQUEE — 1:1 WoodMart wd-marquee + Elementor post-167 ========== */
.promo-marquee {
  --promo-gap: 20px;
  --promo-speed: 25s;
  display: flex;
  overflow: hidden;
  gap: var(--promo-gap);
  max-width: 100vw;
  width: 100%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  border: 0;
}
.promo-marquee__content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-shrink: 0;
  gap: var(--promo-gap);
  min-width: 100%;
  white-space: nowrap;
  animation: dt01-marquee var(--promo-speed) linear infinite;
}
.promo-marquee:hover .promo-marquee__content {
  animation-play-state: paused;
}
.promo-marquee__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.promo-marquee__icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
  display: block;
}
@keyframes dt01-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-100% - var(--promo-gap)), 0, 0); }
}

/* ========== HERO (1:1 Aurex / Elementor a431b3e) ========== */
.hero {
  position: relative;
  z-index: 3; /* above .home-soft so hanging features strip stays on top */
  min-height: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: #0a0a0a url("../vendor/aurex/images/banner-copy-scaled.webp") center center / cover no-repeat;
  overflow: visible;
}
.hero__track {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: inherit;
}
.hero__slide {
  display: none;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  background: transparent;
}
.hero__slide.is-active {
  display: flex;
}
.hero__slide.has-bg {
  background-color: #0a0a0a;
  background-image: var(--hero-bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__nav {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.hero__nav--prev { left: 16px; }
.hero__nav--next { right: 16px; }
.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 150px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero__dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 0;
}
.hero__dot.is-active { background: var(--gold); }
.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 60px var(--gutter) 90px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}
.hero__content {
  width: min(100%, 62%);
  max-width: 760px;
}
.hero h1 {
  margin: 0 0 15px;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: #fff;
}
.hero p {
  margin: 0 0 22px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #eaf3ff;
  max-width: 91%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: .2s ease;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  border-radius: 25px;
  padding: 15px 60px 14px;
  font-size: 16px;
  font-weight: 500;
  width: auto;
}
.btn--gold:hover {
  background: #fff;
  color: var(--gold);
}
.btn--outline {
  background: var(--white);
  color: var(--ink);
  border: 1px solid #222;
  border-radius: 0;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  width: 100%;
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* ========== FEATURES BAR — on hero bottom, hangs into soft section ========== */
.features-bar {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: 0;
  margin-bottom: -57px; /* ~half strip hangs onto soft bg */
  background: transparent;
  overflow: visible;
  flex: 0 0 auto;
}
.features-bar .dt01-wrap {
  overflow: visible;
}
.features-bar__card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(124, 124, 124, .5);
  overflow: hidden;
}
.features-bar__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 37px 10px 37px 30px;
  color: #1a1a1a;
  position: relative;
}
.features-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  right: 0;
  width: 1px;
  background: #e6e6e6;
}
.features-bar__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.features-bar__icon svg {
  width: 40px;
  height: 40px;
  display: block;
  fill: currentColor;
}
.features-bar__text {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #1a1a1a;
  white-space: nowrap;
}

.home-soft {
  position: relative;
  z-index: 1; /* below hero — do not cover hanging features strip */
  background: var(--soft);
  overflow: visible;
  padding-top: 57px; /* clear hanging half of features strip */
}

/* ========== SECTIONS / PRODUCTS ========== */
.section {
  padding: 56px 0 40px;
}
.section--soft {
  background: var(--soft);
}
.section--popular {
  padding-top: 40px;
  padding-bottom: 40px;
}
.home-soft .section--popular {
  background: transparent;
}
.section--popular + .section {
  padding-top: 28px;
}
.section--popular .woocommerce {
  margin: 0 !important;
  padding: 0 !important;
  clear: none !important;
}
.section--popular ul.products {
  margin-bottom: 0 !important;
}
.section__title {
  margin: 0 0 32px;
  text-align: center;
  font-family: var(--font);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section__title u {
  text-decoration: none;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
}

.products-grid,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  float: none !important;
  width: 100% !important;
}
ul.products.columns-2 { grid-template-columns: repeat(2, 1fr); }
ul.products.columns-3 { grid-template-columns: repeat(3, 1fr); }
ul.products.columns-4 { grid-template-columns: repeat(4, 1fr); }
.section--popular ul.products,
ul.products.columns-5 { grid-template-columns: repeat(5, 1fr); }
ul.products.columns-6 { grid-template-columns: repeat(6, 1fr); }
.section--arrivals ul.products.columns-4 { grid-template-columns: repeat(4, 1fr); }
ul.products::before,
ul.products::after { display: none !important; content: none !important; }

.product-card,
li.product {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0,0,0,.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  position: relative;
  transition: box-shadow .2s ease;
}
.product-card:hover,
li.product:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,.14);
}
.product-card__media {
  position: relative;
  background: #fff;
  padding: 8px 8px 0;
}
.product-card__media a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--dt01-product-gallery-bg, #ffffff);
}
.product-card__media img,
.product-card__media a img,
li.product .product-card__media img {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  border: 0 !important;
  background: transparent !important;
}
.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #111;
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 12px;
  min-width: 44px;
  text-align: center;
}
.product-card__body {
  padding: 14px 16px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__title {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--gold); }
.product-card__price {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.25;
  margin-top: -4px;
}
.product-card__price .amount,
.product-card__price .woocommerce-Price-amount {
  color: var(--gold);
  font-weight: 600;
}
.product-card__price .screen-reader-text { display: none; }
.product-card__btn,
.product-card__body .btn {
  margin-top: auto;
  width: 100%;
  border-radius: 25px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.product-card__btn:hover,
.product-card__body .btn:hover {
  background: var(--gold-hover);
  color: #fff;
  border-color: var(--gold-hover);
}

.woocommerce-result-count,
.woocommerce-ordering {
  margin: 0 0 22px;
}
.woocommerce-result-count {
  float: left;
  margin-top: 10px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.woocommerce-ordering,
.dt01-ordering {
  float: right;
}
ul.products {
  clear: both;
}
.dt01-ordering__control {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}
.dt01-ordering__select,
.woocommerce-ordering select.orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  min-width: 220px;
  max-width: 100%;
  height: 44px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(176, 138, 46, 0.35);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.04);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.dt01-ordering__select:hover,
.woocommerce-ordering select.orderby:hover {
  border-color: var(--gold);
}
.dt01-ordering__select:focus,
.woocommerce-ordering select.orderby:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 138, 46, 0.18);
}
.dt01-ordering__caret {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  pointer-events: none;
}

/* single / shop page shell */
.page-shell { padding: 36px 0 60px; }
.page-shell h1 { font-family: var(--display); font-size: 40px; margin: 0 0 20px; }

/* home lower sections keep simple spacing */
.home-block { padding: 48px 0; }
.home-block--soft { background: var(--soft); }
.home-block h2 {
  font-family: var(--display);
  font-size: 36px;
  margin: 0 0 16px;
  text-align: center;
}

/* inquiry page */
.inquiry {
  padding: 48px 0 72px;
  background: #fafafa;
}
.inquiry__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}
.inquiry__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.inquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.inquiry-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}
.inquiry-form__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

/* ========== lower homepage / shared blocks ========== */
.section__head { margin-bottom: 28px; }
.section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }
.section__head .section__title { margin-bottom: 10px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--gold); }
.muted { color: var(--muted); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.btn--inline { width: auto; border-radius: 4px; padding: 12px 20px; }

/* ========== WHY TRUST (Aurex left / vial / right) ========== */
.section--trust {
  padding-top: 60px;
  padding-bottom: 60px;
}
.trust__title {
  margin: 0 0 40px;
  text-align: center;
  font-family: var(--font);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trust__title u {
  text-decoration: none;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
}
.trust__grid {
  display: grid;
  /* Aurex 5424c35: repeat(3, 1fr) within ~1300px */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
  align-items: center;
  max-width: none;
  margin-inline: auto;
}
.trust__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item--left {
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
}
.trust-item--right {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}
.trust-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-top: 2px;
}
.trust-item__icon svg {
  width: 36px;
  height: 36px;
  display: block;
  fill: currentColor;
}
.trust-item__title {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.trust-item__text {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #555;
}
.trust__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Aurex 69accd4 + 2c8f2e5: radius 12/15, img height 430–500 */
.trust__media-card {
  width: 100%;
  max-width: none;
  background: var(--dt01-trust-media-bg, #ffffff);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  overflow: hidden;
  padding: 0;
}
.trust__media-card img {
  width: 100%;
  height: 460px;
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: 15px;
}

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

.info-card,
.bundle-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}
.info-card h3,
.bundle-card h2,
.side-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-family: var(--font);
}
.info-card p,
.side-card p,
.bundle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: start;
}
.split__main h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 14px;
}
.split__side { display: grid; gap: 14px; }
.side-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

/* ========== WHAT SETS US APART (Aurex ee24c5d / a0becf8) ========== */
.section--apart {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section--arrivals {
  padding-top: 48px;
  padding-bottom: 48px;
}
.apart {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 48px 56px;
  align-items: stretch;
  justify-content: space-between;
}
.apart__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #222;
}
.apart__heading {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .5px;
  color: var(--ink);
  max-width: none;
}
.apart__intro {
  margin: 0 0 28px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  max-width: 52ch;
}
.apart__intro strong { color: var(--ink); font-weight: 700; }
.apart__points {
  display: flex;
  flex-direction: column;
}
.apart__point h3 {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.apart__point p {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  color: #666;
}
.apart__rule {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 18px 0;
}
.apart__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 0;
  max-height: 560px;
  aspect-ratio: 4 / 5;
  background-color: #111;
  /* Landscape photo in tall card: pin bottom so baked-in vials stay visible */
  background-position: 28% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 72px;
  box-sizing: border-box;
  width: 100%;
}
.apart__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .67);
  z-index: 0;
}
.apart__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 24px;
  width: 100%;
  margin-top: -40px;
}
.apart__logo {
  width: 62%;
  max-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}
.apart__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.apart__logo.site-logo--text {
  width: auto;
  max-width: min(88%, 320px);
  line-height: 1.05;
}
.apart__logo.site-logo--text .site-logo__text {
  font-size: clamp(28px, 4.2vw, 44px);
}
.apart__warn {
  margin: 0;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  max-width: 64%;
}
.apart__warn strong {
  font-weight: 700;
}
.apart__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 167, 91, .81);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 14px 22px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  width: 55%;
  min-width: 180px;
  box-sizing: border-box;
}
.apart__cta:hover {
  background: transparent;
  color: #f8be30;
  border-color: var(--gold);
}

/* ========== CUSTOM BUNDLES (Aurex bb-shell) ========== */
.section--bundles {
  padding: 20px 0 48px;
  background: var(--soft);
}
.bb-shell {
  --bb-gold: #d4a24c;
  --bb-gold-deep: #b5862f;
  --bb-gold-soft: rgba(212, 162, 76, .12);
  --bb-line: rgba(212, 162, 76, .2);
  position: relative;
  max-width: none;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 100%, rgba(212, 162, 76, .14), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(212, 162, 76, .12), transparent 40%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 60%, #0a0a0a 100%);
  border: 1px solid var(--bb-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
  color: #fff;
}
.bb-shell::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 76, .18), transparent 60%);
  pointer-events: none;
}
.bb-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.bb-kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bb-gold-soft);
  color: var(--bb-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--bb-line);
}
.bb-title {
  margin: 18px 0 16px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.bb-title span { color: var(--bb-gold); }
.bb-sub {
  margin: 0 0 24px;
  max-width: 56ch;
  color: rgba(255, 255, 255, .72);
  line-height: 1.78;
  font-size: 16px;
}
.bb-points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.bb-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.55;
}
.bb-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bb-gold-soft);
  border: 1px solid var(--bb-line);
  display: grid;
  place-items: center;
  color: var(--bb-gold);
  font-weight: 800;
  font-size: 12px;
  margin-top: 1px;
}
.bb-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--bb-gold) 0%, var(--bb-gold-deep) 100%);
  color: #1a1100;
  text-decoration: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow:
    0 12px 28px rgba(212, 162, 76, .3),
    0 0 0 1px rgba(212, 162, 76, .35) inset;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
  border: 0;
  width: auto;
  text-transform: none;
}
.bb-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #1a1100;
  box-shadow:
    0 18px 36px rgba(212, 162, 76, .45),
    0 0 0 1px rgba(212, 162, 76, .5) inset;
}
.bb-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bb-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.bb-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 920px) {
  .bb-grid {
    grid-template-columns: 1fr;
  }
  .bb-title {
    font-size: clamp(28px, 8vw, 40px);
  }
}
@media (max-width: 560px) {
  .bb-shell {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .bb-cta {
    width: 100%;
    justify-content: center;
  }
}

.bundle-card--dark {
  background: linear-gradient(160deg, #111, #1c1810);
  color: #fff;
  border: 0;
}
.bundle-card--dark h2 { color: #fff; }
.bundle-card--dark p,
.bundle-card--dark .check-list { color: rgba(255,255,255,.82); }
.bundle-card--dark .btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.bundle-card--dark .btn--outline:hover {
  background: #fff;
  color: #111;
}
.check-list {
  margin: 14px 0 20px;
  padding-left: 1.1rem;
  color: var(--muted);
  list-style: disc;
}
.check-list li { margin-bottom: 8px; }

/* ========== TESTIMONIALS ========== */
.section--testimonials {
  padding-top: 50px;
  padding-bottom: 20px;
  background: #efeeeb;
}
.testimonials__head {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials__title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  color: #252235;
}
.testimonials__sub {
  margin: 0 auto;
  max-width: 48%;
  color: #666;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid #f7f7f7;
  border-radius: 10px;
  padding: 35px 34px 39px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin: 0 0 9px;
}
.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: #fec42d;
  display: block;
}
.review-card__text {
  margin: 0 0 32px;
  color: #252235;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.review-card__author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.review-card__author strong {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #252235;
}

.contact-teaser {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}
.contact-teaser h2 {
  font-family: var(--display);
  font-size: 34px;
  margin: 0 0 12px;
}
.contact-teaser__meta { margin: 12px 0 0; }
.contact-teaser__meta li { margin-bottom: 6px; }
.contact-teaser__actions { display: grid; gap: 10px; min-width: 240px; }

/* ========== NEWSLETTER ========== */
.section--newsletter {
  padding-top: 40px;
  padding-bottom: 60px;
  background: #efeeeb;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 15px;
  padding: 50px;
  background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 45%, #c69a2c 100%);
  color: #fff;
  box-sizing: border-box;
}
.newsletter__copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font);
  font-size: clamp(32px, 3.5vw, 45px);
  font-weight: 500;
  line-height: 1.2;
}
.newsletter__copy p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  max-width: 36ch;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.newsletter__form input {
  width: 100%;
  height: 55px;
  padding: 0 18px;
  border-radius: 25px;
  border: 1px solid #d6b35a;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}
.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, .75);
}
.newsletter__form input:focus {
  border-color: #f3d77a;
}
.newsletter__form button {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 25px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #0b0b0b;
  background: linear-gradient(135deg, #b88718 0%, #d6b35a 50%, #f3d77a 100%);
  transition: filter .2s ease, transform .2s ease;
}
.newsletter__form button:hover {
  filter: brightness(1.06);
  background: linear-gradient(135deg, #f3d77a 0%, #d6b35a 50%, #b88718 100%);
}

.inquiry__intro h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 12px;
}
.inquiry__contacts {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.inquiry__contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.inquiry-form__full { display: grid; gap: 6px; margin-bottom: 14px; font-weight: 600; font-size: 13px; }
.inquiry-form__summary {
  background: #f7f4ea;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 13px;
}
.inquiry-form__privacy { margin: 14px 0 0; font-size: 13px; }

/* ========== SINGLE PRODUCT (standard storefront) ========== */
.page-shell--product {
  padding-top: 28px;
  padding-bottom: 72px;
  background: var(--soft);
}
.dt01-breadcrumb {
  margin: 0 0 20px;
}
.dt01-breadcrumb .woocommerce-breadcrumb {
  margin: 0;
  font-size: 13px;
  color: #8a8a8a;
}
.dt01-breadcrumb a {
  color: #666;
  text-decoration: none;
}
.dt01-breadcrumb a:hover {
  color: var(--gold);
}
.dt01-breadcrumb__sep {
  margin: 0 8px;
  color: #bbb;
}

.dt01-product {
  display: block;
  margin-bottom: 28px;
}

/* Open layout (PuraSynth) — no outer white card */
.dt01-product__panel {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
  gap: 28px 48px;
  align-items: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
}
.dt01-product__gallery,
.dt01-product__media,
.dt01-product__summary {
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
  float: none !important;
  clear: none !important;
}
.dt01-product__summary.summary,
.dt01-product .summary.entry-summary {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
}

/* Product gallery — main square + thumbnail strip */
.dt01-product__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 580px;
  min-width: 0;
}
.dt01-product__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--dt01-product-gallery-bg, #ffffff);
  border: 1px solid rgba(0, 0, 0, .06);
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}
.dt01-product__media:active {
  cursor: grabbing;
}
.dt01-product__track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.dt01-product__track.is-dragging {
  transition: none !important;
}
.dt01-product__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--dt01-product-gallery-bg, #ffffff);
}
.dt01-product__badge {
  display: none;
}
.dt01-product__photo,
.dt01-product__slide img.dt01-product__photo,
.dt01-product__media img.dt01-product__photo,
.dt01-product__photo img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 12px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.dt01-product__photo--placeholder {
  display: block;
}
.dt01-product__ruo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 12px;
}
.dt01-product__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background .15s ease, color .15s ease;
}
.dt01-product__nav:hover {
  background: var(--gold);
  color: #fff;
}
.dt01-product__nav--prev { left: 10px; }
.dt01-product__nav--next { right: 10px; }
.dt01-product__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.dt01-product__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  opacity: .72;
  transition: opacity .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.dt01-product__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
  padding: 6px;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  position: static !important;
  inset: auto !important;
}
.dt01-product__thumb:hover {
  opacity: 1;
  border-color: rgba(176, 138, 46, .45);
}
.dt01-product__thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(176, 138, 46, .25);
}

/* Summary — tight vertical rhythm */
.dt01-product__summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0 0;
  width: 100% !important;
  max-width: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.dt01-product__cat {
  margin: 0 0 6px;
  color: #b42318;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.dt01-product__summary .product_title {
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  color: #111;
  letter-spacing: -0.02em;
}
.dt01-product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.dt01-product__tags li {
  padding: 5px 12px;
  border-radius: 999px;
  background: #ebeae6;
  color: #555;
  font-size: 12px;
  font-weight: 600;
}
.dt01-product__summary .woocommerce-product-details__short-description {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  max-width: 52ch;
}
.dt01-product__summary .woocommerce-product-details__short-description p {
  margin: 0;
}
.dt01-product__summary .product_meta {
  display: none;
}

.dt01-product__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.dt01-product .variations_form {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Dosage/Pack stack under price */
.dt01-buy-top {
  display: block;
  width: 100%;
}
.dt01-buy-top__main {
  min-width: 0;
}
.dt01-variations {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dt01-var-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dt01-var-block__label {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}
.dt01-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.dt01-swatch {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  min-height: 44px;
  height: auto;
  padding: 8px 8px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
  text-align: center;
  cursor: pointer;
}
.dt01-swatch:hover {
  border-color: #111;
}
.dt01-swatch.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}
.dt01-swatch-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}
.dt01-product .reset_variations,
.dt01-product .wd-reset-var,
.dt01-product .woocommerce-variation,
.dt01-product .woocommerce-variation-price {
  display: none !important;
}
.dt01-product .single_variation_wrap,
.dt01-product .woocommerce-variation-add-to-cart,
.dt01-product form.cart:not(.variations_form) {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  align-items: stretch;
}

/* Price above Dosage (stacked) */
.dt01-product__price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  margin: 0 0 4px;
  min-width: 0;
}
.dt01-product__live-price {
  color: var(--gold);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  text-align: left;
}
.dt01-product__live-price.is-range {
  font-size: 18px;
  color: #666;
  white-space: normal;
  max-width: 9rem;
}
.dt01-product__live-price .price,
.dt01-product__live-price .woocommerce-Price-amount,
.dt01-product__live-price .amount {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.dt01-product__live-price .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.dt01-product__live-price del {
  opacity: .45;
  margin-right: 6px;
  font-size: .55em;
}

.dt01-qty-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.dt01-product .quantity {
  display: inline-flex;
  align-items: stretch;
  margin: 0;
  width: 148px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  overflow: hidden;
  height: 46px;
  background: #fff;
}
.dt01-product .quantity .minus,
.dt01-product .quantity .plus {
  width: 44px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.dt01-product .quantity .minus:hover,
.dt01-product .quantity .plus:hover {
  background: #f3f3f1;
}
.dt01-product .quantity .qty,
.dt01-product .quantity .input-text {
  flex: 1;
  width: auto;
  min-width: 0;
  height: 100%;
  border: 0 !important;
  border-radius: 0 !important;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none !important;
  -moz-appearance: textfield;
}
.dt01-product .quantity .qty::-webkit-outer-spin-button,
.dt01-product .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dt01-product .single_add_to_cart_button,
.dt01-product .single_add_to_cart_button.button,
.dt01-product .single_add_to_cart_button.alt,
.dt01-product .btn.dt01-add-to-quote,
.dt01-product__cta,
.dt01-product .single_add_to_cart_button.disabled,
.dt01-product .single_add_to_cart_button:disabled,
.dt01-product .single_add_to_cart_button.wc-variation-selection-needed {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 52px !important;
  padding: 14px 22px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gold) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
}
.dt01-product .single_add_to_cart_button:hover,
.dt01-product .btn.dt01-add-to-quote:hover,
.dt01-product__cta:hover {
  background: var(--gold-hover) !important;
  color: #fff !important;
}
.dt01-product .single_add_to_cart_button.disabled,
.dt01-product .single_add_to_cart_button:disabled,
.dt01-product .single_add_to_cart_button.wc-variation-selection-needed {
  opacity: .45 !important;
  cursor: not-allowed !important;
}

/* Trust strip */
.dt01-product__assures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 18px 0 0;
  padding: 16px 18px;
  list-style: none;
  background: rgba(0, 0, 0, .035);
  border-radius: 12px;
  border: 0;
}
.dt01-product__assures li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}
.dt01-product__assure-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  color: var(--gold);
}
.dt01-product__assure-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.dt01-product__assure-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dt01-product__assures li strong {
  color: #111;
  font-size: 12px;
  font-weight: 700;
}
.dt01-product__assure-copy > span {
  color: #777;
  font-size: 11px;
  font-weight: 500;
}

/* Tabs — open, not a heavy card */
.dt01-product__tabs {
  margin-top: 40px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0 20px;
  overflow: visible;
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.dt01-product__tabs .woocommerce-tabs {
  margin: 0;
}
.dt01-product__tabs .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: transparent;
}
.dt01-product__tabs .woocommerce-tabs ul.tabs::before,
.dt01-product__tabs .woocommerce-tabs ul.tabs::after {
  display: none !important;
  content: none !important;
}
.dt01-product__tabs .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
}
.dt01-product__tabs .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 14px 4px;
  margin-right: 22px;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 0 !important;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.dt01-product__tabs .woocommerce-tabs ul.tabs li.active a {
  color: #111;
  border-bottom-color: var(--gold);
}
.dt01-product__tabs .woocommerce-Tabs-panel {
  margin: 0;
  padding: 20px 4px 8px;
  border: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.dt01-product__tabs .woocommerce-Tabs-panel > h2:first-child {
  display: none;
}
.dt01-product-after {
  margin-top: 36px;
}
.dt01-product-after .related,
.dt01-product-after .upsells {
  margin: 0;
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(17, 17, 17, .04);
}
.dt01-product-after .related > h2,
.dt01-product-after .upsells > h2 {
  font-family: var(--font);
  font-size: 24px;
  margin: 0 0 18px;
  font-weight: 700;
}

.page-shell__head { margin-bottom: 20px; }

.site-footer {
  display: block;
  width: 100%;
  clear: both;
  background: #000;
  color: #f7f7f7;
  padding: 56px 0 28px;
  border-top: 2px solid rgba(255, 255, 255, .08);
}
.site-footer a {
  color: #f7f7f7;
  text-decoration: none;
  transition: color .2s ease;
}
.site-footer a:hover {
  color: var(--gold);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .85fr) 1.15fr;
  gap: 28px 36px;
  align-items: start;
  padding-bottom: 28px;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  max-width: 180px;
  text-decoration: none;
}
.site-footer__logo.site-logo--text {
  max-width: min(280px, 100%);
  line-height: 1.05;
}
.site-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.site-footer__logo.site-logo--text .site-logo__text {
  font-size: var(--dt01-logo-size-footer, var(--dt01-logo-size, 26px));
}
.site-footer__blurb {
  margin: 14px 0 0;
  max-width: 85%;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: #f7f7f7;
}
.site-footer__nav ul,
.site-footer__contact,
.site-footer__bottom-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav li + li {
  margin-top: 10px;
}
.site-footer__nav a {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.site-footer__contact {
  display: grid;
  gap: 14px;
}
.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #f7f7f7;
}
.site-footer__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--gold);
}
.site-footer__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}
.site-footer__legal {
  margin: 0;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .02em;
  color: #e7e7e7;
}
.site-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.site-footer__bottom-links a {
  color: #c7c7c7;
  font-size: 14px;
  font-weight: 500;
}
.site-footer__bottom-links a:hover {
  color: var(--gold);
}

@media (max-width: 1100px) {
  .products-grid, ul.products,
  .section--popular ul.products,
  ul.products.columns-5 { grid-template-columns: repeat(3, 1fr); }
  .site-header__inner { grid-template-columns: 160px 1fr auto; }
  .site-logo, .site-logo img { max-width: 150px; }
  .site-logo--text { max-width: min(58vw, 220px); }
  .site-logo--text .site-logo__text {
    font-size: var(--dt01-logo-size-mobile, 18px);
    letter-spacing: 0.06em;
    white-space: normal;
  }
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .site-footer__contact {
    grid-column: 1 / -1;
  }
  .trust__grid { gap: 20px 18px; }
  .trust-item__title { font-size: 16px; }
  .trust-item__text { font-size: 13px; }
  .trust__media-card img { height: 400px; }
  .hero h1 { font-size: 48px; }
  .features-bar__text { font-size: 16px; }
  .features-bar__item { padding: 28px 12px; }
  .features-bar__icon,
  .features-bar__icon svg { width: 34px; height: 34px; }
}
@media (max-width: 900px) {
  .woocommerce-result-count,
  .woocommerce-ordering,
  .dt01-ordering {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  .dt01-ordering__control,
  .dt01-ordering__select,
  .woocommerce-ordering select.orderby {
    width: 100%;
    min-width: 0;
  }
  .site-header__inner { grid-template-columns: 1fr auto; min-height: 64px; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: block;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #111;
    padding: 4px 16px 16px;
    border-top: 1px solid #222;
    z-index: 200;
  }
  .site-nav.is-open .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .site-nav.is-open .site-nav__list > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-nav.is-open .site-nav__list > li > a {
    display: flex;
    width: 100%;
    padding: 14px 0;
    box-sizing: border-box;
  }
  /* Underline under the label (desktop bottom:26px would strike through on mobile) */
  .site-nav.is-open .site-nav__list > li > a::before {
    bottom: 0;
    width: 100%;
  }
  .site-nav.is-open .site-nav__list > .menu-item-has-children > a::before {
    width: calc(100% - 22px);
  }
  /* Submenus collapsed by default on mobile */
  .site-nav.is-open .sub-menu {
    position: static !important;
    display: none !important;
    border: 0;
    background: transparent;
    padding: 0 0 8px 12px;
    min-width: 0;
    box-shadow: none;
  }
  .site-nav.is-open .menu-item-has-children.is-submenu-open > .sub-menu {
    display: block !important;
  }
  .site-nav.is-open .menu-item-has-children > a::after {
    margin-left: auto;
    transition: transform .2s ease;
  }
  .site-nav.is-open .menu-item-has-children.is-submenu-open > a::after {
    transform: rotate(180deg);
  }
  .nav-toggle { display: flex; }
  .site-tools__search span:not(.site-tools__search-icon) { display: none; }
  .site-search { --search-header-offset: 64px; }
  .site-search__form { padding: 18px 20px 14px; }
  .site-search__input { font-size: 22px; padding: 12px 0; }
  .site-search__close { width: 56px; height: 56px; right: 4px; }
  .site-search__close svg { width: 26px; height: 26px; }
  .promo-marquee { font-size: 15px; }
  .hero {
    min-height: min(72vh, 640px);
    background-image: url("../vendor/aurex/images/mobile-copy-2.webp");
    background-position: center center;
    background-size: cover;
  }
  .hero__slide.has-bg:not(.has-mobile-bg) {
    /* No mobile art: crop desktop banner to a tighter focal band */
    background-position: center 28%;
    background-size: cover;
  }
  .hero__slide.has-bg.has-mobile-bg {
    background-image: var(--hero-bg-m);
    background-position: center center;
    background-size: cover;
  }
  .hero__inner { padding: 36px var(--gutter) 56px; }
  .hero__content { width: 100%; max-width: 100%; text-align: center; }
  .hero h1 { font-size: 34px; line-height: 1.08; letter-spacing: 1px; }
  .hero p { margin-inline: auto; max-width: 95%; font-size: 15px; }
  .btn--gold { padding: 13px 50px 12px; }
  .hero__dots { bottom: 120px; }
  .features-bar { margin-bottom: -40px; }
  .home-soft { padding-top: 40px; }
  .features-bar__card { grid-template-columns: 1fr 1fr; }
  .features-bar__item { padding: 22px 16px; justify-content: flex-start; }
  .features-bar__item:nth-child(odd)::after { display: block; }
  .features-bar__item:nth-child(even)::after { display: none; }
  .features-bar__text { font-size: 15px; white-space: normal; }
  .features-bar__icon,
  .features-bar__icon svg { width: 28px; height: 28px; }
  .section--popular { padding-top: 28px; }
  .products-grid,
  ul.products,
  .section--popular ul.products,
  .section--arrivals ul.products,
  ul.products.columns-2,
  ul.products.columns-3,
  ul.products.columns-4,
  ul.products.columns-5,
  ul.products.columns-6,
  .section--arrivals ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  .product-card__title,
  li.product .product-card__title {
    font-size: 13px;
    line-height: 1.35;
  }
  .product-card__btn,
  li.product .product-card__btn {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .card-grid--2,
  .card-grid--3,
  .trust__grid,
  .apart,
  .split,
  .inquiry__grid,
  .inquiry-form__row,
  .inquiry-form__actions,
  .site-footer__top,
  .site-footer__grid,
  .dt01-product__panel,
  .dt01-product,
  .single-product,
  .contact-teaser,
  .newsletter {
    grid-template-columns: 1fr;
    display: grid;
  }
  .testimonials__grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 4px 14px;
    margin-inline: calc(var(--gutter) * -0.35);
    padding-inline: calc(var(--gutter) * 0.35);
    scrollbar-width: none;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonials__grid .review-card {
    flex: 0 0 min(86%, 340px);
    scroll-snap-align: center;
    min-height: auto;
    padding: 24px 22px 28px;
  }
  .dt01-product__panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0;
  }
  .dt01-product__gallery,
  .dt01-product__media {
    max-width: 480px;
    margin: 0 auto;
  }
  .dt01-product__thumb {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }
  .dt01-product__nav {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .dt01-product__summary {
    max-width: none;
  }
  .dt01-product__summary .product_title {
    font-size: 28px;
  }
  .dt01-product__price-box {
    padding-top: 0;
    align-items: flex-start;
  }
  .dt01-product__live-price {
    font-size: 28px;
    text-align: left;
  }
  .dt01-product__tabs {
    padding: 0 12px;
  }
  .dt01-swatch {
    min-width: 0;
  }
  .dt01-product .quantity {
    width: 140px;
  }
  .dt01-product__assures {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .testimonials__sub { max-width: 100%; }
  .testimonials__title { font-size: 34px; line-height: 40px; }
  .site-footer__top { gap: 28px 20px; }
  .site-footer__blurb { max-width: 100%; }
  .site-footer__legal { font-size: 14px; line-height: 1.65; }
  .newsletter {
    padding: 28px 22px;
    gap: 24px;
  }
  .newsletter__copy h2 { font-size: 32px; line-height: 38px; }
  .newsletter__copy p { font-size: 16px; max-width: none; }
  .apart { gap: 40px; }
  .apart__heading {
    max-width: none;
    text-align: center;
    font-size: 30px;
  }
  .apart__eyebrow,
  .apart__intro { text-align: center; }
  .apart__intro { margin-inline: auto; }
  .apart__card {
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    padding: 32px 24px 48px;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    background-position: 30% 100%;
  }
  .apart__card-inner { margin-top: 0; }
  .apart__logo { width: 170px; max-width: 50%; }
  .apart__logo.site-logo--text { width: auto; max-width: 80%; }
  .apart__logo.site-logo--text .site-logo__text { font-size: clamp(22px, 7vw, 32px); }
  .apart__warn { max-width: 100%; }
  .apart__cta {
    min-width: 0;
    width: auto;
    font-size: 15px;
    padding: 15px 25px;
  }
  .trust__col--left { order: 2; }
  .trust__media { order: 1; }
  .trust__col--right { order: 3; }
  .trust-item--left {
    flex-direction: row-reverse;
    justify-content: flex-start;
    text-align: left;
  }
  .trust__title { margin-bottom: 28px; }
  .trust__media-card { max-width: 360px; margin-inline: auto; }
  .trust__media-card img { height: 380px; }
  .contact-teaser__actions { min-width: 0; }
}
