/*
Theme Name: Uerosdoll Premium
Theme URI: https://uerosdoll.com/
Author: Uerosdoll
Description: Premium discreet adult ecommerce homepage theme for Uerosdoll.
Version: 1.0.0
Text Domain: uerosdoll-premium
*/
:root {
  --bg: #f6f4f0;
  --ink: #101010;
  --muted: #575b60;
  --line: #d7d2c9;
  --soft: #eef1ee;
  --charcoal: #171717;
  --gold: #a77731;
  --red: #8f2e2a;
  --teal: #2f6b64;
  --shadow: 0 20px 54px rgba(10, 10, 10, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--bg) 460px, #e8ece9 100%);
}

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

button,
select,
input {
  font: inherit;
}

.promo-bar {
  position: relative;
  z-index: 55;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px clamp(16px, 4vw, 34px);
  color: #fff;
  background: #161616;
  font-size: 0.9rem;
}

.promo-bar span {
  color: #e8c990;
  font-weight: 850;
  text-transform: uppercase;
}

.promo-bar strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promo-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(8px);
}

.age-gate.hidden,
.cookie-bar.hidden {
  display: none;
}

.age-card {
  width: min(460px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: #fbfaf8;
  box-shadow: var(--shadow);
}

.age-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0;
}

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

.age-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
}

.btn.light {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn.ghost {
  border-color: var(--line);
}

.cookie-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 18px;
  color: #fff;
  background: #151515;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-bar button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: block;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(16px);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 8px 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
}

.logo img {
  display: block;
  width: 168px;
  height: 70px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 48px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  background: #111;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 750;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.main-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 13px;
  white-space: nowrap;
}

.main-nav > a:hover,
.nav-item > a:hover {
  color: #d5a85f;
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 48px;
  left: 50%;
  display: none;
  gap: 28px;
  min-width: 760px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  color: var(--ink);
  background: #fbfaf7;
  box-shadow: var(--shadow);
  transform: translateX(-35%);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  display: grid;
}

.products-menu {
  grid-template-columns: repeat(6, minmax(100px, 1fr));
}

.stock-menu {
  min-width: 320px;
  grid-template-columns: 1fr;
  transform: translateX(-20%);
}

.mega-menu h3 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--gold);
}

.mega-menu a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.header-tools button,
.header-tools select {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf9;
}

.header-tools button {
  padding: 0 10px;
}

.header-tools a {
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.06));
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  padding: 132px 0 0 clamp(20px, 7vw, 96px);
}

.hero h1 {
  margin: 18px 0;
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 0 0 30px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.age-pill,
.eyebrow {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.age-pill {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
}

/* Editorial homepage hero */
.home-editorial-hero {
  min-height: 760px;
  background: #120b08;
  isolation: isolate;
}

.home-editorial-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 9, 6, 0.94) 0%, rgba(16, 9, 6, 0.79) 31%, rgba(16, 9, 6, 0.21) 64%, rgba(16, 9, 6, 0.42) 100%),
    linear-gradient(0deg, rgba(10, 6, 4, 0.58), transparent 45%);
}

.home-hero-media,
.home-hero-main {
  z-index: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-main {
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.015);
}

.home-editorial-copy {
  z-index: 3;
  width: min(690px, calc(100% - 40px));
  padding-top: 112px;
}

.home-hero-eyebrow {
  display: block;
  margin-top: 24px;
  color: #d8b475;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-editorial-hero h1 {
  margin: 16px 0 22px;
  max-width: 660px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 6.2vw, 6.8rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.045em;
}

.home-editorial-hero h1 em {
  color: #d6b271;
  font-weight: 400;
}

.home-editorial-hero p {
  max-width: 590px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.home-editorial-hero .btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 0;
  letter-spacing: 0.04em;
}

.home-editorial-hero .btn.primary {
  border-color: #c7a261;
  background: #c7a261;
  color: #160f0b;
}

.home-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-notes span::before {
  content: "◇";
  margin-right: 9px;
  color: #d6b271;
}

.home-hero-gallery {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 3.2vw, 62px);
  bottom: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 122px));
  gap: 10px;
}

.home-hero-gallery figure {
  position: relative;
  height: 164px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 117, 0.66);
  background: #241611;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.home-hero-gallery figure:nth-child(even) {
  transform: translateY(-22px);
}

.home-hero-gallery img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 450ms ease;
}

.home-hero-gallery figure:hover img {
  transform: scale(1.05);
}

@media (max-width: 1180px) {
  .home-hero-gallery {
    grid-template-columns: repeat(4, 92px);
  }

  .home-hero-gallery figure {
    height: 132px;
  }
}

@media (max-width: 900px) {
  .home-editorial-hero {
    min-height: 700px;
  }

  .home-editorial-copy {
    padding-top: 88px;
  }

  .home-hero-gallery {
    grid-template-columns: repeat(4, 76px);
  }

  .home-hero-gallery figure {
    height: 108px;
  }
}

@media (max-width: 620px) {
  .home-editorial-hero {
    min-height: 680px;
  }

  .home-editorial-hero::after {
    background: linear-gradient(180deg, rgba(14, 8, 5, 0.8) 0%, rgba(14, 8, 5, 0.54) 44%, rgba(14, 8, 5, 0.9) 100%);
  }

  .home-hero-main {
    object-position: 55% 28%;
  }

  .home-editorial-copy {
    padding-top: 54px;
  }

  .home-editorial-hero h1 {
    font-size: clamp(3.35rem, 15vw, 4.7rem);
  }

  .home-editorial-hero p {
    line-height: 1.55;
  }

  .home-hero-gallery {
    display: none;
  }

  .home-hero-notes {
    gap: 8px 16px;
    margin-top: 22px;
  }
}

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

.trust-bar div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 106px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-bar strong {
  font-size: 1.15rem;
}

.trust-bar span {
  color: rgba(255, 255, 255, 0.66);
}

.seo-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.inner-pages {
  padding: 34px clamp(20px, 6vw, 86px) 72px;
  background:
    linear-gradient(180deg, #eef1ee, #e1e7e4);
  scroll-margin-top: 86px;
}

.inner-shell {
  display: block;
}

.category-rail button,
.warehouse-pill,
.brand-card button,
.info-card-grid button,
.article-grid button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.category-rail button.active,
.page-link.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.inner-content {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.inner-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 34px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(167, 119, 49, 0.18), rgba(255, 255, 255, 0)),
    #f8f4ee;
}

