:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --white: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.2);
  --blue: #0071e3;
  --blue-dark: #0057b8;
  --blue-soft: #e8f2ff;
  --mint: #e8f7f1;
  --rose: #fff0f5;
  --amber: #fff7df;
  --lavender: #f0edff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.92) 48%, rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 54% 0%, rgba(0, 113, 227, 0.09), transparent 42%);
  color: var(--ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 247, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
}

.brand {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav nav a,
.cartLink {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav nav a:hover,
.cartLink:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink);
}

.cartLink {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.languageControl {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 4px 4px 4px 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.languageControl > span:first-child {
  white-space: nowrap;
}

.languageDisplay {
  min-width: 166px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 999px;
  padding: 3px 9px 3px 4px;
  background: var(--white);
  color: var(--ink);
}

.languageFlag {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--soft);
  font-size: 16px;
  line-height: 1;
}

.languageArrow {
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
}

.languageControl select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.hero {
  overflow: hidden;
  padding: 82px 0 58px;
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.heroCopy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: 0;
}

.heroCopy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary,
.secondary,
.buyButton,
.detailLink {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary,
.buyButton {
  background: var(--blue);
  color: var(--white);
}

.primary:hover,
.buyButton:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.secondary,
.detailLink {
  border-color: rgba(0, 113, 227, 0.22);
  background: var(--blue-soft);
  color: var(--blue);
}

.secondary:hover,
.detailLink:hover {
  border-color: rgba(0, 113, 227, 0.38);
  background: #dcedff;
  transform: translateY(-1px);
}

.heroMedia {
  position: relative;
  min-height: 638px;
}

.switcher {
  position: relative;
}

.switcherFrame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.switcherFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.switcherFrame:hover img {
  transform: scale(1.025);
}

.switcher-hero {
  width: min(560px, 100%);
  margin-left: auto;
}

.switcher-hero .switcherFrame {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #f9fafb, #e8f2ff);
}

.switcher-detail .switcherFrame {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #f9fafb, #f0edff);
}

.switcherSticker {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px) saturate(180%);
}

.switcherSticker span,
.switcherSticker strong {
  display: block;
  letter-spacing: 0;
}

.switcherSticker span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.switcherSticker strong {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.08;
}

.switcherThumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.switcherThumbs button {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.switcherThumbs button.isActive {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.16);
}

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

.metric {
  position: absolute;
  left: 0;
  bottom: 82px;
  width: 196px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(180%);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.storyBand {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.storyTrack {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.storyTrack span {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.storyTrack span:nth-child(1) {
  background: var(--blue-soft);
}

.storyTrack span:nth-child(2) {
  background: var(--mint);
}

.storyTrack span:nth-child(3) {
  background: var(--rose);
}

.storyTrack span:nth-child(4) {
  background: var(--amber);
}

.storyTrack span:nth-child(5) {
  background: var(--lavender);
}

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

.trustStrip div {
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.trustStrip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
}

.trustStrip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.shopSection {
  padding: 62px 0 90px;
}

.sectionHead {
  max-width: 830px;
  margin-bottom: 34px;
}

.sectionHead h2,
.editorial h2,
.guide h2,
.detailCopy h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
}

.sectionHead p:not(.eyebrow),
.editorial p,
.guide p,
.footer p,
.detailCopy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.interactiveShop {
  position: relative;
}

.moodLab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 22px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 242, 255, 0.88)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.moodLab h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.12;
}

.moodLab p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.moodButtons,
.filterBar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.moodButtons {
  justify-content: flex-end;
}

.moodButtons button,
.filterBar button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.moodButtons button:hover,
.filterBar button:hover,
.moodButtons button.isActive,
.filterBar button.isActive {
  border-color: rgba(0, 113, 227, 0.3);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.filterBar {
  margin-bottom: 22px;
}

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

.productCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.productCard:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.productImage {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--soft);
}

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

.productImage span {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(14px) saturate(180%);
}

.productBody {
  padding: 18px;
}

.productMeta,
.productFoot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.productBody h3 {
  min-height: 58px;
  margin: 13px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.productBody p {
  min-height: 84px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.productFoot {
  align-items: end;
  margin-bottom: 14px;
}

.productFoot strong {
  color: var(--ink);
  font-size: 24px;
}

.productFoot span {
  max-width: 122px;
  text-align: right;
  line-height: 1.35;
}

.buyButton,
.detailLink {
  width: 100%;
}

.detailLink {
  margin-top: 10px;
}

.textLink {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.quickLookOverlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
}

.quickLook {
  position: relative;
  width: min(940px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1fr);
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.quickLook img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 8px;
  object-fit: cover;
}

.quickLook h3 {
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.04;
}

.quickLook p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.closeButton {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(17, 17, 17, 0.9);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.editorial {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.94), rgba(34, 34, 37, 0.94)),
    var(--ink);
  color: var(--white);
}

.editorialGrid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: center;
}

.editorial .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
}

.editorial h2,
.editorial p {
  color: var(--white);
}

.editorial p {
  color: rgba(255, 255, 255, 0.72);
}

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

.editCards a {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.editCards img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.editCards span {
  display: block;
  padding: 14px;
  color: var(--white);
  font-weight: 800;
}

.guide {
  padding: 84px 0;
}

.guideCard {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

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

.proofGrid div,
.detailBand div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.proofGrid div:nth-child(1),
.detailBand div:nth-child(1) {
  background: var(--blue-soft);
}

.proofGrid div:nth-child(2),
.detailBand div:nth-child(2) {
  background: var(--mint);
}

.proofGrid div:nth-child(3),
.detailBand div:nth-child(3) {
  background: var(--rose);
}

.proofGrid strong,
.detailBand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.detailHero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  padding: 72px 0 76px;
}

.detailCopy h1 {
  font-size: 64px;
}

.detailStats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detailStats span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detailPrice {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 24px 0;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.detailPrice strong {
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
}

.detailPrice span {
  color: var(--muted);
  font-weight: 800;
}

.detailBand {
  margin-top: 0;
  padding-bottom: 86px;
}

.detailBand span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 32px;
  font-weight: 800;
}

.footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.footerGrid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footerGrid p {
  max-width: 460px;
  margin-bottom: 0;
}

.footerGrid div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.footerGrid div:last-child a:hover {
  color: var(--blue);
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto 1fr;
    padding: 12px 0;
  }

  .nav nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 56px;
  }

  .heroGrid,
  .editorialGrid,
  .detailHero {
    grid-template-columns: 1fr;
  }

  .heroMedia {
    min-height: auto;
  }

  .switcher-hero {
    margin-left: 0;
  }

  .metric {
    right: 12px;
    left: auto;
    bottom: 78px;
  }

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

  .moodLab,
  .quickLook {
    grid-template-columns: 1fr;
  }

  .moodButtons {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 14px 0;
  }

  .nav nav {
    order: 0;
    grid-column: auto;
    width: 100%;
    flex-wrap: wrap;
  }

  .nav nav a {
    flex: 1 1 auto;
    background: rgba(255, 255, 255, 0.68);
  }

  .cartLink {
    width: 100%;
  }

  .languageControl {
    width: 100%;
    justify-content: space-between;
  }

  .languageDisplay {
    min-width: 0;
    flex: 1;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .heroCopy p:not(.eyebrow) {
    font-size: 17px;
  }

  .sectionHead h2,
  .editorial h2,
  .guide h2,
  .detailCopy h1 {
    font-size: 36px;
  }

  .metric {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .storyTrack,
  .trustStrip,
  .productGrid,
  .proofGrid,
  .editCards,
  .detailBand {
    grid-template-columns: 1fr;
  }

  .storyTrack span {
    min-height: 58px;
  }

  .moodLab {
    padding: 16px;
  }

  .moodLab h3,
  .quickLook h3 {
    font-size: 30px;
  }

  .filterBar button,
  .moodButtons button {
    flex: 1 1 auto;
  }

  .quickLook {
    padding: 14px;
  }

  .quickLook img {
    min-height: 260px;
  }

  .guideCard {
    padding: 22px;
  }

  .detailHero {
    padding-top: 42px;
  }

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

  .footerGrid {
    flex-direction: column;
  }

  .footerGrid div:last-child {
    justify-content: flex-start;
  }
}

/* WordPress and WooCommerce integration */
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 168px;
  max-height: 42px;
}

.nav nav ul {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cartLink {
  gap: 7px;
}

.cartCount {
  min-width: 20px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 5px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
}

body.admin-bar .nav {
  top: 32px;
}

body.modalOpen {
  overflow: hidden;
}

.productBody h3 a:hover,
.contentArticle h1 a:hover {
  color: var(--blue);
}

.productCard .button,
.productCard .added_to_cart {
  margin: 0;
}

.productCard .added_to_cart {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contentPage,
.wooShell {
  padding-top: 72px;
  padding-bottom: 90px;
}

.contentArticle {
  max-width: 820px;
}

.contentArticle h1,
.wooShell > h1,
.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.06;
}

.entryContent,
.contentArticle,
.woocommerce-product-details__short-description,
.woocommerce-Tabs-panel {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.emptyState {
  min-height: 62vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.wooPage {
  min-height: 70vh;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--muted);
  font-size: 14px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .quantity .qty {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  float: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 0 0 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 5;
  margin: 0 0 18px;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .star-rating {
  margin-right: 18px;
  margin-left: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 56px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.woocommerce ul.products li.product .price {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-right: 18px;
  margin-left: 18px;
  padding: 0 20px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.woocommerce span.onsale {
  min-width: auto;
  min-height: auto;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  line-height: 1.2;
  backdrop-filter: blur(14px);
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images img {
  border-radius: 8px;
  background: var(--soft);
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: auto;
  float: none;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce div.product form.cart .button {
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 22px;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0;
  background: var(--white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--blue-soft);
}

.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals,
.woocommerce-checkout #payment {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.select2-container--default .select2-selection--single {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
}

@media (max-width: 980px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}

@media (max-width: 680px) {
  .nav nav ul {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav nav li {
    flex: 1 1 auto;
  }

  .nav nav li a {
    width: 100%;
  }

  .contentArticle h1,
  .wooShell > h1,
  .woocommerce-products-header__title,
  .woocommerce div.product .product_title {
    font-size: 36px;
  }

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

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    width: 100%;
    float: none;
  }
}
