/*
Theme Name: Astra Mois
Theme URI: https://www.925moissanite.com/
Author: Astra Mois
Description: Multilingual B2B showcase theme for Astra Mois moissanite 925 sterling silver OEM/ODM jewelry.
Version: 1.0.47
Text Domain: astra-mois
*/

:root {
  --ink: #141414;
  --muted: #636363;
  --line: #e7e2dc;
  --paper: #fbfaf8;
  --white: #ffffff;
  --silver: #d7dce0;
  --graphite: #262a2f;
  --wine: #7a2638;
  --teal: #0f7565;
  --gold: #b9965a;
  --shadow: 0 18px 50px rgba(15, 17, 20, 0.12);
  --shadow-soft: 0 12px 34px rgba(15, 17, 20, 0.1);
  --whatsapp-logo: url("assets/images/whatsapp-web-logo.png");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: 188px;
}

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

.nav a {
  white-space: nowrap;
}

.nav a:hover,
.lang-switch a:hover {
  color: var(--wine);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 26px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  padding: 18px 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16, 17, 20, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 18px;
  height: 18px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 28px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.25;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #f7f4ef;
  color: var(--wine);
}

.product-category-band {
  padding: 28px 0 6px;
  background: #fbfbfa;
}

.product-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.product-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  font-weight: 800;
  line-height: 1.15;
}

.product-category-nav a:hover,
.product-category-nav a:focus-visible,
.product-category-nav a.active {
  border-color: var(--wine);
  color: var(--wine);
  box-shadow: 0 10px 24px rgba(109, 33, 50, 0.1);
}

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

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-link-facebook svg {
  fill: currentColor;
}

.social-link-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link-facebook {
  color: #1877f2;
}

.social-link-instagram {
  color: #d62976;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: currentColor;
  box-shadow: 0 8px 20px rgba(16, 17, 20, 0.12);
  transform: translateY(-1px);
}

.social-link img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer .social-link img {
  width: 26px;
  filter: none;
}

.footer-social {
  margin-top: 16px;
}

.footer .social-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.footer .social-link:hover,
.footer .social-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.blog-section .section-head {
  margin-bottom: 28px;
}

.blog-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.blog-card-image {
  display: block;
  margin: -18px -18px 18px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--paper);
}

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

.blog-card h3 {
  margin-bottom: 14px;
}

.blog-card .text-link {
  margin-top: auto;
}

.article-inner {
  max-width: 860px;
}

.article-hero-image {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.article-body {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  color: var(--graphite);
  font-size: 19px;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.faq-page-list {
  max-width: 980px;
}

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

.faq-page-list p {
  color: var(--graphite);
  line-height: 1.7;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 68px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  white-space: nowrap;
}

.lang-switch-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  font-size: 16px;
  line-height: 1;
}

.lang-switch-label {
  line-height: 1;
  white-space: nowrap;
}

.lang-switch a.active {
  border-color: var(--ink);
}

.global-translate {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  font-size: 20px;
  z-index: 30;
}

.global-translate-button {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.global-translate-globe {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  white-space: nowrap;
}

.global-translate-native {
  display: none;
}

.global-translate-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: 278px;
  max-height: min(560px, calc(100vh - 120px));
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(223, 218, 211, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(15, 17, 20, 0.16);
}

.global-translate.is-open .global-translate-menu {
  display: grid;
  gap: 2px;
}

.global-translate-option {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 38px;
  width: 100%;
  padding: 7px 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--graphite);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease;
}

.global-translate-option:hover,
.global-translate-option:focus-visible,
.global-translate-option[aria-selected="true"] {
  background: rgba(15, 117, 101, 0.1);
  color: var(--ink);
}

.global-translate-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  font-size: 18px;
  line-height: 1;
}

.global-translate-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-translate .goog-te-gadget,
.global-translate .goog-te-banner-frame,
.global-translate .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.nav a:focus-visible,
.lang-switch a:focus-visible,
.global-translate-button:focus-visible,
.global-translate-option:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(15, 117, 101, 0.36);
  outline-offset: 3px;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.light:hover {
  border-color: rgba(15, 117, 101, 0.35);
  box-shadow: 0 8px 20px rgba(15, 17, 20, 0.08);
}

.button.whatsapp {
  width: 148px;
  min-height: 58px;
  padding: 0;
  border-color: transparent;
  background: var(--whatsapp-logo) center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.button.whatsapp::before {
  content: "";
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 47%, rgba(0, 0, 0, 0.12)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 98px 0 72px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  font-size: clamp(38px, 7vw, 78px);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  padding: 18px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
}

.hero-stat strong {
  display: block;
  font-size: 22px;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--white);
}

.section.dark {
  background: var(--graphite);
  color: var(--white);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--wine);
  font-weight: 800;
}

.section.dark .section-kicker {
  color: var(--gold);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.quality-grid {
  margin-top: 42px;
}

.factory-proof {
  background: var(--white);
}

.factory-proof-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

.factory-proof-item {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--silver);
}

.factory-proof-item.large {
  grid-row: span 2;
}

.factory-proof-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.factory-proof-item:hover img {
  transform: scale(1.025);
}

.factory-proof-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 117, 101, 0.22);
  box-shadow: var(--shadow-soft);
}

.card.pad {
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
}

.advantage-title {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.advantage-title h3 {
  margin-bottom: 0;
}

.advantage-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--silver);
  color: var(--ink);
}