.inner-page-head h2 {
  margin: 8px 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.inner-page-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.breadcrumb {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
  background: #fffdf9;
  font-size: 0.85rem;
}

.catalog-page {
  padding: 24px;
}

.category-rail {
  display: grid;
  gap: 12px;
}

.top-category-rail {
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  margin-bottom: 18px;
}

.inner-group {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2f3f1;
}

.inner-group h3 {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.filter-bar select {
  min-height: 42px;
  width: 100%;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fffdf9;
}

.sub-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  margin-bottom: 16px;
  padding: 18px 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #171717, #315f59);
}

.sub-hero strong {
  font-size: 1.25rem;
}

.sub-hero span {
  color: rgba(255, 255, 255, 0.72);
}

.inner-products {
  grid-template-columns: repeat(3, 1fr);
}

.warehouse-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.warehouse-pill {
  min-height: 74px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #222, #315f59);
}

.brand-page-grid,
.info-card-grid,
.article-grid,
.process-grid {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.brand-page-grid {
  grid-template-columns: repeat(4, 1fr);
}

.brand-card,
.info-card-grid article,
.article-grid article,
.process-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.brand-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.brand-card span {
  display: grid;
  place-items: center;
  min-height: 82px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #222, #315f59);
  font-size: 1.25rem;
  font-weight: 850;
}

.brand-card p,
.info-card-grid p,
.article-grid p,
.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.info-card-grid article,
.article-grid article {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.info-card-grid h3,
.article-grid h3,
.process-grid h3 {
  margin: 0;
  font-size: 1.25rem;
}

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

.process-grid article span,
.article-grid article span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.inner-certificates {
  padding: 24px;
}

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

.help-grid {
  grid-template-columns: repeat(4, 1fr);
}

.utility-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.utility-panel.two-column {
  grid-template-columns: repeat(2, 1fr);
}

.utility-panel label,
.utility-panel article {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.utility-panel label span {
  font-weight: 850;
}

.utility-panel input {
  min-height: 46px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links button,
.utility-panel article button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.utility-panel h3,
.utility-panel p {
  margin: 0;
}

.utility-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: 76px clamp(20px, 6vw, 86px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.certificate-grid,
.feature-tiles,
.region-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

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

.certificate-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 138, 68, 0.16), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(-45deg, #fff, #fff 12px, #faf8f4 13px, #faf8f4 24px);
}

.certificate-card span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(184, 138, 68, 0.5);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.certificate-card strong,
.certificate-card small {
  display: block;
}

.certificate-card strong {
  margin: 52px 0 8px;
  font-size: 1.2rem;
}

.certificate-card small {
  color: var(--muted);
}

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

.feature-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 34px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}

.feature-tile.dark {
  background:
    linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 72% 28%, #6f6250, transparent 30%),
    linear-gradient(135deg, #1e1e1e, #4d4a45);
}

.feature-tile.gold {
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 72% 20%, #f2d7a5, transparent 28%),
    linear-gradient(135deg, #9a7138, #242424);
}

.feature-tile span {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 850;
}

.feature-tile strong {
  max-width: 340px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

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

.region-grid {
  grid-template-columns: repeat(4, 1fr);
}

.region-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 280px;
  padding: 22px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #1f1f1f, #315f59);
}

.region-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.region-card span,
.region-card button {
  position: relative;
}

.region-card span {
  font-size: 1.65rem;
  font-weight: 850;
}

.region-card button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.europe { background: linear-gradient(135deg, #252525, #6f624f); }
.canada { background: linear-gradient(135deg, #2c2a2a, #8c3d3a); }
.australia { background: linear-gradient(135deg, #1b1b1b, #3f5b58); }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.brand-grid span {
  display: grid;
  place-items: center;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #444;
  background: #fff;
  font-weight: 800;
}

.promise-section {
  background: #f8f8f5;
}

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

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

.promise-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 850;
}

.promise-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

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

.product-section.alt {
  background: #111;
  color: #fff;
}

.product-section.alt .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.alt .product-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #1b1b1b;
}

.product-image {
  position: relative;
  display: block;
  min-height: 400px;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.08) 26%, transparent 27%),
    linear-gradient(145deg, #e8e4dc, #cfc6ba 48%, #2b2b2b);
}

.product-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: 42%;
  height: 62%;
  border-radius: 44% 44% 28% 28%;
  background: linear-gradient(145deg, #f3efe8, #c2b8aa);
  transform: translateX(-50%);
  box-shadow: inset -18px -18px 36px rgba(0, 0, 0, 0.12);
}

.product-image:has(img)::after {
  display: none;
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
}

.tag.new {
  background: var(--gold);
}

.tag.stock {
  background: #2d6f58;
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-info h3 {
  margin: 0;
  font-size: 1.04rem;
}

.specs {
  color: var(--muted);
  font-size: 0.9rem;
}

.alt .specs {
  color: rgba(255, 255, 255, 0.62);
}

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

.price {
  font-size: 1.2rem;
  font-weight: 850;
}

.rating {
  color: var(--gold);
  white-space: nowrap;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

.card-actions button:first-child,
.card-actions .button-link:first-child,
.button-link:not(.secondary) {
  color: #fff;
  background: var(--ink);
}

.card-actions button:last-child,
.card-actions .button-link:last-child,
.button-link.secondary {
  background: #fff;
}

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

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

summary {
  padding: 20px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 48px clamp(20px, 6vw, 86px) 28px;
  color: #fff;
  background: #101010;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter h2,
.newsletter p {
  margin: 0;
}

.newsletter p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.newsletter form {
  display: flex;
  gap: 8px;
}

.newsletter input {
  width: min(320px, 46vw);
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  background: #1c1c1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding: 38px 0;
}

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

.footer-grid a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
    padding: 8px 16px;
  }

  .menu-toggle {
    display: none;
    place-items: center;
  }

  .main-nav {
    position: static;
    display: flex;
    justify-content: flex-start;
    max-height: none;
    padding: 0 16px;
    border-bottom: 0;
    background: #fff;
    overflow-x: auto;
  }

  .main-nav.open {
    display: flex;
    justify-content: stretch;
  }

  .main-nav > a,
  .nav-item > a {
    min-height: 48px;
    padding: 0 12px;
  }

  .mega-menu {
    position: static;
    display: none;
    min-width: auto;
    padding: 14px;
    box-shadow: none;
    transform: none;
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    position: absolute;
    top: 48px;
    display: grid;
    max-width: min(92vw, 760px);
    overflow: auto;
    transform: none;
  }

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

  .header-tools {
    justify-content: end;
  }

  .top-category-rail {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .process-grid,
  .brand-page-grid,
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .header-tools select,
  .header-tools a {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .trust-bar,
  .certificate-grid,
  .feature-tiles,
  .region-grid,
  .brand-grid,
  .promise-grid,
  .product-grid,
  .filter-bar,
  .warehouse-strip,
  .info-card-grid,
  .article-grid,
  .footer-grid,
  .newsletter {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid,
  .brand-page-grid,
  .help-grid,
  .utility-panel.two-column {
    grid-template-columns: 1fr 1fr;
  }

  .inner-page-head {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    width: fit-content;
  }

  .newsletter form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .cookie-bar {
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero {
    min-height: 560px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 72px 0 0 16px;
  }

  .trust-bar,
  .certificate-grid,
  .feature-tiles,
  .region-grid,
  .brand-grid,
  .promise-grid,
  .product-grid,
  .filter-bar,
  .warehouse-strip,
  .inner-products,
  .info-card-grid,
  .article-grid,
  .process-grid,
  .brand-page-grid,
  .help-grid,
  .utility-panel.two-column,
  .footer-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .inner-pages {
    padding: 24px 16px 54px;
  }

  .catalog-page,
  .brand-page-grid,
  .info-card-grid,
  .article-grid,
  .process-grid,
  .inner-certificates {
    padding: 16px;
  }

  .inner-page-head {
    padding: 24px 16px;
  }

  .sub-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-image {
    min-height: 360px;
  }

  .section {
    padding: 54px 16px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input {
    width: 100%;
  }

  .promo-bar {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }

  .promo-bar strong {
    white-space: normal;
  }

  .promo-bar a {
    justify-self: center;
  }
}
.page-hero {
  padding: clamp(48px, 9vw, 96px) clamp(18px, 5vw, 64px);
  background: #f4f1ea;
  border-bottom: 1px solid var(--line);
}

.page-hero > div {
  max-width: 980px;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  margin: 8px 0 14px;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.content-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px) 18px;
  color: var(--ink);
}

.content-page h1 {
  display: none;
}

.content-page h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: 0;
}

.content-page p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.content-page a {
  color: var(--red);
  font-weight: 800;
}

body.page .footer {
  margin-top: 0;
}


/* Noble Dolls inspired dark homepage palette */
.ueros-home {
  background: #000;
  color: #fff;
}

.ueros-home .inner-pages,
.ueros-home .section,
.ueros-home .stock-section,
.ueros-home .promise-section,
.ueros-home .faq-section {
  background: #000;
  color: #fff;
}

.ueros-home .product-section.alt,
.ueros-home .trust-bar {
  background: #050505;
}

.ueros-home .section-heading p,
.ueros-home .promise-card p,
.ueros-home .faq-section p {
  color: rgba(255, 255, 255, 0.72);
}

.ueros-home .promise-card,
.ueros-home details {
  border-color: rgba(255, 255, 255, 0.16);
  background: #0a0a0a;
  color: #fff;
}

/* Preserve readable light product cards */
.ueros-home .product-section:not(.alt) .product-card,
.ueros-home .product-section:not(.alt) .product-card h3 a,
.ueros-home .product-section:not(.alt) .product-card .price {
  color: #101010;
}

.ueros-home .product-card .card-actions a:first-child {
  color: #fff;
}

.ueros-home .product-card .card-actions a:last-child {
  color: #101010;
}

.ueros-home .product-card,
.ueros-home .product-card h3 a,
.ueros-home .product-card .price { color: #101010; }
.ueros-home .product-section.alt .product-card,
.ueros-home .product-section.alt .product-card h3 a,
.ueros-home .product-section.alt .product-card .price { color: #fff; }


/* Fully black mysterious product presentation */
.ueros-home .product-card,
.ueros-home .product-section.alt .product-card {
  background: #000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.ueros-home .product-card h3 a,
.ueros-home .product-card .price,
.ueros-home .product-card .specs,
.ueros-home .product-section.alt .product-card h3 a,
.ueros-home .product-section.alt .product-card .price {
  color: #fff;
}

.ueros-home .product-card .specs {
  color: rgba(255, 255, 255, 0.72);
}

.ueros-home .product-card .card-actions a,
.ueros-home .product-card .card-actions a:first-child,
.ueros-home .product-card .card-actions a:last-child {
  background: #000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.ueros-home .product-card .card-actions a:hover {
  background: #fff;
  color: #000;
}


/* Fully black WooCommerce and inner pages */
body:not(.ueros-home),
body:not(.ueros-home) #page,
body:not(.ueros-home) .site-content,
body:not(.ueros-home) .content-area,
body:not(.ueros-home) .site-main,
body:not(.ueros-home) article,
body:not(.ueros-home) .woocommerce,
body:not(.ueros-home) .woocommerce-tabs,
body:not(.ueros-home) .woocommerce-Tabs-panel {
  background: #000;
  color: #fff;
}

body:not(.ueros-home) a,
body:not(.ueros-home) h1,
body:not(.ueros-home) h2,
body:not(.ueros-home) h3,
body:not(.ueros-home) h4,
body:not(.ueros-home) .price,
body:not(.ueros-home) .amount,
body:not(.ueros-home) .woocommerce-loop-product__title,
body:not(.ueros-home) .woocommerce-breadcrumb {
  color: #fff;
}

body:not(.ueros-home) p,
body:not(.ueros-home) .product_meta,
body:not(.ueros-home) .woocommerce-result-count {
  color: rgba(255, 255, 255, 0.76);
}

body:not(.ueros-home) input,
body:not(.ueros-home) textarea,
body:not(.ueros-home) select,
body:not(.ueros-home) table,
body:not(.ueros-home) th,
body:not(.ueros-home) td,
body:not(.ueros-home) .select2-selection,
body:not(.ueros-home) .woocommerce-message,
body:not(.ueros-home) .woocommerce-info,
body:not(.ueros-home) .woocommerce-error {
  background: #080808;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

body:not(.ueros-home) button,
body:not(.ueros-home) .button,
body:not(.ueros-home) input[type="submit"],
body:not(.ueros-home) .woocommerce a.button,
body:not(.ueros-home) .woocommerce button.button {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

body:not(.ueros-home) button:hover,
body:not(.ueros-home) .button:hover,
body:not(.ueros-home) input[type="submit"]:hover,
body:not(.ueros-home) .woocommerce a.button:hover,
body:not(.ueros-home) .woocommerce button.button:hover {
  background: #fff;
  color: #000;
}

body:not(.ueros-home) .woocommerce div.product .woocommerce-tabs ul.tabs li,
body:not(.ueros-home) .woocommerce div.product .woocommerce-tabs ul.tabs::before {
  background: #080808;
  border-color: rgba(255, 255, 255, 0.24);
}

body:not(.ueros-home) .woocommerce div.product p.price,
body:not(.ueros-home) .woocommerce div.product span.price { color: #fff !important; }
body:not(.ueros-home) .woocommerce div.product button.single_add_to_cart_button { background: #000 !important; color: #fff !important; border-color: rgba(255,255,255,.75) !important; }
body:not(.ueros-home) .woocommerce div.product button.single_add_to_cart_button:hover { background: #fff !important; color: #000 !important; }

html body.woocommerce:not(.ueros-home) .summary .price,
html body.woocommerce:not(.ueros-home) .summary .price * { color: #fff !important; }
html body.woocommerce:not(.ueros-home) #primary button.single_add_to_cart_button.button.alt { background-color: #000 !important; color: #fff !important; border: 1px solid rgba(255,255,255,.75) !important; }

/* Prevent narrow WooCommerce templates and full-bleed detail embeds from creating horizontal page scroll. */
html, body { max-width: 100%; overflow-x: hidden; }
@media (max-width: 600px) {
  .woocommerce span.onsale { left: 6px; }
  .ueros-global-detail-wrap { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
}

/* Complete product imagery in homepage catalog cards */
.product-card .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f7f5f2;
}
.product-card .product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
}

/* Premium WooCommerce single-product layout */
.single-product .site-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 36px 80px;
}
.single-product .woocommerce-breadcrumb {
  margin: 0 0 26px;
  color: #9d9993;
  font-size: 13px;
}
.single-product .woocommerce-breadcrumb a { color: #d8b66b; }
.single-product .woocommerce-notices-wrapper:not(:empty) {
  margin: 0 0 24px;
}
.single-product .woocommerce-message {
  min-height: 0;
  margin: 0 0 12px;
  padding: 14px 18px;
  border: 1px solid #3b3b3b;
  background: #171717;
  color: #fff;
}
.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 52px 64px;
  align-items: start;
}
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
  float: none;
  width: 100%;
  margin: 0;
}
.single-product div.product .woocommerce-product-gallery {
  grid-column: 1;
  grid-row: 1;
}
.single-product .woocommerce-product-gallery__wrapper {
  margin: 0;
  background: #111;
}
.single-product .woocommerce-product-gallery__image a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  background: #111;
}
.single-product .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
}
.single-product .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0 !important;
}
.single-product .flex-control-thumbs li {
  width: 100% !important;
  margin: 0 !important;
}
.single-product .flex-control-thumbs img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border: 1px solid #353535;
  opacity: .72;
}
.single-product .flex-control-thumbs img.flex-active {
  border-color: #b8975a;
  opacity: 1;
}
.single-product div.product .summary {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 112px;
  padding: 30px;
  border: 1px solid #2d2d2d;
  background: #101010;
}
.single-product .product_title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
}
.single-product .summary .price {
  display: block;
  margin: 0 0 18px;
  color: #d6b56e;
  font-size: 30px;
  font-weight: 700;
}
.single-product .woocommerce-product-details__short-description {
  color: #c9c6c0;
  font-size: 16px;
  line-height: 1.65;
}
.single-product form.cart {
  display: grid;
  grid-template-columns: 116px 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin: 28px 0 20px !important;
}
.single-product form.cart .quantity { margin: 0 !important; }
.single-product form.cart .qty {
  width: 100%;
  height: 54px;
  border: 1px solid #555;
  background: #191919;
  color: #fff;
  text-align: center;
}
.single-product form.cart .single_add_to_cart_button,
.single-product form.cart .ueros-buy-now {
  min-height: 54px;
  margin: 0 !important;
  padding: 13px 18px;
  border: 1px solid #fff;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
.single-product form.cart .single_add_to_cart_button {
  background: #f2f0eb;
  color: #111;
}
.single-product form.cart .ueros-buy-now {
  background: #9e2a2b;
  border-color: #9e2a2b;
  color: #fff;
}
.ueros-product-assurance {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid #343434;
}
.ueros-product-assurance > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #292929;
}
.ueros-product-assurance strong { color: #fff; font-size: 13px; }
.ueros-product-assurance span { color: #aaa7a1; font-size: 13px; }
.single-product .product_meta { color: #999; font-size: 13px; }
.single-product div.product .woocommerce-tabs,
.single-product div.product .related.products,
.single-product div.product .upsells.products {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}
.single-product .woocommerce-tabs {
  padding-top: 28px;
  border-top: 1px solid #303030;
}
.single-product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}
.single-product .woocommerce-tabs ul.tabs li { margin: 0; }
.single-product .woocommerce-tabs .panel {
  padding: 26px;
  background: #141414;
  color: #c9c6c0;
}
.single-product .related.products > h2 {
  margin: 24px 0;
  font-size: 34px;
}
.single-product .widget-area { display: none !important; }
@media (max-width: 900px) {
  .single-product .site-main { padding: 24px 18px 60px; }
  .single-product div.product { grid-template-columns: 1fr; gap: 30px; }
  .single-product div.product .woocommerce-product-gallery,
  .single-product div.product .summary { grid-column: 1; grid-row: auto; }
  .single-product div.product .summary { position: static; padding: 22px 18px; }
  .single-product .woocommerce-product-gallery__image a { min-height: 0; }
  .single-product form.cart { grid-template-columns: 92px 1fr; }
  .single-product form.cart .ueros-buy-now { grid-column: 1 / -1; }
  .ueros-product-assurance > div { grid-template-columns: 1fr; gap: 4px; }
}

/* Final single product layout corrections */
.single-product div.product div.images.woocommerce-product-gallery,
.single-product div.product div.summary.entry-summary {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
}
.single-product .ueros-global-detail-wrap {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}
.single-product div.product { min-height: 0 !important; }
.single-product div.product .woocommerce-tabs,
.single-product div.product .related.products { clear: none !important; }

@media (max-width: 900px) {
  .single-product div.product .woocommerce-product-gallery,
  .single-product div.product .summary.entry-summary {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden;
  }
  .single-product form.cart { grid-template-columns: 1fr !important; }
  .single-product form.cart .quantity,
  .single-product form.cart .single_add_to_cart_button,
  .single-product form.cart .ueros-buy-now {
    grid-column: 1 !important;
    width: 100% !important;
  }
}

/* Unified black catalog and certificate surfaces */
.catalog-page,
.catalog-page .top-category-rail,
.catalog-page .filter-bar,
.catalog-page .sub-hero,
.ueros-certificate-documents { background: #101010 !important; color: #f5f2eb !important; }
.catalog-page { padding: 0 24px 70px; }
.catalog-page .top-category-rail { border-top: 1px solid #292929; border-bottom: 1px solid #292929; }
.catalog-page .category-rail > *, .catalog-page .top-category-rail > * { background: #171717 !important; border-color: #373737 !important; color: #f5f2eb !important; }
.catalog-page .category-rail h3, .catalog-page .top-category-rail h3, .catalog-page .category-rail .eyebrow { color: #d5ae62 !important; }
.catalog-page .category-rail a, .catalog-page .category-rail button, .catalog-page .top-category-rail a, .catalog-page .top-category-rail button { color: #e9e5dd !important; }
.catalog-page .filter-bar { border-color: #292929; }
.catalog-page .filter-bar select, .catalog-page .filter-bar input, .catalog-page select { background: #171717 !important; border: 1px solid #474747 !important; color: #f5f2eb !important; }
.catalog-page .sub-hero { border: 1px solid #2c403d; background: #18312e !important; }
.catalog-page .sub-hero strong { color: #f5f2eb !important; }
.catalog-page .sub-hero span { color: #c8d1cc !important; }
.catalog-page .inner-products { background: #101010 !important; }
.ueros-certificate-documents { margin-top: 42px; padding: 30px; border: 1px solid #2d2d2d; }
.ueros-certificate-documents h3 { color: #fff; }
.ueros-certificate-documents p { color: #aaa7a1; }
.ueros-certificate-doc-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; }
.ueros-certificate-doc { display: flex; flex-direction: column; overflow: hidden; border: 1px solid #383838; background: #171717; color: #fff; text-decoration: none; }
.ueros-certificate-doc img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: contain; background: #0c0c0c; }
.ueros-certificate-doc > span { display: flex; flex-direction: column; gap: 6px; padding: 14px; }
.ueros-certificate-doc strong { color: #fff; font-size: 14px; }
.ueros-certificate-doc small { color: #aaa7a1; line-height: 1.4; }
.ueros-certificate-doc em { color: #d5ae62; font-size: 12px; font-style: normal; }
@media (max-width: 900px) { .ueros-certificate-doc-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 480px) { .catalog-page { padding-left: 14px; padding-right: 14px; } .ueros-certificate-documents { padding: 18px; } .ueros-certificate-doc-grid { grid-template-columns: 1fr; } }

/* Dark inner-page shell */
#innerPages, #innerPages .inner-page-head { background: #101010 !important; color: #f5f2eb !important; }
#innerPages .inner-page-head { border-bottom: 1px solid #2b2b2b !important; }
#innerPages .inner-page-head h2, #innerPages .inner-page-head p { color: #f5f2eb !important; }
#innerPages .inner-page-head .eyebrow { color: #d5ae62 !important; }
#innerPages .inner-page-head .breadcrumb { color: #aaa7a1 !important; border-color: #474747 !important; background: #171717 !important; }

/* Authorized Brands & Certificates page */
.page-id-171 .site-main { background: #101010 !important; color: #f5f2eb; padding: 0 !important; }
.page-id-171 .content-area { width: 100% !important; background: #101010 !important; }
.page-id-171 .ueros-certificates-page { max-width: 1440px; margin: 0 auto; padding: 72px 42px 96px; background: #101010; color: #f5f2eb; }
.page-id-171 .ueros-certificates-page .eyebrow { color: #d5ae62; letter-spacing: .15em; font-size: 12px; }
.page-id-171 .ueros-certificates-page h1 { margin: 8px 0 16px; color: #fff; font-size: clamp(36px, 5vw, 72px); line-height: 1.05; }
.page-id-171 .ueros-certificates-page > p:not(.eyebrow) { max-width: 760px; margin-bottom: 42px; color: #aaa7a1; line-height: 1.7; }
.page-id-171 .ueros-certificate-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 0; }
.page-id-171 .ueros-certificate-grid article { overflow: hidden; padding: 0 22px 24px; border: 1px solid #343434; background: #171717; color: #fff; }
.page-id-171 .ueros-certificate-grid article > a:first-child { display: block; margin: 0 -22px 22px; background: #0a0a0a; }
.page-id-171 .ueros-certificate-grid article img { display: block; width: 100%; height: 300px; object-fit: contain; }
.page-id-171 .ueros-certificate-grid h2 { margin: 0 0 8px; color: #fff; font-size: 21px; }
.page-id-171 .ueros-certificate-grid article p { color: #aaa7a1; line-height: 1.5; }
.page-id-171 .ueros-certificate-grid .button { display: inline-block; margin-top: 8px; padding: 10px 15px; border: 1px solid #b8975a; color: #d5ae62; text-decoration: none; }
.page-id-171 .ueros-certificate-grid .button:hover { background: #b8975a; color: #111; }
@media (max-width: 900px) { .page-id-171 .ueros-certificates-page { padding: 48px 20px 70px; } .page-id-171 .ueros-certificate-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .page-id-171 .ueros-certificate-grid { grid-template-columns: 1fr; } .page-id-171 .ueros-certificate-grid article img { height: 360px; } }

/* Restore factory/showroom detail experience */
.single-product .ueros-global-detail-wrap { display: block !important; height: 12000px !important; min-height: 0 !important; margin: 54px 0 0; overflow: hidden !important; background: #101010; }
.single-product .ueros-global-detail-frame { display: block !important; width: 100% !important; height: 12000px !important; border: 0 !important; }
@media (max-width: 900px) { .single-product .ueros-global-detail-wrap, .single-product .ueros-global-detail-frame { height: 14000px !important; } }

/* Homepage certificate documents */
.home-certificate-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.home-certificate-grid .certificate-card{background:#171717!important;border:1px solid #343434!important;border-radius:8px!important;color:#fff!important;overflow:hidden;display:flex;flex-direction:column;min-height:430px}
.home-certificate-grid .certificate-document-card{text-decoration:none!important}
.home-certificate-grid .certificate-document-card img{display:block;width:100%;height:260px;object-fit:contain;background:#0b0b0b;padding:14px;box-sizing:border-box}
.home-certificate-grid .certificate-document-card span{color:#d5ae62!important;font-size:12px;text-transform:uppercase;letter-spacing:.08em;margin:16px 16px 6px}
.home-certificate-grid .certificate-document-card strong{color:#fff!important;font-size:17px;margin:0 16px 8px}
.home-certificate-grid .certificate-document-card small{color:#b9b9b9!important;margin:0 16px 18px}
@media(max-width:1000px){.home-certificate-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:560px){.home-certificate-grid{grid-template-columns:1fr}.home-certificate-grid .certificate-document-card img{height:300px}}

.home-certificate-grid .certificate-document-card{min-height:300px!important;padding:0!important;background:#0b0b0b!important}
.home-certificate-grid .certificate-document-card img{height:300px!important;padding:0!important;background:#0b0b0b!important}
.home-certificate-grid .certificate-document-card span,.home-certificate-grid .certificate-document-card strong,.home-certificate-grid .certificate-document-card small{display:none!important}
.home-certificate-grid .certificate-document-card:hover{border-color:#b8975a!important;transform:translateY(-2px);transition:transform .2s ease,border-color .2s ease}


/* Homepage collection card photography */
.feature-tile.dark {
  background-image: linear-gradient(180deg, rgba(0,0,0,.05) 15%, rgba(0,0,0,.72) 100%), url("https://uerosdoll.com/wp-content/uploads/2026/07/best-sellers-head-safe.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.feature-tile.gold {
  background-image: linear-gradient(180deg, rgba(0,0,0,.04) 15%, rgba(0,0,0,.70) 100%), url("https://uerosdoll.com/wp-content/uploads/2026/07/new-arrivals-head-safe.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}


/* Warehouse region card photography */
.region-card.usa { background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.45)), url("https://uerosdoll.com/wp-content/uploads/2026/07/usa-warehouse-card.jpg"); }
.region-card.europe { background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.45)), url("https://uerosdoll.com/wp-content/uploads/2026/07/europe-warehouse-card.jpg"); }
.region-card.canada { background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.45)), url("https://uerosdoll.com/wp-content/uploads/2026/07/canada-warehouse-card.jpg"); }
.region-card.australia { background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.45)), url("https://uerosdoll.com/wp-content/uploads/2026/07/australia-warehouse-card.jpg"); }
.region-card.usa, .region-card.europe, .region-card.canada, .region-card.australia { background-size: cover; background-position: center top; background-repeat: no-repeat; }


/* Premium shopper benefits redesign */
.promise-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(51, 119, 109, .22), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(179, 132, 61, .18), transparent 30%),
    #050505 !important;
}
.promise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.promise-section .section-heading, .promise-section .promise-grid { position: relative; z-index: 1; }
.promise-section .section-heading { max-width: 1040px; margin-bottom: 34px; }
.promise-section .section-heading h2 { max-width: 1000px; line-height: 1.02; letter-spacing: -.035em; }
.promise-section .eyebrow { color: #d8b36c !important; letter-spacing: .14em; }
.promise-grid { gap: 18px; align-items: stretch; }
.promise-grid article {
  --accent: #d3aa62;
  position: relative;
  min-height: 270px;
  padding: 30px 28px 28px !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-top: 3px solid var(--accent) !important;
  border-radius: 10px !important;
  color: #fff !important;
  background: linear-gradient(145deg, rgba(31,31,31,.98), rgba(12,12,12,.98)) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.promise-grid article:nth-child(2) { --accent: #6fa89d; }
.promise-grid article:nth-child(3) { --accent: #bd736f; }
.promise-grid article:nth-child(4) { --accent: #7696bd; }
.promise-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 36%, transparent), transparent 68%);
  pointer-events: none;
}
.promise-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  border: 1px solid color-mix(in srgb, var(--accent) 70%, white);
  border-radius: 50%;
  color: #0b0b0b !important;
  background: var(--accent) !important;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 10%, transparent);
}
.promise-grid article h3 {
  display: block !important;
  margin: 0 0 12px !important;
  color: #fff !important;
  font-size: clamp(1.25rem, 1.65vw, 1.55rem) !important;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.promise-grid article p { margin: 0; color: #bdbab4 !important; line-height: 1.65; }
.promise-grid article:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 68%, transparent) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}
@media (max-width: 900px) { .promise-grid article { min-height: 245px; } }
@media (max-width: 620px) {
  .promise-section::before { opacity: .1; }
  .promise-grid article { min-height: 0; }
  .promise-grid article:hover { transform: none; }
}


/* Premium brand directory redesign */
.ueros-home .section:has(> .brand-grid) {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 78% 18%, rgba(183,143,77,.16), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(45,105,97,.17), transparent 28%),
    linear-gradient(180deg, #0a0a0a, #050505) !important;
}
.ueros-home .section:has(> .brand-grid)::after {
  content: "TOP BRANDS";
  position: absolute;
  right: 3vw;
  top: 6px;
  color: rgba(255,255,255,.025);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.ueros-home .section:has(> .brand-grid) > .section-heading,
.ueros-home .section:has(> .brand-grid) > .brand-grid { position: relative; z-index: 1; }
.ueros-home .section:has(> .brand-grid) > .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 6px 30px;
  margin-bottom: 32px;
}
.ueros-home .section:has(> .brand-grid) > .section-heading .eyebrow { grid-column: 1 / -1; color: #d6ad64 !important; letter-spacing: .14em; }
.ueros-home .section:has(> .brand-grid) > .section-heading h2 { margin: 0; color: #fff; letter-spacing: -.04em; }
.ueros-home .section:has(> .brand-grid) > .section-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 8px;
  color: #9f9d97 !important;
  text-align: right;
}
.brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
.brand-grid > span {
  --brand-accent: #c9a15d;
  position: relative;
  display: grid !important;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 20px 22px !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 8px !important;
  color: #f7f4ee !important;
  background: linear-gradient(135deg, rgba(31,31,31,.96), rgba(14,14,14,.96)) !important;
  box-shadow: inset 0 1px rgba(255,255,255,.04), 0 14px 32px rgba(0,0,0,.22);
  font-size: 1.05rem !important;
  font-weight: 850 !important;
  letter-spacing: -.01em;
  text-align: left !important;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.brand-grid > span:nth-child(3n + 2) { --brand-accent: #6d9f96; }
.brand-grid > span:nth-child(3n) { --brand-accent: #a97874; }
.brand-grid > span::before {
  content: "◇";
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--brand-accent) 72%, transparent);
  border-radius: 50%;
  color: var(--brand-accent);
  background: color-mix(in srgb, var(--brand-accent) 9%, transparent);
  font-size: 22px;
}
.brand-grid > span::after {
  content: "↗";
  color: color-mix(in srgb, var(--brand-accent) 70%, #fff);
  font-size: 15px;
  opacity: .7;
}
.brand-grid > span:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--brand-accent) 70%, transparent) !important;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-accent) 12%, #202020), #0e0e0e) !important;
}
@media (max-width: 1050px) { .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }
@media (max-width: 720px) {
  .ueros-home .section:has(> .brand-grid) > .section-heading { grid-template-columns: 1fr; }
  .ueros-home .section:has(> .brand-grid) > .section-heading > p:last-child { text-align: left; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .brand-grid > span { grid-template-columns: 36px 1fr; min-height: 92px; padding: 16px !important; }
  .brand-grid > span::before { width: 36px; height: 36px; }
  .brand-grid > span::after { display: none; }
}
@media (max-width: 430px) { .brand-grid { grid-template-columns: 1fr !important; } }


/* Tidy homepage certificate gallery */
.ueros-home .section:has(> .home-certificate-grid) {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, #080808, #030303) !important;
}
.ueros-home .section:has(> .home-certificate-grid) > .section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
  margin-bottom: 30px;
}
.ueros-home .section:has(> .home-certificate-grid) > .section-heading .eyebrow { grid-column: 1 / -1; color: #d6ad64 !important; letter-spacing: .14em; }
.ueros-home .section:has(> .home-certificate-grid) > .section-heading h2 { margin: 0; color: #fff; letter-spacing: -.04em; }
.ueros-home .section:has(> .home-certificate-grid) > .section-heading::after {
  content: "5 verified documents · Click any certificate to view the PDF";
  max-width: 420px;
  margin-bottom: 10px;
  color: #9f9d97;
  font-size: .9rem;
  text-align: right;
}
.home-certificate-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
}
.home-certificate-grid .certificate-document-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  aspect-ratio: 4 / 5;
  min-height: 0 !important;
  padding: 12px 12px 0 !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17) !important;
  border-radius: 8px !important;
  background: linear-gradient(145deg, #171717, #090909) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.home-certificate-grid .certificate-document-card::before {
  content: "01";
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: #111;
  background: #d6ad64;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  font-size: 11px;
  font-weight: 900;
}
.home-certificate-grid .certificate-document-card:nth-child(2)::before { content: "02"; }
.home-certificate-grid .certificate-document-card:nth-child(3)::before { content: "03"; }
.home-certificate-grid .certificate-document-card:nth-child(4)::before { content: "04"; }
.home-certificate-grid .certificate-document-card:nth-child(5)::before { content: "05"; }
.home-certificate-grid .certificate-document-card img {
  flex: 1 1 auto;
  width: 100% !important;
  height: auto !important;
  min-height: 0;
  padding: 8px !important;
  object-fit: contain !important;
  background: #050505 !important;
}
.home-certificate-grid .certificate-document-card strong {
  display: flex !important;
  align-items: center;
  min-height: 58px;
  margin: 0 !important;
  padding: 12px 4px !important;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #f2eee7 !important;
  font-size: 13px !important;
  line-height: 1.35;
}
.home-certificate-grid .certificate-document-card span,
.home-certificate-grid .certificate-document-card small { display: none !important; }
.home-certificate-grid .certificate-document-card:hover {
  transform: translateY(-6px);
  border-color: #b8975a !important;
  box-shadow: 0 26px 60px rgba(0,0,0,.42);
}
@media (max-width: 1180px) { .home-certificate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }
@media (max-width: 720px) {
  .ueros-home .section:has(> .home-certificate-grid) > .section-heading { grid-template-columns: 1fr; }
  .ueros-home .section:has(> .home-certificate-grid) > .section-heading::after { text-align: left; }
  .home-certificate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 430px) { .home-certificate-grid { grid-template-columns: 1fr !important; } }


/* Premium header and enlarged brand mark */
.site-header {
  border-bottom: 0 !important;
  background: rgba(246,243,237,.98) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.16);
  backdrop-filter: blur(18px);
}
.header-main {
  grid-template-columns: 280px minmax(0, 1fr) auto !important;
  min-height: 124px !important;
  width: 100%;
  margin: 0 auto;
  padding: 10px clamp(28px, 5vw, 82px) !important;
  border-bottom: 1px solid rgba(167,119,49,.26);
  background:
    radial-gradient(circle at 7% 50%, rgba(167,119,49,.10), transparent 20%),
    linear-gradient(90deg, #f9f7f2, #efebe4);
}
.logo {
  display: inline-flex !important;
  align-items: center;
  min-width: 260px !important;
  width: fit-content;
  padding: 2px 18px 2px 0;
  border-right: 1px solid rgba(167,119,49,.28);
}
.logo img {
  display: block;
  width: 250px !important;
  height: 104px !important;
  object-fit: contain !important;
  object-position: left center;
  filter: drop-shadow(0 8px 16px rgba(35,20,30,.12));
}
.header-tools { gap: 10px !important; color: #24211e !important; }
.header-tools > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #292520 !important;
  font-size: .88rem;
}
.header-tools button, .header-tools select {
  min-height: 42px !important;
  border: 1px solid rgba(55,48,39,.22) !important;
  border-radius: 999px !important;
  color: #24211e !important;
  background: rgba(255,255,255,.78) !important;
  box-shadow: 0 5px 16px rgba(44,35,25,.07);
}
.header-tools button { padding: 0 15px !important; }
.header-tools button:hover, .header-tools select:hover { border-color: #b58b4d !important; background: #fff !important; }
.main-nav {
  min-height: 54px !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(211,170,98,.28);
  background: linear-gradient(90deg, #0c0c0c, #17130f 52%, #0c0c0c) !important;
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.main-nav > a, .nav-item > a {
  position: relative;
  min-height: 54px !important;
  padding: 0 15px !important;
  letter-spacing: .01em;
}
.main-nav > a::after, .nav-item > a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 8px;
  height: 1px;
  background: #d2aa66;
  transform: scaleX(0);
  transition: transform .22s ease;
}
.main-nav > a:hover::after, .nav-item > a:hover::after, .main-nav .active::after { transform: scaleX(1); }
@media (max-width: 900px) {
  .header-main { grid-template-columns: auto 1fr auto !important; min-height: 88px !important; padding: 8px 16px !important; }
  .logo { min-width: 0 !important; padding-right: 12px; }
  .logo img { width: 178px !important; height: 72px !important; }
  .header-tools { justify-content: end; }
}
@media (max-width: 560px) {
  .logo { border-right: 0; }
  .logo img { width: 150px !important; height: 62px !important; }
  .header-tools button[data-page="search"] { display: none; }
  .header-tools button { min-height: 38px !important; padding: 0 11px !important; }
}

/* Header mobile track correction */
@media (max-width: 900px) { .header-main { grid-template-columns: 190px minmax(0, 1fr) auto !important; } }
@media (max-width: 560px) { .header-main { grid-template-columns: 162px minmax(0, 1fr) auto !important; } }


/* Whole-card USA warehouse link */
a.region-card.usa { text-decoration: none; cursor: pointer; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
a.region-card.usa .region-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 4px;
  color: #fff;
  background: rgba(16,16,16,.38);
  font-size: 1rem;
  font-weight: 650;
}
a.region-card.usa:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,.42); }
a.region-card.usa:hover .region-card-action { border-color: #d6ad64; background: rgba(214,173,100,.22); }


/* Cropped brand mark sizing */
@media (min-width: 901px) {
  .header-main { grid-template-columns: 240px minmax(0, 1fr) auto !important; min-height: 162px !important; }
  .logo { min-width: 220px !important; justify-content: flex-start; }
  .logo img { width: 190px !important; height: 146px !important; object-position: center !important; }
}
@media (max-width: 900px) {
  .header-main { grid-template-columns: 132px minmax(0, 1fr) auto !important; min-height: 104px !important; }
  .logo img { width: 112px !important; height: 88px !important; object-position: center !important; }
}
@media (max-width: 560px) {
  .header-main { grid-template-columns: 106px minmax(0, 1fr) auto !important; min-height: 90px !important; }
  .logo img { width: 92px !important; height: 76px !important; }
}


/* Sitewide luxury typography system */
:root {
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
html { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body, button, select, input, textarea { font-family: var(--font-ui) !important; }
body { font-weight: 450; letter-spacing: -.006em; }
p, li, small { line-height: 1.68; }
h1, h2,
.section-heading h2,
.age-card h1,
.inner-page-head h1,
.inner-page-head h2,
.woocommerce div.product .product_title,
.single-product .related.products > h2,
.woocommerce-products-header__title {
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  line-height: .98 !important;
  letter-spacing: -.035em !important;
}
.home-editorial-hero h1 {
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  line-height: .88 !important;
  letter-spacing: -.045em !important;
}
.section-heading h2 { font-size: clamp(3.45rem, 5.5vw, 5.7rem) !important; }
.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: #aaa7a1;
  font-size: 1rem;
  line-height: 1.72;
}
.product-card h3,
.promise-grid article h3,
.info-card h3,
.article-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: -.02em !important;
}
.product-card h3, .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: clamp(1.35rem, 1.7vw, 1.7rem) !important; }
.eyebrow, .home-hero-eyebrow, .age-pill {
  font-family: var(--font-ui) !important;
  font-size: .7rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: .19em !important;
  text-transform: uppercase;
}
.main-nav, .promo-bar, .header-tools, .btn, button, select, input, .price, .woocommerce-Price-amount { font-family: var(--font-ui) !important; }
.main-nav { font-size: .78rem !important; font-weight: 700 !important; letter-spacing: .035em; }
.mega-menu h3 {
  font-family: var(--font-ui) !important;
  font-size: .68rem !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
}
.btn, button, .button, .header-tools a { font-weight: 700 !important; letter-spacing: .015em; }
.price, .woocommerce-Price-amount { font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.brand-grid > span { font-family: var(--font-display) !important; font-size: 1.42rem !important; font-weight: 600 !important; letter-spacing: -.015em !important; }
.region-card > span:first-child { font-family: var(--font-display) !important; font-size: 2.1rem !important; font-weight: 650 !important; letter-spacing: -.025em; }
.home-certificate-grid .certificate-document-card strong { font-family: var(--font-ui) !important; font-weight: 650 !important; letter-spacing: -.005em; }
.footer-grid h3, .newsletter h2 { font-family: var(--font-display) !important; font-weight: 600 !important; letter-spacing: -.025em !important; }
@media (max-width: 620px) {
  .section-heading h2 { font-size: clamp(2.7rem, 13vw, 4.2rem) !important; }
  .main-nav { font-size: .74rem !important; }
}


/* Black-gold two-tier navigation */
.site-header {
  border-bottom: 1px solid rgba(214,173,100,.28) !important;
  color: #f7f3eb !important;
  background: #050505 !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.34) !important;
  backdrop-filter: blur(18px);
}
.header-main {
  grid-template-columns: 390px minmax(0, 1fr) auto !important;
  min-height: 116px !important;
  padding: 10px clamp(34px, 4vw, 72px) !important;
  border-bottom: 1px solid rgba(255,255,255,.09) !important;
  background: linear-gradient(90deg, #050505, #0b0b0b 52%, #050505) !important;
}
.logo {
  display: inline-flex !important;
  align-items: center;
  gap: 15px;
  min-width: 360px !important;
  width: fit-content;
  padding: 0 !important;
  border-right: 0 !important;
}
.logo::after {
  content: "UEROSDOLL";
  color: #e7c574;
  font-family: var(--font-display) !important;
  font-size: 2.45rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .045em;
  text-shadow: 0 0 22px rgba(219,177,87,.16);
}
.logo img {
  width: 92px !important;
  height: 92px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 16px rgba(218,174,83,.18)) !important;
}
.header-tools { gap: 7px !important; color: #f6f2e9 !important; }
.header-tools > a {
  min-height: 40px;
  padding: 0 10px !important;
  color: #f5f1e8 !important;
  font-size: .78rem !important;
  letter-spacing: .03em;
}
.header-tools button, .header-tools select {
  min-height: 40px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #f6f2e9 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.header-tools select option { color: #111; background: #fff; }
.header-tools button:hover, .header-tools select:hover, .header-tools > a:hover { color: #e7c574 !important; background: transparent !important; }
.main-nav {
  justify-content: center !important;
  min-height: 56px !important;
  padding: 0 clamp(20px, 4vw, 68px) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  color: #f8f5ee !important;
  background: #050505 !important;
  box-shadow: none !important;
  text-transform: uppercase;
}
.main-nav > a, .nav-item > a { min-height: 56px !important; padding: 0 13px !important; }
.main-nav > a::after, .nav-item > a::after { bottom: 7px !important; background: #e0bd6b !important; }
.mega-menu { top: 56px !important; border-color: rgba(214,173,100,.28) !important; background: #11100e !important; color: #f6f1e8 !important; }
.mega-menu a { color: #bbb5aa !important; }
.mega-menu a:hover { color: #e7c574 !important; }
.promo-bar { border-bottom: 1px solid rgba(255,255,255,.07); background: #111 !important; }
@media (max-width: 1100px) and (min-width: 901px) {
  .header-main { grid-template-columns: 310px minmax(0,1fr) auto !important; }
  .logo { min-width: 290px !important; }
  .logo::after { font-size: 1.95rem; }
  .main-nav > a, .nav-item > a { padding: 0 9px !important; }
}
@media (max-width: 900px) {
  .header-main { grid-template-columns: 220px minmax(0,1fr) 44px !important; min-height: 84px !important; padding: 7px 16px !important; }
  .logo { min-width: 205px !important; gap: 9px; }
  .logo img { width: 62px !important; height: 62px !important; }
  .logo::after { font-size: 1.45rem; }
  .menu-toggle { display: grid !important; place-items: center; border-color: rgba(231,197,116,.45) !important; color: #e7c574; background: transparent !important; }
  .main-nav { display: none; align-items: stretch; padding: 12px 18px 22px !important; }
  .main-nav.open { display: flex !important; flex-direction: column; }
}
@media (max-width: 520px) {
  .header-main { grid-template-columns: 174px minmax(0,1fr) 42px !important; }
  .logo { min-width: 166px !important; }
  .logo img { width: 52px !important; height: 52px !important; }
  .logo::after { font-size: 1.15rem; letter-spacing: .025em; }
  .header-tools button[data-page="cart"] { font-size: 0 !important; }
  .header-tools button[data-page="cart"]::after { content: "Cart"; font-size: .75rem; }
}


/* Official social links in header */
.header-socials { display: inline-flex; align-items: center; gap: 4px; margin-right: 8px; padding-right: 12px; border-right: 1px solid rgba(255,255,255,.16); }
.header-socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid transparent; border-radius: 50%; color: #f7f3eb !important; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.header-socials svg { width: 19px; height: 19px; overflow: visible; fill: currentColor; stroke: none; }
.header-socials a[aria-label*="Instagram"] svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-socials a[aria-label*="Instagram"] .fill-dot { fill: currentColor; stroke: none; }
.header-socials a[aria-label*="YouTube"] .play { fill: #050505; }
.header-socials a:hover { color: #e7c574 !important; border-color: rgba(231,197,116,.5); background: rgba(231,197,116,.08); transform: translateY(-2px); }
@media (max-width: 1180px) { .header-socials { display: none; } }


/* Larger visible header social icons */
.header-socials { gap: 8px !important; margin-right: 12px !important; padding-right: 16px !important; }
.header-socials a { width: 48px !important; height: 48px !important; border-color: rgba(255,255,255,.18) !important; background: rgba(255,255,255,.035); }
.header-socials svg { width: 25px !important; height: 25px !important; }
.header-socials a:hover { border-color: #e7c574 !important; background: rgba(231,197,116,.12) !important; box-shadow: 0 0 24px rgba(231,197,116,.15); }


/* Official social brand colors */
.header-socials a { border-color: transparent !important; color: #fff !important; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.header-socials a[aria-label*="Facebook"] { background: #1877f2 !important; border-radius: 50% !important; }
.header-socials a[aria-label*="Facebook"] svg { fill: #fff !important; }
.header-socials a[aria-label*="Instagram"] {
  border-radius: 13px !important;
  background: radial-gradient(circle at 30% 105%, #ffd600 0 18%, #ff7a00 32%, #ff0169 58%, #d300c5 78%, #7638fa 100%) !important;
}
.header-socials a[aria-label*="Instagram"] svg { stroke: #fff !important; }
.header-socials a[aria-label*="Instagram"] .fill-dot { fill: #fff !important; }
.header-socials a[aria-label*="YouTube"] { background: transparent !important; box-shadow: none; }
.header-socials a[aria-label*="YouTube"] svg { width: 33px !important; height: 33px !important; }
.header-socials a[aria-label*="YouTube"] svg path:first-child { fill: #ff0033 !important; }
.header-socials a[aria-label*="YouTube"] svg .play { fill: #fff !important; }
.header-socials a:hover { color: #fff !important; border-color: transparent !important; filter: brightness(1.08); transform: translateY(-2px) scale(1.06); }


/* Normalize social icon visual sizes */
.header-socials a { flex: 0 0 48px !important; width: 48px !important; height: 48px !important; }
.header-socials a[aria-label*="Facebook"],
.header-socials a[aria-label*="Instagram"],
.header-socials a[aria-label*="YouTube"] { box-shadow: 0 8px 20px rgba(0,0,0,.24) !important; }
.header-socials a[aria-label*="YouTube"] { background: #ff0033 !important; border-radius: 13px !important; }
.header-socials a[aria-label*="YouTube"] svg { width: 25px !important; height: 25px !important; }
.header-socials a[aria-label*="YouTube"] svg path:first-child { fill: transparent !important; }
.header-socials a[aria-label*="YouTube"] svg .play { fill: #fff !important; transform: scale(1.7); transform-origin: 12px 12px; }


/* WhatsApp social icon */
.header-socials a[aria-label*="WhatsApp"] { flex: 0 0 48px !important; width: 48px !important; height: 48px !important; border-radius: 13px !important; background: #25d366 !important; box-shadow: 0 8px 20px rgba(0,0,0,.24) !important; }
.header-socials a[aria-label*="WhatsApp"] svg { width: 27px !important; height: 27px !important; }
.header-socials a[aria-label*="WhatsApp"] .wa-bubble { fill: none !important; stroke: #fff !important; stroke-width: 1.8; }
.header-socials a[aria-label*="WhatsApp"] .wa-phone { fill: #fff !important; stroke: none !important; }


/* Unified enlarged Eros logo */
.site-header .logo::after { content: none !important; display: none !important; }
.site-header .logo { min-width: 320px !important; width: 320px !important; gap: 0 !important; overflow: visible !important; }
.site-header .logo img { content: url("https://uerosdoll.com/wp-content/themes/uerosdoll-premium/assets/eros-logo.png") !important; display: block !important; width: 280px !important; height: auto !important; max-width: none !important; aspect-ratio: 220 / 92; object-fit: contain !important; object-position: left center !important; filter: brightness(3.35) saturate(1.55) contrast(1.08) drop-shadow(0 0 12px rgba(226,128,238,.58)) drop-shadow(0 0 28px rgba(155,55,188,.48)) !important; }
.site-header .header-main { grid-template-columns: 350px minmax(0,1fr) auto !important; min-height: 138px !important; }
@media (max-width: 1100px) and (min-width: 901px) {
  .site-header .header-main { grid-template-columns: 260px minmax(0,1fr) auto !important; min-height: 116px !important; }
  .site-header .logo { min-width: 240px !important; width: 240px !important; }
  .site-header .logo img { width: 225px !important; }
}
@media (max-width: 900px) {
  .site-header .header-main { grid-template-columns: 220px minmax(0,1fr) 44px !important; min-height: 104px !important; }
  .site-header .logo { min-width: 205px !important; width: 205px !important; }
  .site-header .logo img { width: 195px !important; }
}
@media (max-width: 520px) {
  .site-header .header-main { grid-template-columns: 174px minmax(0,1fr) 42px !important; min-height: 92px !important; }
  .site-header .logo { min-width: 164px !important; width: 164px !important; }
  .site-header .logo img { width: 158px !important; }
}

/* Enlarged logo mobile layout */
@media (max-width: 520px) {
  .site-header .header-main { grid-template-columns: minmax(0,1fr) 42px !important; grid-template-areas: "logo toggle" "tools tools" !important; min-height: 148px !important; align-content: center !important; row-gap: 2px !important; }
  .site-header .logo { grid-area: logo !important; min-width: 190px !important; width: 190px !important; }
  .site-header .logo img { width: 184px !important; }
  .site-header .header-tools { grid-area: tools !important; justify-content: center !important; width: 100% !important; }
  .site-header .menu-toggle { grid-area: toggle !important; }
}


/* EUROPE WAREHOUSE PRODUCT GRID ALIGNMENT */
body.tax-product_cat.term-europe-warehouse ul.products {
  align-items: stretch;
}
body.tax-product_cat.term-europe-warehouse ul.products li.product {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body.tax-product_cat.term-europe-warehouse ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
body.tax-product_cat.term-europe-warehouse ul.products li.product img.ueros-loop-product-image {
  width: 100% !important;
  height: clamp(400px, 30vw, 500px) !important;
  aspect-ratio: auto;
  object-fit: contain !important;
  object-position: center center;
  padding: 10px;
  box-sizing: border-box;
  background: #f5f3f1;
  border-radius: 12px;
}
body.tax-product_cat.term-europe-warehouse ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.2em;
}
@media (max-width: 767px) {
  body.tax-product_cat.term-europe-warehouse ul.products li.product img.ueros-loop-product-image {
    height: 64vw !important;
    min-height: 230px;
    max-height: 360px;
    padding: 6px;
    border-radius: 9px;
  }
}


/* PREMIUM PRIMARY NAVIGATION REDESIGN */
@media (min-width: 1101px) {
  .main-nav {
    height: 68px !important;
    min-height: 68px !important;
    padding-inline: clamp(24px, 3.2vw, 58px) !important;
    justify-content: center;
    gap: clamp(2px, .35vw, 8px) !important;
    border-top: 1px solid rgba(209, 169, 91, .16);
    border-bottom: 1px solid rgba(209, 169, 91, .28);
    background: linear-gradient(180deg, #111 0%, #090909 100%);
  }
  .main-nav > a,
  .main-nav > .nav-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 68px !important;
    min-height: 68px !important;
    padding-inline: clamp(9px, .75vw, 14px) !important;
    color: #f5f1e9 !important;
    font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif !important;
    font-size: clamp(15.5px, 1.04vw, 17px) !important;
    font-weight: 700 !important;
    line-height: 1.15;
    letter-spacing: .02em !important;
    text-transform: none;
    white-space: nowrap;
    transition: color .22s ease, transform .22s ease;
  }
  .main-nav > a::after,
  .main-nav > .nav-item > a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 13px;
    height: 2px;
    border-radius: 2px;
    box-shadow: 0 0 9px rgba(240, 216, 154, .35);
    background: linear-gradient(90deg, transparent, #d6ae61 15%, #ffe2a0 50%, #d6ae61 85%, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .24s ease;
  }
  .main-nav > a:hover,
  .main-nav > .nav-item > a:hover,
  .main-nav > a.active,
  .main-nav > .nav-item > a.active {
    color: #f0d89a !important;
  }
  .main-nav > a:hover::after,
  .main-nav > .nav-item > a:hover::after,
  .main-nav > a.active::after,
  .main-nav > .nav-item > a.active::after {
    transform: scaleX(1);
  }
}
@media (max-width: 1100px) {
  .main-nav > a,
  .main-nav > .nav-item > a {
    font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: .025em !important;
  }
}


/* FAQ PAGE ACCORDION */
.faq-page-list {
  padding-top: clamp(64px, 7vw, 110px);
  padding-bottom: clamp(80px, 8vw, 130px);
  background: radial-gradient(circle at 12% 10%, rgba(43, 103, 92, .15), transparent 34%), #050505;
}
.faq-page-list .section-heading,
.faq-page-list .faq-list {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
.faq-page-list .section-heading { margin-bottom: 36px; }
.faq-page-list .section-heading > p:last-child { max-width: 720px; color: rgba(255,255,255,.66); }
.faq-page-list .faq-list details { border-color: rgba(214,174,97,.24); background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.faq-page-list .faq-list summary { font-size: clamp(17px, 1.25vw, 20px); font-weight: 700; }
.faq-page-list .faq-list details[open] { border-color: rgba(214,174,97,.58); box-shadow: 0 16px 40px rgba(0,0,0,.26); }
@media (max-width: 640px) {
  .faq-page-list .section-heading,
  .faq-page-list .faq-list { width: min(100% - 28px, 1120px); }
}


/* FAQ BEACH HERO */
body.page-id-30 .page-hero {
  position: relative;
  min-height: clamp(420px, 34vw, 550px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
  border-bottom: 1px solid rgba(214, 174, 97, .34);
}
body.page-id-30 .faq-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  z-index: 0;
}
body.page-id-30 .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4,7,8,.9) 0%, rgba(4,7,8,.7) 35%, rgba(4,7,8,.18) 64%, rgba(4,7,8,.06) 100%);
}
body.page-id-30 .page-hero > div {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
body.page-id-30 .page-hero .eyebrow { color: #e6c878; letter-spacing: .22em; }
body.page-id-30 .page-hero h1 {
  color: #fff;
  font-size: clamp(66px, 7vw, 108px);
  line-height: .88;
  text-shadow: 0 8px 36px rgba(0,0,0,.42);
}
body.page-id-30 .page-hero > div > p:last-child {
  max-width: 650px;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.75;
  text-shadow: 0 3px 18px rgba(0,0,0,.5);
}
@media (max-width: 700px) {
  body.page-id-30 .page-hero {
    min-height: 460px;
    align-items: flex-end;
    padding-bottom: 44px;

  }
  body.page-id-30 .faq-hero-image { object-position: 66% center; }
  body.page-id-30 .page-hero::after { background: linear-gradient(180deg, rgba(4,7,8,.08) 0%, rgba(4,7,8,.4) 45%, rgba(4,7,8,.94) 100%); }
  body.page-id-30 .page-hero > div { width: min(100% - 30px, 1120px); }
  body.page-id-30 .page-hero h1 { font-size: clamp(64px, 24vw, 96px); }
}


/* WOOCOMMERCE ARCHIVE LAYOUT REFINEMENT */
body.post-type-archive-product main#main,
body.tax-product_cat main#main {
  width: min(1500px, calc(100% - 64px));
  margin-inline: auto;
  padding-top: clamp(42px, 5vw, 76px);
  padding-bottom: 72px;
}
body.post-type-archive-product .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb {
  width: 100%;
  margin: 0 0 16px !important;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  letter-spacing: .03em;
}
body.post-type-archive-product .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header {
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(214,174,97,.25);
}
body.post-type-archive-product .woocommerce-products-header .page-title,
body.tax-product_cat .woocommerce-products-header .page-title {
  margin: 0;
  color: #f7f2e9;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.3vw, 68px);
  font-weight: 600;
  line-height: 1;
}
body.post-type-archive-product .ueros-catalog-filters,
body.tax-product_cat .ueros-catalog-filters {
  width: 100%;
  margin: 0 0 24px !important;
  padding: 22px !important;
  gap: 14px !important;
  border: 1px solid rgba(214,174,97,.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}
body.post-type-archive-product .ueros-catalog-filters label > span,
body.tax-product_cat .ueros-catalog-filters label > span {
  color: #d9bf80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
body.post-type-archive-product .ueros-catalog-filters select,
body.post-type-archive-product .ueros-catalog-filters input,
body.tax-product_cat .ueros-catalog-filters select,
body.tax-product_cat .ueros-catalog-filters input {
  min-height: 46px;
  border-color: rgba(255,255,255,.2);
  border-radius: 7px;
  background-color: #0a0a0a;
}
body.post-type-archive-product .ueros-catalog-filters button,
body.tax-product_cat .ueros-catalog-filters button {
  min-height: 46px;
  border-radius: 7px;
  border-color: #d6ae61;
  background: #d6ae61;
  color: #080808;
  font-weight: 800;
}
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products { width: 100%; }
@media (max-width: 760px) {
  body.post-type-archive-product main#main,
  body.tax-product_cat main#main { width: min(100% - 28px, 1500px); padding-top: 32px; }
  body.post-type-archive-product .ueros-catalog-filters,
  body.tax-product_cat .ueros-catalog-filters { padding: 16px !important; border-radius: 12px; }
}


/* REMOVE DUPLICATE LEGACY ARCHIVE BRANDING */
body.woocommerce-page #page > #header,
body.woocommerce-page #page > hr {
  display: none !important;
}
body.woocommerce-page #page,
body.woocommerce-page #primary {
  width: 100%;
  margin: 0;
  padding: 0;
}


/* BORDERLESS ENLARGED CERTIFICATE DOCUMENTS */
.home-certificate-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.4vw, 24px) !important;
  align-items: start;
}
.home-certificate-grid .certificate-document-card {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}
.home-certificate-grid .certificate-document-card img {
  display: block;
  width: 100% !important;
  height: clamp(350px, 25vw, 410px) !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  object-position: center bottom;
  box-shadow: none !important;
  transition: transform .25s ease, filter .25s ease;
}
.home-certificate-grid .certificate-document-card:hover img {
  transform: translateY(-5px) scale(1.025);
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.34));
}
.home-certificate-grid .certificate-document-card strong {
  display: block;
  padding-inline: 4px;
  font-size: 14px;
  line-height: 1.35;
}
@media (max-width: 1200px) {
  .home-certificate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 700px) {
  .home-certificate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .home-certificate-grid .certificate-document-card img { height: 300px !important; }
}
@media (max-width: 440px) {
  .home-certificate-grid { grid-template-columns: 1fr !important; }
  .home-certificate-grid .certificate-document-card img { height: 390px !important; }
}


@media (min-width: 1201px) {
  .home-certificate-grid.home-certificate-grid .certificate-document-card.certificate-document-card img {
    height: 410px !important;
    min-height: 410px !important;
    max-height: 410px !important;
  }
}

.home-certificate-grid.home-certificate-grid .certificate-document-card.certificate-document-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

.home-certificate-grid.home-certificate-grid .certificate-document-card.certificate-document-card { aspect-ratio: auto !important; }


/* WHITE BACKING FOR LANDSCAPE EU TRADEMARK */
.home-certificate-grid .certificate-document-card:nth-child(4) img {
  padding: clamp(16px, 1.5vw, 24px) !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  object-position: center center !important;
}


/* UNIFIED CERTIFICATE WHITE CANVAS ALIGNMENT */
.home-certificate-grid.home-certificate-grid .certificate-document-card.certificate-document-card img {
  background-color: #ffffff !important;
  object-position: center center !important;
}


/* ABOUT FACTORY HERO */
body.page-id-26 .page-hero {
  position: relative;
  min-height: clamp(360px, 30vw, 460px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #10151b;
  border-bottom: 1px solid rgba(214,174,97,.34);
}
body.page-id-26 .about-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  z-index: 0;
}
body.page-id-26 .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5,10,16,.9) 0%, rgba(5,10,16,.68) 37%, rgba(5,10,16,.16) 68%, rgba(5,10,16,.05) 100%);
}
body.page-id-26 .page-hero > div {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
body.page-id-26 .page-hero .eyebrow { color: #dfbd70; letter-spacing: .22em; }
body.page-id-26 .page-hero h1 {
  margin: 8px 0 20px;
  max-width: 700px;
  color: #fff;
  font-size: clamp(58px, 6vw, 96px);
  line-height: .94;
  text-shadow: 0 8px 34px rgba(0,0,0,.45);
}
body.page-id-26 .page-hero > div > p:last-child {
  max-width: 650px;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.65;
}
@media (max-width: 700px) {
  body.page-id-26 .page-hero { min-height: 380px; align-items: flex-end; padding-bottom: 42px; }
  body.page-id-26 .about-hero-image { object-position: 63% center; }
  body.page-id-26 .page-hero::after { background: linear-gradient(180deg, rgba(5,10,16,.15), rgba(5,10,16,.9)); }
  body.page-id-26 .page-hero > div { width: min(100% - 30px, 1120px); }
  body.page-id-26 .page-hero h1 { font-size: clamp(52px, 16vw, 74px); }
}


/* CUSTOM ADULT DOLL HERO */
body.page-id-29 .page-hero {
  position: relative;
  min-height: clamp(380px, 31vw, 470px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
  border-bottom: 1px solid rgba(214,174,97,.34);
}
body.page-id-29 .customization-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  z-index: 0;
}
body.page-id-29 .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.72) 38%, rgba(5,5,5,.18) 66%, rgba(5,5,5,.05) 100%);
}
body.page-id-29 .page-hero > div {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
body.page-id-29 .page-hero .eyebrow { color: #dfbd70; letter-spacing: .2em; }
body.page-id-29 .page-hero h1 {
  max-width: 720px;
  margin: 8px 0 18px;
  color: #fff;
  font-size: clamp(58px, 6vw, 96px);
  line-height: .94;
  text-shadow: 0 8px 34px rgba(0,0,0,.52);
}
body.page-id-29 .page-hero > div > p:last-child {
  max-width: 640px;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.65;
}
body.page-id-29 .content-page h2 { margin-top: 48px; }
body.page-id-29 .content-page ol { padding-left: 1.4em; }
body.page-id-29 .content-page li { margin-bottom: 14px; line-height: 1.75; }
@media (max-width: 700px) {
  body.page-id-29 .page-hero { min-height: 410px; align-items: flex-end; padding-bottom: 42px; }
  body.page-id-29 .customization-hero-image { object-position: 64% center; }
  body.page-id-29 .page-hero::after { background: linear-gradient(180deg, rgba(5,5,5,.15), rgba(5,5,5,.92)); }
  body.page-id-29 .page-hero > div { width: min(100% - 30px, 1120px); }
  body.page-id-29 .page-hero h1 { font-size: clamp(52px, 15vw, 72px); }
}

/* CUSTOM HERO COPY LEFT ALIGN */
@media (min-width: 701px) {
  body.page-id-29 .page-hero > div {
    width: min(1320px, calc(100% - 96px));
    margin-left: 32px;
    margin-right: auto;
  }
}

/* CUSTOM HERO TALLER PORTRAIT CROP */
@media (min-width: 701px) {
  body.page-id-29 .page-hero {
    min-height: clamp(560px, 40vw, 650px);
  }
}

/* CUSTOM HERO FULLER BODY IMAGE */
@media (min-width: 701px) {
  body.page-id-29 .customization-hero-image {
    object-fit: contain;
    object-position: right center;
    background: #050505;
  }
}

/* CUSTOMIZATION CONTENT READABILITY */
body.page-id-29 .content-page p,
body.page-id-29 .content-page li {
  color: rgba(255, 255, 255, 0.80);
}
body.page-id-29 .content-page li::marker {
  color: #dfbd70;
}
body.page-id-29 .content-page strong {
  color: #ffffff;
  font-weight: 700;
}
body.page-id-29 .content-page a {
  color: #e5c77f;
  text-decoration-color: rgba(229, 199, 127, 0.68);
}
body.page-id-29 .content-page a:hover {
  color: #ffffff;
}

/* MATERIAL GUIDE PREMIUM PAGE */
body.page-id-28 .page-hero {
  position: relative;
  min-height: clamp(520px, 37vw, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid rgba(214,174,97,.34);
}
body.page-id-28 .material-guide-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  background: #050505;
  z-index: 0;
}
body.page-id-28 .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 37%, rgba(0,0,0,.12) 64%, rgba(0,0,0,.03) 100%);
}
body.page-id-28 .page-hero > div {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 96px));
  margin-left: 32px;
  margin-right: auto;
}
body.page-id-28 .page-hero h1 { color: #fff; max-width: 720px; }
body.page-id-28 .page-hero p { color: rgba(255,255,255,.84); max-width: 720px; }
body.page-id-28 .content-page p, body.page-id-28 .content-page li, body.page-id-28 .content-page td { color: rgba(255,255,255,.80); }
body.page-id-28 .content-page strong, body.page-id-28 .content-page th { color: #fff; font-weight: 700; }
body.page-id-28 .content-page li::marker { color: #dfbd70; }
body.page-id-28 .content-page a { color: #e5c77f; text-decoration-color: rgba(229,199,127,.68); }
body.page-id-28 .content-page table { width: 100%; border-collapse: collapse; margin: 24px 0 40px; background: rgba(255,255,255,.035); }
body.page-id-28 .content-page th, body.page-id-28 .content-page td { padding: 15px 18px; border: 1px solid rgba(229,199,127,.25); text-align: left; }
body.page-id-28 .content-page th { background: rgba(229,199,127,.10); }
@media (max-width: 700px) {
 body.page-id-28 .page-hero { min-height: 540px; }
 body.page-id-28 .material-guide-hero-image { object-fit: cover; object-position: 70% center; opacity: .72; }
 body.page-id-28 .page-hero > div { width: min(100% - 30px, 1120px); margin-inline: auto; }
 body.page-id-28 .content-page { overflow-x: auto; }
}

/* ABOUT HERO COPY FAR LEFT */
@media (min-width: 701px) {
 body.page-id-26 .page-hero > div {
   width: min(1320px, calc(100% - 96px));
   margin-left: 32px;
   margin-right: auto;
 }
}

/* MATERIAL HERO REDUCED BLACK AREA */
@media (min-width: 701px) {
  body.page-id-28 .material-guide-hero-image {
    object-fit: cover;
    object-position: center top;
  }
  body.page-id-28 .page-hero::after {
    background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.70) 27%, rgba(0,0,0,.22) 49%, rgba(0,0,0,.03) 72%);
  }
}

/* SHIPPING GUIDE PREMIUM PAGE */
body.page-id-27 .page-hero { position:relative; min-height:clamp(520px,37vw,600px); display:flex; align-items:center; overflow:hidden; background:#050505; border-bottom:1px solid rgba(214,174,97,.34); }
body.page-id-27 .shipping-guide-hero-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:0; }
body.page-id-27 .page-hero::after { content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,rgba(0,0,0,.94) 0%,rgba(0,0,0,.72) 27%,rgba(0,0,0,.24) 52%,rgba(0,0,0,.04) 78%); }
body.page-id-27 .page-hero > div { position:relative; z-index:2; width:min(1320px,calc(100% - 96px)); margin-left:32px; margin-right:auto; }
body.page-id-27 .page-hero h1 { color:#fff; max-width:760px; }
body.page-id-27 .page-hero p { color:rgba(255,255,255,.86); max-width:720px; }
body.page-id-27 .content-page p, body.page-id-27 .content-page li { color:rgba(255,255,255,.80); }
body.page-id-27 .content-page strong { color:#fff; font-weight:700; }
body.page-id-27 .content-page li::marker { color:#dfbd70; }
body.page-id-27 .content-page a { color:#e5c77f; text-decoration-color:rgba(229,199,127,.68); }
body.page-id-27 .content-page a:hover { color:#fff; }
@media (max-width:700px){ body.page-id-27 .page-hero{min-height:540px;} body.page-id-27 .shipping-guide-hero-image{object-position:66% center;opacity:.72;} body.page-id-27 .page-hero>div{width:min(100% - 30px,1120px);margin-inline:auto;} }

/* SHOP PREMIUM HERO AND SEO INTRO */
body.post-type-archive-product .woocommerce-products-header {
 position:relative; min-height:clamp(520px,37vw,600px); display:flex; flex-direction:column; justify-content:center; overflow:hidden; margin:0 0 36px; padding:70px 96px; background:#050505 url('https://uerosdoll.com/wp-content/uploads/2026/07/realistic-adult-dolls-shop-hero.png') center top/cover no-repeat; border-bottom:1px solid rgba(214,174,97,.34);
}
body.post-type-archive-product .woocommerce-products-header::before { content:""; position:absolute; inset:0; z-index:0; background:linear-gradient(90deg,rgba(0,0,0,.95) 0%,rgba(0,0,0,.76) 29%,rgba(0,0,0,.24) 52%,rgba(0,0,0,.03) 76%); }
body.post-type-archive-product .woocommerce-products-header > * { position:relative; z-index:1; max-width:700px; }
body.post-type-archive-product .woocommerce-products-header__title { margin:0 0 22px; color:#fff; font-family:Georgia,'Times New Roman',serif; font-size:clamp(58px,6vw,92px); line-height:.98; font-weight:400; letter-spacing:-.035em; }
body.post-type-archive-product .woocommerce-products-header .page-description p { margin:0 0 13px; color:rgba(255,255,255,.82); font-size:17px; line-height:1.65; }
body.post-type-archive-product .woocommerce-products-header .page-description strong { color:#fff; }
body.post-type-archive-product .woocommerce-products-header .page-description a { color:#e5c77f; text-decoration-color:rgba(229,199,127,.68); }
@media(max-width:700px){ body.post-type-archive-product .woocommerce-products-header{min-height:600px;padding:48px 24px;background-position:64% top;} body.post-type-archive-product .woocommerce-products-header::before{background:rgba(0,0,0,.68);} body.post-type-archive-product .woocommerce-products-header__title{font-size:54px;} body.post-type-archive-product .woocommerce-products-header .page-description p{font-size:15px;} }

/* SHOP HERO COPY FURTHER LEFT */
@media (min-width:701px){
 body.post-type-archive-product .woocommerce-products-header{padding-left:32px;}
}

/* SHOP HERO FULL BLEED LEFT */
@media (min-width:701px){
 body.post-type-archive-product .woocommerce-products-header{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding-left:32px;
 }
}

/* SHOP HERO COPY RIGHT ADJUSTMENT */
@media (min-width:701px){
 body.post-type-archive-product .woocommerce-products-header{padding-left:144px;}
}