.advantage-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p,
.card li {
  color: var(--muted);
}

.process-card {
  overflow: hidden;
}

.process-card-media {
  aspect-ratio: 3 / 2;
  background: var(--silver);
  overflow: hidden;
}

.process-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card-body {
  padding: 22px 24px 24px;
}

.media-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef0f2, #ffffff);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel-square {
  aspect-ratio: 1 / 1;
}

.media-panel-wide {
  aspect-ratio: 1607 / 979;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.check-list,
.plain-list,
.icon-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
}

.icon-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.list-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal);
}

.list-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 2px;
  background: var(--gold);
}

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

.step {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.step-number {
  color: var(--gold);
  font-weight: 800;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.step-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-band {
  padding: 52px 0;
  background: var(--wine);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 22px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line span {
  color: var(--muted);
}

.quote-form-panel {
  margin-top: 24px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  background: var(--white);
}

.quote-form-panel h2 {
  margin-bottom: 34px;
  color: #0872b8;
  font-size: clamp(34px, 6vw, 58px);
  text-align: center;
  letter-spacing: 0;
}

.quote-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 18px;
}

.quote-form input {
  min-height: 58px;
  padding: 0 22px;
}

.quote-form textarea {
  min-height: 260px;
  padding: 20px 22px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #b9b9b9;
}

.message-label {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.form-footer p::before {
  content: "√ ";
  color: #04a35a;
  font-weight: 900;
}

.form-footer button {
  min-height: 66px;
  border: 1px solid #0666a6;
  border-radius: 0;
  background: #0872b8;
  color: var(--white);
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.form-footer button:hover {
  background: #075f9b;
}

.form-message {
  margin: -12px 0 24px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.form-message.success {
  background: rgba(15, 117, 101, 0.1);
  color: var(--teal);
}

.form-message.error {
  background: rgba(122, 38, 56, 0.1);
  color: var(--wine);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  margin: 0;
}

.footer {
  padding: 46px 0;
  background: #101114;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer img {
  width: 160px;
  filter: invert(1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 60px;
  min-height: 60px;
  padding: 0;
  border-radius: 0;
  background: var(--whatsapp-logo) center / contain no-repeat;
  color: transparent;
  box-shadow: none;
  font-size: 0;
  font-weight: 800;
}

.floating-whatsapp::before {
  content: "";
  display: none;
}

.product-hero {
  padding: 70px 0 52px;
  background: linear-gradient(135deg, #f8f6f2, #ffffff 58%, #e8ecee);
  border-bottom: 1px solid var(--line);
}

.product-hero .lead {
  color: var(--muted);
}

.new-ring-section {
  background: #fff;
}

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

.new-ring-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.new-ring-media {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfa;
  border-bottom: 1px solid var(--line);
}

.new-ring-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.new-ring-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
  gap: 12px;
}

.new-ring-model {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.new-ring-body h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.15;
}

.new-ring-specs {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.new-ring-specs div {
  display: grid;
  gap: 2px;
}

.new-ring-specs dt {
  color: var(--ink);
  font-weight: 800;
}

.new-ring-specs dd {
  margin: 0;
}

.new-ring-body .text-link {
  margin-top: auto;
}

.product-listing-section {
  background: #fff;
}

.product-listing-head {
  grid-template-columns: 1fr;
}

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

.woocommerce-product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.woocommerce-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 117, 101, 0.22);
  box-shadow: 0 12px 28px rgba(15, 17, 20, 0.08);
}

.woocommerce-product-card-image {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fbfbfa;
}

.woocommerce-product-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.woocommerce-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.woocommerce-product-card-body h3 {
  font-size: 19px;
  line-height: 1.2;
}

.woocommerce-product-card-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.woocommerce-product-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.woocommerce-product-card-body .text-link {
  margin-top: auto;
}

.product-grid-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.product-grid-pagination a {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
}

.product-grid-pagination a.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-grid-empty {
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-menu {
    left: 16px;
    right: 16px;
    top: 76px;
    min-width: 0;
    max-width: calc(100vw - 32px);
    transform: translateY(8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translateY(0);
  }

  .nav-dropdown-menu::before {
    left: 110px;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-strip,
  .grid.three,
  .grid.four,
  .process,
  .factory-proof-grid,
  .section-head,
  .split,
  .contact-grid,
  .form-row,
  .form-footer,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .split {
    gap: 32px;
  }

  .quote-form-panel {
    padding: 24px;
  }

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

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

@media (max-width: 620px) {
  .header-inner,
  .section-inner,
  .hero-content,
  .hero-strip {
    width: min(100% - 24px, 1160px);
  }

  .brand img {
    width: 150px;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-content {
    padding: 72px 0 34px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-strip {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 18px;
  }

  .hero-stat {
    padding: 14px;
  }

  .hero-stat strong {
    font-size: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button.whatsapp {
    width: 148px;
  }

  .new-ring-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions .button.whatsapp {
    width: 148px;
  }

  .contact-line {
    display: block;
  }

  .global-translate {
    width: 42px;
    flex: 0 0 42px;
  }

  .global-translate-menu {
    right: -54px;
    width: min(278px, calc(100vw - 28px));
    max-height: min(520px, calc(100vh - 112px));
  }

  .floating-whatsapp {
    right: auto;
    left: 14px;
    bottom: 14px;
  }
}
