/*
Theme Name: Cosmos High Tech
*/

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

:root {
  --max: 1320px;
  --pad: 18px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --gold: #f6d24a;
}

html {
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

#what-we-do,
#solutions,
#products,
#how-it-works {
  scroll-margin-top: 24px;
}

html, body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

#page, #content, #primary, #main {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
  float: none !important;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cart-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: 'Arimo', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color 200ms var(--ease);
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #fff;
}

.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  transition: color 200ms var(--ease);
  position: relative;
}

.nav-cart:hover {
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #2e2b19;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  border-radius: 999px;
}

.cart-count.is-empty {
  display: none;
}

/* ─── BURGER ─── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 200;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 250ms var(--ease), opacity 250ms var(--ease);
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  height: 800px;
  display: flex;
  flex-direction: column;
  background-color: #2e2b19;
  background-image:
    radial-gradient(125% 100% at 50% 30%, transparent 50%, rgba(0,0,0,.5) 100%),
    radial-gradient(58% 66% at 70% 46%, rgba(168,165,120,.13) 0%, transparent 60%),
    linear-gradient(to bottom, #2e2b19 0%, #2e2b19 12%, #5e583a 100%);
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 3%;
  bottom: 0;
  width: 48%;
  height: 64px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55) 0%, rgba(0,0,0,.26) 40%, transparent 72%);
  filter: blur(13px);
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  height: 88%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.22));
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 52px;
}

.hero-content {
  width: min(680px, 92%);
}

.hero h1 {
  margin: 0 0 16px;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  color: #FFF0AF;
  text-transform: uppercase;
}

.hero p {
  margin: 0 0 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: transparent;
  color: #FFF0AF;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  border: 1.5px solid rgba(255,240,175,.5);
  border-radius: 10px;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}

.hero-btn:hover {
  background: rgba(255,240,175,.1);
  border-color: #FFF0AF;
  color: #fff;
}

/* ─── BOTTOM BAR ─── */
.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-bottom-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-bottom-text {
  font-family: 'Arimo', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-bottom-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.hero-bottom-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════
   ABOUT / PERSPECTIVE
════════════════════════════════ */
.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em;
  color: #6f6f6a;
}

.about {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
}

.about-box {
  margin-top: 28px;
  background: #8a8456;
  border-radius: 14px;
  padding: clamp(48px, 6vw, 76px) clamp(24px, 5vw, 64px);
}

.about-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-inner::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.about-inner p {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #22221a;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.about-inner p + p {
  margin-top: 26px;
}

.about-inner .hl {
  color: #FFF0AF;
}

.perspective {
  padding: clamp(40px, 6vw, 64px) 0 clamp(72px, 10vw, 120px);
}

.perspective-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.perspective-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.perspective-text::before {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 30px;
}

.perspective-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #2c2c26;
  max-width: 480px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(34,34,26,.12);
}

.perspective-text p:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.perspective-link {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 30px;
  background: #515034;
  color: #FFF0AF;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1.5px solid #515034;
  border-radius: 10px;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.perspective-link::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform 200ms var(--ease);
}

.perspective-link:hover {
  background: #3f3e28;
  border-color: #3f3e28;
  color: #fff;
  transform: translateY(-2px);
}

.perspective-link:hover::after {
  transform: translateX(4px);
}

.perspective-media {
  border-radius: 14px;
  overflow: hidden;
  min-height: clamp(420px, 42vw, 560px);
}

.perspective-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════
   APPROACH
════════════════════════════════ */
.approach {
  padding: clamp(8px, 2vw, 24px) 0 clamp(72px, 10vw, 120px);
}

.approach .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.approach-card {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: clamp(600px, 60vw, 850px);
  background-color: #8a8456;
  background-image: var(--approach-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 64px);
}

.approach-list {
  width: min(54%, 560px);
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 3.2vw, 46px);
  background: rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: clamp(36px, 3.5vw, 52px) clamp(30px, 3vw, 44px);
}

.approach-item-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  color: #FFF0AF;
  margin-bottom: 12px;
}

.approach-item-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 380px;
}

/* ════════════════════════════════
   WHAT WE DO
════════════════════════════════ */
.wwd {
  padding: clamp(8px, 2vw, 24px) 0 clamp(72px, 10vw, 120px);
}

.wwd .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.wwd-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 32px);
  align-items: stretch;
}

.wwd-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: clamp(360px, 40vw, 560px);
}

.wwd-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwd-list {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
}

.wwd-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #4f5d34;
  border-radius: 12px;
  padding: clamp(26px, 2.6vw, 38px) clamp(26px, 2.8vw, 40px);
}

.wwd-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.4vw, 21px);
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}

.wwd-card-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}

/* ════════════════════════════════
   SOLUTIONS
════════════════════════════════ */
.solutions {
  padding: clamp(8px, 2vw, 24px) 0 clamp(72px, 10vw, 120px);
}

.solutions .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.solutions-grid {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.sol-item {
  border-left: 1px solid rgba(0,0,0,.16);
  padding-left: clamp(20px, 2vw, 28px);
}

.sol-item-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.4vw, 21px);
  letter-spacing: -0.01em;
  color: #1d1d1a;
  margin-bottom: 14px;
}

.sol-item-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.6;
  color: #4a4a45;
  max-width: 300px;
}

/* ════════════════════════════════
   COOPERATION (Contact Form 7)
════════════════════════════════ */
.cooperation {
  padding: clamp(40px, 6vw, 90px) 0 clamp(56px, 8vw, 110px);
}

.cooperation .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.cooperation-inner {
  max-width: none;
}

.cooperation-lead {
  margin-top: 22px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
  color: #3a3a35;
  max-width: 380px;
}

.cooperation .wpcf7 {
  margin-top: clamp(28px, 3.5vw, 48px);
}

.cooperation .wpcf7-form p {
  margin: 0;
}

.cooperation .coop-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cooperation .wpcf7-form-control-wrap {
  display: block;
}

.cooperation input.wpcf7-text,
.cooperation textarea.wpcf7-textarea {
  width: 100%;
  background: #f3f3f1;
  border: none;
  border-radius: 8px;
  padding: 18px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #2a2a26;
  transition: background 200ms var(--ease), box-shadow 200ms var(--ease);
}

.cooperation textarea.wpcf7-textarea {
  min-height: 130px;
  resize: vertical;
  display: block;
}

.cooperation input.wpcf7-text:focus,
.cooperation textarea.wpcf7-textarea:focus {
  outline: none;
  background: #ececec;
  box-shadow: 0 0 0 2px rgba(79,93,52,.25);
}

.cooperation ::placeholder {
  color: #9a9a92;
}

.cooperation .coop-consent {
  margin-top: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #9a9a92;
  max-width: 480px;
}

.cooperation .coop-consent a {
  color: #9a9a92;
  text-decoration: underline;
}

/* капча Cloudflare Turnstile — ровный отступ и выравнивание по левому краю */
.cooperation .cf7-cf-turnstile {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  line-height: 0;
}

.cooperation .cf7-cf-turnstile .cf-turnstile {
  margin-left: 0 !important;
}

.cooperation .cf7-cf-turnstile .cf-turnstile-br {
  display: none;
}

.cooperation input.wpcf7-submit {
  margin-top: 22px;
  height: 52px;
  padding: 0 36px;
  background: #515034;
  color: #FFF0AF;
  border: 1.5px solid #515034;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.cooperation input.wpcf7-submit:hover {
  background: #3f3e28;
  border-color: #3f3e28;
  color: #fff;
  transform: translateY(-2px);
}

.cooperation .wpcf7-spinner {
  margin: 16px 0 0;
}

.cooperation .wpcf7-response-output {
  margin: 18px 0 0 !important;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: #4e5b34;
  padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 3vw, 40px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: fit-content;
}

.footer-logo-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col a {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  width: fit-content;
  transition: color 200ms var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(40px, 6vw, 72px);
}

.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.25);
}

.footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════
   PRODUCTS (WooCommerce slider)
════════════════════════════════ */
.products {
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
}

.products .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.product-readmore {
  display: none;
  align-self: flex-start;
  margin-top: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #FFF0AF;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.products-slider {
  position: relative;
  margin-top: 28px;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.products-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
}

.products-track {
  display: flex;
  transition: transform 450ms var(--ease);
}

.product-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 42% 58%;
  background: #4e5b34;
}

.product-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-info {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 48px);
  color: rgba(255,255,255,.82);
}

.product-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  color: #FFF0AF;
  margin-bottom: 16px;
}

.product-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.product-desc p { margin: 0 0 14px; }
.product-desc strong { color: #fff; }
.product-desc ul { margin: 0 0 14px; padding-left: 18px; }
.product-desc li { margin-bottom: 6px; }
.product-desc > *:last-child { margin-bottom: 0; }

.product-foot {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.product-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.5vw, 22px);
  color: #FFF0AF;
}

.product-price del {
  margin-right: 8px;
  font-weight: 600;
  opacity: .6;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border: 1.5px solid rgba(255,240,175,.6);
  border-radius: 10px;
  color: #FFF0AF;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}

.product-btn:hover {
  background: rgba(255,240,175,.12);
  border-color: #FFF0AF;
  color: #fff;
}

.product-foot .product-viewcart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  background: rgba(255,240,175,.14);
  border: 1.5px solid rgba(255,240,175,.55);
  color: #FFF0AF;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.product-foot .product-viewcart:hover {
  background: rgba(255,240,175,.24);
  color: #fff;
}

/* прячем дублирующую ссылку, которую WooCommerce добавляет после "Buy now" */
.product-foot a.added_to_cart {
  display: none;
}

.products-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  color: #9a9a92;
  transition: color 200ms var(--ease);
}

.products-arrow:hover {
  color: #3a3a35;
}

.products-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.products-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  cursor: pointer;
  transition: background 200ms var(--ease);
}

.products-dot.is-active {
  background: var(--gold);
}

/* ════════════════════════════════
   CART POPUP (drawer)
════════════════════════════════ */
.cart-popup[hidden] {
  display: none;
}

.cart-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.cart-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,19,10,.55);
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

.cart-popup.is-open .cart-popup-overlay {
  opacity: 1;
}

.cart-popup-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  background: #2e2b19;
  box-shadow: -20px 0 60px rgba(0,0,0,.45);
  transform: translateX(100%);
  transition: transform 350ms var(--ease);
}

.cart-popup.is-open .cart-popup-panel {
  transform: translateX(0);
}

.cart-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.cart-popup-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #FFF0AF;
}

.cart-popup-x {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: rgba(255,255,255,.7);
  transition: color 200ms var(--ease);
}

.cart-popup-x:hover {
  color: #fff;
}

.cart-popup-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px 16px;
  font-family: 'Manrope', sans-serif;
  color: rgba(255,255,255,.85);
}

.cart-popup-body .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-popup-body .woocommerce-mini-cart-item {
  position: relative;
  padding: 16px 30px 16px 72px;
  min-height: 72px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.cart-popup-body .woocommerce-mini-cart-item img {
  position: absolute;
  left: 0;
  top: 16px;
  width: 56px !important;
  height: 56px !important;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 !important;
  float: none !important;
}

.cart-popup-body .woocommerce-mini-cart-item a:not(.remove) {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.cart-popup-body .quantity {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.cart-popup-body .woocommerce-Price-amount {
  color: #FFF0AF;
}

.cart-popup-body a.remove {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: rgba(255,255,255,.6) !important;
  font-size: 16px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.cart-popup-body a.remove:hover {
  background: rgba(255,255,255,.12);
  color: #fff !important;
}

.cart-popup-body .woocommerce-mini-cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 18px 0 0;
  padding-top: 18px;
  font-size: 16px;
  color: #fff;
}

.cart-popup-body .woocommerce-mini-cart__total strong {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.cart-popup-body .woocommerce-mini-cart__total .woocommerce-Price-amount {
  font-weight: 800;
  font-size: 20px;
  color: #FFF0AF;
}

/* прячем стандартные кнопки мини-корзины — свои в футере поп-апа */
.cart-popup-body .woocommerce-mini-cart__buttons {
  display: none;
}

.cart-popup-body .woocommerce-mini-cart__empty-message {
  padding: 40px 0;
  text-align: center;
  color: rgba(255,255,255,.6);
}

.cart-popup-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.cart-popup-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: #4f5d34;
  color: #FFF0AF;
  border: 1.5px solid #4f5d34;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.cart-popup-checkout:hover {
  background: #5c6c3d;
  color: #fff;
}

.cart-popup-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}

.cart-popup-continue:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

body.cart-open {
  overflow: hidden;
}

/* ════════════════════════════════
   CONTACTS PAGE
════════════════════════════════ */
.contacts-info {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
}

.contacts-list {
  margin: 0;
}

.contacts-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.contacts-row:last-child {
  border-bottom: none;
}

.contacts-row dt {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 1.2vw, 17px);
  color: #1d1d1a;
}

.contacts-row dd {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  color: #4a4a45;
}

.contacts-row dd a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.contacts-row dd a:hover {
  color: #1d1d1a;
}

/* ════════════════════════════════
   WOOCOMMERCE — CART & CHECKOUT (база)
════════════════════════════════ */
body.woocommerce-cart,
body.woocommerce-checkout {
  background: #fff;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad);
  font-family: 'Manrope', sans-serif;
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.wc-block-components-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d1d1a;
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce table.shop_table th {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #1d1d1a;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table tr {
  border-color: rgba(0,0,0,.08);
}

.woocommerce .cart_item .product-name a {
  color: #1d1d1a;
  text-decoration: none;
  font-weight: 600;
}

.woocommerce .woocommerce-Price-amount {
  color: #1d1d1a;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce #order_comments,
.select2-container--default .select2-selection--single,
.wc-block-components-text-input input,
.wc-block-components-select .wc-block-components-select__select {
  background: #f3f3f1;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #2a2a26;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.wc-block-components-text-input input:focus {
  outline: none;
  border-color: #4f5d34;
  box-shadow: 0 0 0 2px rgba(79,93,52,.2);
}

.woocommerce form .form-row label,
.wc-block-components-text-input label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #4a4a45;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order,
.woocommerce .button.alt,
.wc-block-components-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4f5d34;
  color: #FFF0AF;
  border: 1.5px solid #4f5d34;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: none;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #place_order:hover,
.woocommerce .button.alt:hover,
.wc-block-components-button:hover {
  background: #5c6c3d;
  color: #fff;
}

.woocommerce button[name="update_cart"],
.woocommerce .coupon button {
  background: transparent;
  color: #4f5d34;
  border-color: rgba(79,93,52,.5);
}

.woocommerce button[name="update_cart"]:hover,
.woocommerce .coupon button:hover {
  background: rgba(79,93,52,.08);
  color: #3a4527;
}

.woocommerce .cart_totals,
.woocommerce .woocommerce-checkout-review-order,
.wc-block-components-totals-wrapper,
.wp-block-woocommerce-checkout-order-summary-block {
  background: #f6f6f3;
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
}

.woocommerce .cart_totals h2,
.woocommerce #order_review_heading {
  margin-bottom: 14px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: #4f5d34;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #4f5d34;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* планшет — бургер с 1024px */
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    background: rgba(81,80,52,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 80px 32px 40px;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 350ms var(--ease), visibility 0s linear 350ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 350ms var(--ease), visibility 0s;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 22px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .site-nav .nav-cart {
    padding: 16px 0;
  }

  .nav-menu a,
  .site-nav .nav-cart {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 400ms var(--ease), transform 400ms var(--ease);
  }

  .site-nav.is-open .nav-menu a,
  .site-nav.is-open .nav-cart {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open .nav-menu li:nth-child(1) a { transition-delay: 90ms; }
  .site-nav.is-open .nav-menu li:nth-child(2) a { transition-delay: 140ms; }
  .site-nav.is-open .nav-menu li:nth-child(3) a { transition-delay: 190ms; }
  .site-nav.is-open .nav-menu li:nth-child(4) a { transition-delay: 240ms; }
  .site-nav.is-open .nav-menu li:nth-child(5) a { transition-delay: 290ms; }
  .site-nav.is-open .nav-menu li:nth-child(6) a { transition-delay: 340ms; }
  .site-nav.is-open .nav-menu li:nth-child(7) a { transition-delay: 390ms; }
  .site-nav.is-open .nav-cart { transition-delay: 430ms; }
}

/* мобильный */
/* hero в стопку — планшеты и телефоны */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-inner {
    display: block;
    overflow: visible;
  }

  .hero-bg-img {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 96px auto 0;
    opacity: 1;
    z-index: 1;
    filter: drop-shadow(0 8px 10px rgba(0,0,0,.3));
  }

  .hero-inner::before {
    display: none;
  }

  .hero-body {
    position: relative;
    z-index: 2;
    display: block;
    flex: none;
    margin-top: 16px;
    padding: 0 0 30px;
  }

  .hero-content {
    width: 100%;
    background: rgba(30,28,16,.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 28px 24px;
  }

  .approach-card {
    justify-content: flex-end;
    align-items: center;
    min-height: clamp(520px, 72vw, 720px);
  }

  .approach-list {
    width: min(64%, 440px);
    background: rgba(255,255,255,.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 30px 26px;
    gap: 26px;
  }
}

@media (max-width: 768px) {
  .perspective-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .perspective-text {
    justify-content: flex-start;
  }

  .perspective-text p {
    max-width: none;
  }

  .perspective-link {
    margin-top: 32px;
  }

  .perspective-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .approach-card {
    min-height: 0;
    align-items: stretch;
    background-position: 30% center;
    padding: clamp(18px, 5vw, 28px);
  }

  .approach-list {
    width: 100%;
    padding: 26px 22px;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .wwd-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .wwd-card {
    flex: none;
  }

  .sol-item-text {
    max-width: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

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

  .product-media {
    min-height: 0;
    height: clamp(375px, 52vw, 480px);
  }

  .product-media img {
    object-position: center 72%;
  }

  /* ── кнопки слайдера в одну строку ── */
  .product-foot {
    gap: 14px;
  }

  /* цена занимает свою строку */
  .product-foot .product-price {
    flex: 1 0 100%;
  }

  /* обе кнопки делят одну строку поровну */
  .product-foot .product-btn,
  .product-foot .product-viewcart {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 16px;
    white-space: nowrap;
  }

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

  .products-arrow {
    display: none;
  }

  .product-desc {
    position: relative;
    max-height: 240px;
    overflow: hidden;
  }

  .product-desc::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(to top, #4e5b34 18%, rgba(78,91,52,0));
    pointer-events: none;
  }

  .product-info.is-expanded .product-desc {
    max-height: none;
  }

  .product-info.is-expanded .product-desc::after {
    display: none;
  }

  .product-readmore {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .hero-bottom-text { font-size: 11px; white-space: normal; }
  .logo-text { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .nav-menu a,
  .site-nav .nav-cart,
  .burger span {
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
  .nav-menu a,
  .site-nav .nav-cart {
    transform: none !important;
  }
}

/* =====================================================================
   COSMOS — CART & CHECKOUT (блоки WooCommerce)
===================================================================== */

/* 1. STICKY-ФУТЕР */
body.woocommerce-page,
body.woocommerce-cart,
body.woocommerce-checkout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.woocommerce-page #page,
body.woocommerce-cart #page,
body.woocommerce-checkout #page {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
}

body.woocommerce-page #content,
body.woocommerce-cart #content,
body.woocommerce-checkout #content,
body.woocommerce-page #primary,
body.woocommerce-cart #primary,
body.woocommerce-checkout #primary,
body.woocommerce-page #main,
body.woocommerce-cart #main,
body.woocommerce-checkout #main {
  flex: 1 0 auto;
}

body.woocommerce-page .site-footer,
body.woocommerce-cart .site-footer,
body.woocommerce-checkout .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* 2. ХЕДЕР на внутренних страницах */
body:not(.home) .site-header {
  position: relative;
  background: #2e2b19;
}

body:not(.home).admin-bar .site-header {
  top: 0;
}

/* 3. Прячем служебные заголовки и Edit */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-cart .page-title,
.woocommerce-checkout .page-title {
  display: none;
}

.post-edit-link,
.entry-footer .edit-link {
  display: none !important;
}

/* 4. Ширина контейнера + Manrope на все блоки */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-cart .wp-block-post-content,
.woocommerce-checkout .wp-block-post-content,
.woocommerce-cart article,
.woocommerce-checkout article {
  max-width: none !important;
  width: 100% !important;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 1140px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: clamp(40px, 6vw, 80px) var(--pad);
  color: #1d1d1a;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-cart *,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-checkout * {
  font-family: 'Manrope', sans-serif !important;
}

/* 5. ДВЕ КОЛОНКИ */
.wc-block-components-sidebar-layout {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 56px);
}

.wc-block-components-main {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  padding-right: 0 !important;
}

.wc-block-components-sidebar {
  flex: 0 0 360px !important;
  width: 360px !important;
  max-width: 360px !important;
  padding-left: 0 !important;
  align-self: flex-start;
}

/* 6. CART — таблица позиций */
.wc-block-cart-items {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.wc-block-cart-items__header,
.wc-block-cart-items__header th,
.wc-block-cart-items__header td {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,.12);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: #6f6f6a;
}

.wc-block-cart-items__row,
.wc-block-cart-item__row,
.wc-block-cart-items td {
  border-color: rgba(0,0,0,.08);
}

.wc-block-cart-item__image img {
  border-radius: 10px;
}

.wc-block-components-product-name {
  font-weight: 700;
  color: #1d1d1a !important;
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.wc-block-components-product-name:hover {
  color: #4f5d34 !important;
}

.wc-block-cart-item__product-metadata,
.wc-block-components-product-metadata {
  color: #4a4a45;
  font-size: 14px;
}

.wc-block-components-product-price,
.wc-block-formatted-money-amount {
  color: #1d1d1a;
  font-weight: 600;
}

.wc-block-components-product-price del {
  opacity: .55;
  font-weight: 500;
}

.wc-block-components-quantity-selector {
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 8px;
  background: #fff;
}

.wc-block-components-quantity-selector__input {
  color: #1d1d1a;
  font-weight: 600;
}

.wc-block-components-quantity-selector__button {
  color: #4f5d34;
  transition: color 200ms var(--ease);
}

.wc-block-components-quantity-selector__button:hover {
  color: #2e2b19;
}

.wc-block-cart-item__remove-link {
  color: #9a9a92;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms var(--ease);
}

.wc-block-cart-item__remove-link:hover {
  color: #b23b3b;
}

/* 7. УБИРАЕМ КУПОНЫ */
.wc-block-components-totals-coupon,
.wc-block-components-totals-coupon__form,
.wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  display: none !important;
}

/* 8. Сайдбар корзины — карточка */
.wc-block-cart__sidebar {
  background: #f6f6f3 !important;
  border-radius: 14px;
  padding: clamp(24px, 2.5vw, 32px) !important;
}

.wc-block-cart__sidebar .wc-block-components-totals-wrapper,
.wc-block-cart__sidebar .wc-block-components-panel {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.wc-block-cart__totals-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: #6f6f6a;
  margin-bottom: 16px;
}

/* 9. Итоги */
.wc-block-components-totals-item__label {
  color: #4a4a45;
}

.wc-block-components-totals-item__value {
  color: #1d1d1a;
  font-weight: 600;
}

.wc-block-components-totals-footer-item {
  font-size: 18px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  color: #1d1d1a;
  font-weight: 800;
}

/* 10. КНОПКИ блоков */
.wc-block-cart__submit-button,
.wc-block-components-button.contained,
.wc-block-components-checkout-place-order-button {
  background: #4f5d34 !important;
  color: #FFF0AF !important;
  border: 1.5px solid #4f5d34 !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
  min-height: 52px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.wc-block-cart__submit-button {
  margin-top: 18px;
  width: 100%;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-button.contained:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: #5c6c3d !important;
  color: #fff !important;
}

.wc-block-components-button.outlined {
  background: transparent !important;
  color: #4f5d34 !important;
  border: 1.5px solid rgba(79,93,52,.5) !important;
  border-radius: 10px !important;
}

.wc-block-components-button.outlined:hover {
  background: rgba(79,93,52,.08) !important;
  color: #3a4527 !important;
}

.wc-block-components-button.text {
  background: transparent !important;
  color: #4f5d34 !important;
  border: none !important;
}

/* 11. CHECKOUT */
.wc-block-components-checkout-step__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d1d1a;
}

.wc-block-components-checkout-step__description {
  color: #4a4a45;
}

.wc-block-components-checkout-step__heading-content {
  color: #4f5d34;
}

.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-select__select {
  background: #f3f3f1 !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  color: #2a2a26 !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-components-select__select:focus {
  border-color: #4f5d34 !important;
  box-shadow: 0 0 0 2px rgba(79,93,52,.2) !important;
  outline: none !important;
}

.wc-block-components-text-input label,
.wc-block-components-checkout-step label {
  color: #9a9a92;
}

.wc-block-components-radio-control__option,
.wc-block-components-radio-control {
  color: #1d1d1a;
}

.wc-block-components-radio-control__input:checked {
  accent-color: #4f5d34;
}

.wp-block-woocommerce-checkout-order-summary-block {
  background: #f6f6f3;
  border: none !important;
  border-radius: 14px;
  padding: clamp(24px, 2.5vw, 32px);
}

.wc-block-checkout__sidebar .wc-block-components-totals-wrapper,
.wc-block-checkout__sidebar .wc-block-components-panel {
  background: transparent !important;
  border: none !important;
}

.wc-block-components-notice-banner.is-info {
  border-left-color: #4f5d34 !important;
  border-radius: 8px;
}

/* 12. МОБИЛЬНЫЕ — одна колонка */
@media (max-width: 900px) {
  .wc-block-components-sidebar-layout {
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  .wc-block-components-main,
  .wc-block-components-sidebar {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: none !important;
  }
}

/* 13. FALLBACK — классическая вёрстка */
.woocommerce .coupon { display: none !important; }

/* =====================================================================
   COSMOS — SINGLE PRODUCT (только товар + описание, одна картинка)
===================================================================== */

/* Прячем лишнее: крошки, табы, похожие, апселлы, мета (категория) */
.single-product .woocommerce-breadcrumb,
.single-product .woocommerce-tabs,
.single-product .related,
.single-product .up-sells,
.single-product .product_meta {
  display: none !important;
}

/* Контейнер — отступы только у .wrap внутри #main (не трогаем хедер/футер!) */
body.single-product #main > .wrap {
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(56px, 8vw, 110px);
}

/* Раскладка: картинка | инфо */
.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Картинка товара */
.single-product div.product .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  position: relative;
}

.single-product .woocommerce-product-gallery__image img {
  border-radius: 14px;
  width: 100%;
  height: auto;
}

.single-product .onsale {
  background: var(--gold);
  color: #2e2b19;
  border: none;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 6px 14px;
  min-width: 0;
  min-height: 0;
  line-height: 1;
  top: 16px;
  left: 16px;
}

/* Инфо (summary) */
.single-product .summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.single-product .product_title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: #1d1d1a;
  margin: 0 0 18px;
}

.single-product .product_title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 18px;
}

.single-product .summary .price,
.single-product .summary .price .woocommerce-Price-amount {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 30px);
  color: #4f5d34;
}

.single-product .summary .price {
  margin: 0 0 22px;
}

.single-product .summary .price del,
.single-product .summary .price del .woocommerce-Price-amount {
  color: #9a9a92;
  font-weight: 600;
  margin-right: 10px;
}

.single-product .summary .price ins {
  text-decoration: none;
}

.single-product .woocommerce-product-details__short-description {
  display: none;
}

.single-product .stock {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: #4f5d34;
}

.single-product .stock.out-of-stock {
  color: #b23b3b;
}

/* Картинка (кастомный шаблон) */
.single-product .cosmos-product-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Кнопки: Add to cart + View cart в ряд */
.single-product .cosmos-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
}

.single-product form.cart {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

/* поле количества убрано */
.single-product form.cart .quantity {
  display: none !important;
}

/* кнопка "View cart" рядом с "Add to cart" */
.single-product .product-viewcart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  background: transparent;
  color: #4f5d34;
  border: 1.5px solid rgba(79,93,52,.5);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}

.single-product .product-viewcart:hover {
  background: rgba(79,93,52,.08);
  border-color: #4f5d34;
  color: #3a4527;
}

.single-product .single_add_to_cart_button,
.single-product button.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin: 0 !important;
  padding: 0 36px;
  background: #4f5d34 !important;
  color: #FFF0AF !important;
  border: 1.5px solid #4f5d34 !important;
  border-radius: 10px !important;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: none;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.single-product .single_add_to_cart_button:hover {
  background: #5c6c3d !important;
  color: #fff !important;
}

/* Описание товара — под кнопками, в колонке инфо */
.single-product .summary .product-description-body {
  margin-top: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #3a3a35;
}

.single-product .product-description-body p { margin: 0 0 14px; }
.single-product .product-description-body ul { margin: 0 0 14px; padding-left: 20px; }
.single-product .product-description-body li { margin-bottom: 6px; }
.single-product .product-description-body strong { color: #1d1d1a; }
.single-product .product-description-body > *:last-child { margin-bottom: 0; }

/* Адаптив */
@media (max-width: 860px) {
  .single-product div.product {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =====================================================================
   COSMOS — 404
===================================================================== */
/* footer прижат к низу + без резерва скроллбара (тонкая полоска справа) */
html:has(body.error404) {
  scrollbar-gutter: auto;
}

body.error404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.error404 #page {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
}

body.error404 #content,
body.error404 #primary,
body.error404 #main {
  flex: 1 0 auto;
}

body.error404 #main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.error404 .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.error-404 {
  padding: clamp(56px, 9vw, 110px) 0;
}

.error-404-inner {
  max-width: 560px;
}

.error-404-code {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.error-404-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.01em;
  color: #1d1d1a;
  margin: 18px 0 14px;
}

.error-404-text {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a45;
  margin-bottom: 32px;
}

.error-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  background: #4f5d34;
  color: #FFF0AF;
  border: 1.5px solid #4f5d34;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.error-404-btn:hover {
  background: #5c6c3d;
  color: #fff;
  transform: translateY(-2px);
}

/* =====================================================================
   COSMOS — ORDER RECEIVED (страница "спасибо за заказ")
===================================================================== */

/* убрать "Payment method" из верхней сводки */
.woocommerce-order-overview__payment-method {
  display: none !important;
}

/* убрать "Order number" из верхней сводки */
.woocommerce-order-overview__order {
  display: none !important;
}

/* строку "Payment method:" в таблице убирает фильтр в functions.php */

/* убрать блок Billing address полностью */
.woocommerce-customer-details {
  display: none !important;
}

/* сообщение "Thank you. Your order has been received." */
.woocommerce-thankyou-order-received {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d1d1a;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

/* верхняя сводка заказа — светлая карточка */
ul.woocommerce-order-overview {
  list-style: none !important;
  margin: 0 0 clamp(40px, 5vw, 64px) !important;
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 36px) !important;
  background: #f6f6f3;
  border: none !important;
  border-radius: 14px;
  display: flex !important;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px) !important;
}

/* clearfix-псевдоэлементы WooCommerce становятся флекс-элементами и дают
   лишний отступ слева/справа — отключаем их */
ul.woocommerce-order-overview::before,
ul.woocommerce-order-overview::after {
  content: none !important;
  display: none !important;
}

ul.woocommerce-order-overview li {
  font-family: 'Manrope', sans-serif;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
  color: #6f6f6a;
  font-weight: 700;
}

ul.woocommerce-order-overview li strong {
  display: block;
  margin-top: 6px;
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
  color: #1d1d1a;
  font-weight: 800;
}

/* заголовки разделов */
.woocommerce-order-details__title,
.woocommerce-column__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d1d1a;
  margin-bottom: clamp(18px, 2vw, 26px);
}

/* таблица деталей заказа */
.woocommerce-table--order-details {
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  font-family: 'Manrope', sans-serif;
  color: #1d1d1a;
}

.woocommerce-table--order-details tfoot th {
  font-weight: 700;
}

.woocommerce-table--order-details .woocommerce-Price-amount {
  font-weight: 700;
  color: #1d1d1a;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cart-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: 'Arimo', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color 200ms var(--ease);
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #fff;
}

.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  transition: color 200ms var(--ease);
  position: relative;
}

.nav-cart:hover {
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #2e2b19;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  border-radius: 999px;
}

.cart-count.is-empty {
  display: none;
}

/* ─── BURGER ─── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 200;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 250ms var(--ease), opacity 250ms var(--ease);
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  height: 800px;
  display: flex;
  flex-direction: column;
  background-color: #2e2b19;
  background-image:
    radial-gradient(125% 100% at 50% 30%, transparent 50%, rgba(0,0,0,.5) 100%),
    radial-gradient(58% 66% at 70% 46%, rgba(168,165,120,.13) 0%, transparent 60%),
    linear-gradient(to bottom, #2e2b19 0%, #2e2b19 12%, #5e583a 100%);
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 3%;
  bottom: 0;
  width: 48%;
  height: 64px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55) 0%, rgba(0,0,0,.26) 40%, transparent 72%);
  filter: blur(13px);
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  height: 88%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.22));
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 52px;
}

.hero-content {
  width: min(680px, 92%);
}

.hero h1 {
  margin: 0 0 16px;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  color: #FFF0AF;
  text-transform: uppercase;
}

.hero p {
  margin: 0 0 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: transparent;
  color: #FFF0AF;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  border: 1.5px solid rgba(255,240,175,.5);
  border-radius: 10px;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}

.hero-btn:hover {
  background: rgba(255,240,175,.1);
  border-color: #FFF0AF;
  color: #fff;
}

/* ─── BOTTOM BAR ─── */
.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-bottom-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-bottom-text {
  font-family: 'Arimo', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-bottom-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.hero-bottom-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════
   ABOUT / PERSPECTIVE
════════════════════════════════ */
.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em;
  color: #6f6f6a;
}

.about {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
}

.about-box {
  margin-top: 28px;
  background: #8a8456;
  border-radius: 14px;
  padding: clamp(48px, 6vw, 76px) clamp(24px, 5vw, 64px);
}

.about-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-inner::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.about-inner p {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #22221a;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.about-inner p + p {
  margin-top: 26px;
}

.about-inner .hl {
  color: #FFF0AF;
}

.perspective {
  padding: clamp(40px, 6vw, 64px) 0 clamp(72px, 10vw, 120px);
}

.perspective-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.perspective-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.perspective-text::before {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 30px;
}

.perspective-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #2c2c26;
  max-width: 480px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(34,34,26,.12);
}

.perspective-text p:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.perspective-link {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 30px;
  background: #515034;
  color: #FFF0AF;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1.5px solid #515034;
  border-radius: 10px;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.perspective-link::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform 200ms var(--ease);
}

.perspective-link:hover {
  background: #3f3e28;
  border-color: #3f3e28;
  color: #fff;
  transform: translateY(-2px);
}

.perspective-link:hover::after {
  transform: translateX(4px);
}

.perspective-media {
  border-radius: 14px;
  overflow: hidden;
  min-height: clamp(420px, 42vw, 560px);
}

.perspective-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════
   APPROACH
════════════════════════════════ */
.approach {
  padding: clamp(8px, 2vw, 24px) 0 clamp(72px, 10vw, 120px);
}

.approach .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.approach-card {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: clamp(600px, 60vw, 850px);
  background-color: #8a8456;
  background-image: var(--approach-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 64px);
}

.approach-list {
  width: min(54%, 560px);
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 3.2vw, 46px);
  background: rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: clamp(36px, 3.5vw, 52px) clamp(30px, 3vw, 44px);
}

.approach-item-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  color: #FFF0AF;
  margin-bottom: 12px;
}

.approach-item-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 380px;
}

/* ════════════════════════════════
   WHAT WE DO
════════════════════════════════ */
.wwd {
  padding: clamp(8px, 2vw, 24px) 0 clamp(72px, 10vw, 120px);
}

.wwd .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.wwd-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 32px);
  align-items: stretch;
}

.wwd-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: clamp(360px, 40vw, 560px);
}

.wwd-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwd-list {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
}

.wwd-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #4f5d34;
  border-radius: 12px;
  padding: clamp(26px, 2.6vw, 38px) clamp(26px, 2.8vw, 40px);
}

.wwd-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.4vw, 21px);
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}

.wwd-card-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}

/* ════════════════════════════════
   SOLUTIONS
════════════════════════════════ */
.solutions {
  padding: clamp(8px, 2vw, 24px) 0 clamp(72px, 10vw, 120px);
}

.solutions .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.solutions-grid {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.sol-item {
  border-left: 1px solid rgba(0,0,0,.16);
  padding-left: clamp(20px, 2vw, 28px);
}

.sol-item-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.4vw, 21px);
  letter-spacing: -0.01em;
  color: #1d1d1a;
  margin-bottom: 14px;
}

.sol-item-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.6;
  color: #4a4a45;
  max-width: 300px;
}

/* ════════════════════════════════
   COOPERATION (Contact Form 7)
════════════════════════════════ */
.cooperation {
  padding: clamp(40px, 6vw, 90px) 0 clamp(56px, 8vw, 110px);
}

.cooperation .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.cooperation-inner {
  max-width: none;
}

.cooperation-lead {
  margin-top: 22px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
  color: #3a3a35;
  max-width: 380px;
}

.cooperation .wpcf7 {
  margin-top: clamp(28px, 3.5vw, 48px);
}

.cooperation .wpcf7-form p {
  margin: 0;
}

.cooperation .coop-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cooperation .wpcf7-form-control-wrap {
  display: block;
}

.cooperation input.wpcf7-text,
.cooperation textarea.wpcf7-textarea {
  width: 100%;
  background: #f3f3f1;
  border: none;
  border-radius: 8px;
  padding: 18px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #2a2a26;
  transition: background 200ms var(--ease), box-shadow 200ms var(--ease);
}

.cooperation textarea.wpcf7-textarea {
  min-height: 130px;
  resize: vertical;
  display: block;
}

.cooperation input.wpcf7-text:focus,
.cooperation textarea.wpcf7-textarea:focus {
  outline: none;
  background: #ececec;
  box-shadow: 0 0 0 2px rgba(79,93,52,.25);
}

.cooperation ::placeholder {
  color: #9a9a92;
}

.cooperation .coop-consent {
  margin-top: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #9a9a92;
  max-width: 480px;
}

.cooperation .coop-consent a {
  color: #9a9a92;
  text-decoration: underline;
}

.cooperation input.wpcf7-submit {
  margin-top: clamp(24px, 3vw, 40px);
  height: 52px;
  padding: 0 36px;
  background: #515034;
  color: #FFF0AF;
  border: 1.5px solid #515034;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.cooperation input.wpcf7-submit:hover {
  background: #3f3e28;
  border-color: #3f3e28;
  color: #fff;
  transform: translateY(-2px);
}

.cooperation .wpcf7-spinner {
  margin: 16px 0 0;
}

.cooperation .wpcf7-response-output {
  margin: 18px 0 0 !important;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: #4e5b34;
  padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 3vw, 40px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: fit-content;
}

.footer-logo-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col a {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  width: fit-content;
  transition: color 200ms var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(40px, 6vw, 72px);
}

.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.25);
}

.footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════
   PRODUCTS (WooCommerce slider)
════════════════════════════════ */
.products {
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
}

.products .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 20px;
}

.product-readmore {
  display: none;
  align-self: flex-start;
  margin-top: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #FFF0AF;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.products-slider {
  position: relative;
  margin-top: 28px;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.products-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
}

.products-track {
  display: flex;
  transition: transform 450ms var(--ease);
}

.product-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 42% 58%;
  background: #4e5b34;
}

.product-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-info {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 48px);
  color: rgba(255,255,255,.82);
}

.product-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  color: #FFF0AF;
  margin-bottom: 16px;
}

.product-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.product-desc p { margin: 0 0 14px; }
.product-desc strong { color: #fff; }
.product-desc ul { margin: 0 0 14px; padding-left: 18px; }
.product-desc li { margin-bottom: 6px; }
.product-desc > *:last-child { margin-bottom: 0; }

.product-foot {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.product-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.5vw, 22px);
  color: #FFF0AF;
}

.product-price del {
  margin-right: 8px;
  font-weight: 600;
  opacity: .6;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border: 1.5px solid rgba(255,240,175,.6);
  border-radius: 10px;
  color: #FFF0AF;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}

.product-btn:hover {
  background: rgba(255,240,175,.12);
  border-color: #FFF0AF;
  color: #fff;
}

.product-foot .product-viewcart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  background: rgba(255,240,175,.14);
  border: 1.5px solid rgba(255,240,175,.55);
  color: #FFF0AF;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.product-foot .product-viewcart:hover {
  background: rgba(255,240,175,.24);
  color: #fff;
}

/* прячем дублирующую ссылку, которую WooCommerce добавляет после "Buy now" */
.product-foot a.added_to_cart {
  display: none;
}

.products-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  color: #9a9a92;
  transition: color 200ms var(--ease);
}

.products-arrow:hover {
  color: #3a3a35;
}

.products-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.products-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  cursor: pointer;
  transition: background 200ms var(--ease);
}

.products-dot.is-active {
  background: var(--gold);
}

/* ════════════════════════════════
   CART POPUP (drawer)
════════════════════════════════ */
.cart-popup[hidden] {
  display: none;
}

.cart-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.cart-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,19,10,.55);
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

.cart-popup.is-open .cart-popup-overlay {
  opacity: 1;
}

.cart-popup-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  background: #2e2b19;
  box-shadow: -20px 0 60px rgba(0,0,0,.45);
  transform: translateX(100%);
  transition: transform 350ms var(--ease);
}

.cart-popup.is-open .cart-popup-panel {
  transform: translateX(0);
}

.cart-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.cart-popup-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #FFF0AF;
}

.cart-popup-x {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: rgba(255,255,255,.7);
  transition: color 200ms var(--ease);
}

.cart-popup-x:hover {
  color: #fff;
}

.cart-popup-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px 16px;
  font-family: 'Manrope', sans-serif;
  color: rgba(255,255,255,.85);
}

.cart-popup-body .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-popup-body .woocommerce-mini-cart-item {
  position: relative;
  padding: 16px 30px 16px 72px;
  min-height: 72px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.cart-popup-body .woocommerce-mini-cart-item img {
  position: absolute;
  left: 0;
  top: 16px;
  width: 56px !important;
  height: 56px !important;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 !important;
  float: none !important;
}

.cart-popup-body .woocommerce-mini-cart-item a:not(.remove) {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.cart-popup-body .quantity {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.cart-popup-body .woocommerce-Price-amount {
  color: #FFF0AF;
}

.cart-popup-body a.remove {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: rgba(255,255,255,.6) !important;
  font-size: 16px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.cart-popup-body a.remove:hover {
  background: rgba(255,255,255,.12);
  color: #fff !important;
}

.cart-popup-body .woocommerce-mini-cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 18px 0 0;
  padding-top: 18px;
  font-size: 16px;
  color: #fff;
}

.cart-popup-body .woocommerce-mini-cart__total strong {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.cart-popup-body .woocommerce-mini-cart__total .woocommerce-Price-amount {
  font-weight: 800;
  font-size: 20px;
  color: #FFF0AF;
}

/* прячем стандартные кнопки мини-корзины — свои в футере поп-апа */
.cart-popup-body .woocommerce-mini-cart__buttons {
  display: none;
}

.cart-popup-body .woocommerce-mini-cart__empty-message {
  padding: 40px 0;
  text-align: center;
  color: rgba(255,255,255,.6);
}

.cart-popup-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.cart-popup-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: #4f5d34;
  color: #FFF0AF;
  border: 1.5px solid #4f5d34;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.cart-popup-checkout:hover {
  background: #5c6c3d;
  color: #fff;
}

.cart-popup-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}

.cart-popup-continue:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

body.cart-open {
  overflow: hidden;
}

/* ════════════════════════════════
   CONTACTS PAGE
════════════════════════════════ */
.contacts-info {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
}

.contacts-list {
  margin: 0;
}

.contacts-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.contacts-row:last-child {
  border-bottom: none;
}

.contacts-row dt {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 1.2vw, 17px);
  color: #1d1d1a;
}

.contacts-row dd {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  color: #4a4a45;
}

.contacts-row dd a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.contacts-row dd a:hover {
  color: #1d1d1a;
}

/* ════════════════════════════════
   WOOCOMMERCE — CART & CHECKOUT (база)
════════════════════════════════ */
body.woocommerce-cart,
body.woocommerce-checkout {
  background: #fff;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad);
  font-family: 'Manrope', sans-serif;
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.wc-block-components-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d1d1a;
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce table.shop_table th {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #1d1d1a;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table tr {
  border-color: rgba(0,0,0,.08);
}

.woocommerce .cart_item .product-name a {
  color: #1d1d1a;
  text-decoration: none;
  font-weight: 600;
}

.woocommerce .woocommerce-Price-amount {
  color: #1d1d1a;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce #order_comments,
.select2-container--default .select2-selection--single,
.wc-block-components-text-input input,
.wc-block-components-select .wc-block-components-select__select {
  background: #f3f3f1;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #2a2a26;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.wc-block-components-text-input input:focus {
  outline: none;
  border-color: #4f5d34;
  box-shadow: 0 0 0 2px rgba(79,93,52,.2);
}

.woocommerce form .form-row label,
.wc-block-components-text-input label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #4a4a45;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order,
.woocommerce .button.alt,
.wc-block-components-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4f5d34;
  color: #FFF0AF;
  border: 1.5px solid #4f5d34;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: none;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #place_order:hover,
.woocommerce .button.alt:hover,
.wc-block-components-button:hover {
  background: #5c6c3d;
  color: #fff;
}

.woocommerce button[name="update_cart"],
.woocommerce .coupon button {
  background: transparent;
  color: #4f5d34;
  border-color: rgba(79,93,52,.5);
}

.woocommerce button[name="update_cart"]:hover,
.woocommerce .coupon button:hover {
  background: rgba(79,93,52,.08);
  color: #3a4527;
}

.woocommerce .cart_totals,
.woocommerce .woocommerce-checkout-review-order,
.wc-block-components-totals-wrapper,
.wp-block-woocommerce-checkout-order-summary-block {
  background: #f6f6f3;
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
}

.woocommerce .cart_totals h2,
.woocommerce #order_review_heading {
  margin-bottom: 14px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: #4f5d34;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #4f5d34;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* планшет — бургер с 1024px */
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    background: rgba(81,80,52,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 80px 32px 40px;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 350ms var(--ease), visibility 0s linear 350ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 350ms var(--ease), visibility 0s;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 22px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .site-nav .nav-cart {
    padding: 16px 0;
  }

  .nav-menu a,
  .site-nav .nav-cart {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 400ms var(--ease), transform 400ms var(--ease);
  }

  .site-nav.is-open .nav-menu a,
  .site-nav.is-open .nav-cart {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open .nav-menu li:nth-child(1) a { transition-delay: 90ms; }
  .site-nav.is-open .nav-menu li:nth-child(2) a { transition-delay: 140ms; }
  .site-nav.is-open .nav-menu li:nth-child(3) a { transition-delay: 190ms; }
  .site-nav.is-open .nav-menu li:nth-child(4) a { transition-delay: 240ms; }
  .site-nav.is-open .nav-menu li:nth-child(5) a { transition-delay: 290ms; }
  .site-nav.is-open .nav-menu li:nth-child(6) a { transition-delay: 340ms; }
  .site-nav.is-open .nav-menu li:nth-child(7) a { transition-delay: 390ms; }
  .site-nav.is-open .nav-cart { transition-delay: 430ms; }
}

/* мобильный */
/* hero в стопку — планшеты и телефоны */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-inner {
    display: block;
    overflow: visible;
  }

  .hero-bg-img {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 96px auto 0;
    opacity: 1;
    z-index: 1;
    filter: drop-shadow(0 8px 10px rgba(0,0,0,.3));
  }

  .hero-inner::before {
    display: none;
  }

  .hero-body {
    position: relative;
    z-index: 2;
    display: block;
    flex: none;
    margin-top: 16px;
    padding: 0 0 30px;
  }

  .hero-content {
    width: 100%;
    background: rgba(30,28,16,.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 28px 24px;
  }

  .approach-card {
    justify-content: flex-end;
    align-items: center;
    min-height: clamp(520px, 72vw, 720px);
  }

  .approach-list {
    width: min(64%, 440px);
    background: rgba(255,255,255,.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 30px 26px;
    gap: 26px;
  }
}

@media (max-width: 768px) {
  .perspective-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .perspective-text {
    justify-content: flex-start;
  }

  .perspective-text p {
    max-width: none;
  }

  .perspective-link {
    margin-top: 32px;
  }

  .perspective-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .approach-card {
    min-height: 0;
    align-items: stretch;
    background-position: 30% center;
    padding: clamp(18px, 5vw, 28px);
  }

  .approach-list {
    width: 100%;
    padding: 26px 22px;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .wwd-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .wwd-card {
    flex: none;
  }

  .sol-item-text {
    max-width: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

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

  .product-media {
    min-height: 0;
    height: clamp(375px, 52vw, 480px);
  }

  .product-media img {
    object-position: center 72%;
  }

  /* ── кнопки слайдера в одну строку ── */
  .product-foot {
    gap: 14px;
  }

  /* цена занимает свою строку */
  .product-foot .product-price {
    flex: 1 0 100%;
  }

  /* обе кнопки делят одну строку поровну */
  .product-foot .product-btn,
  .product-foot .product-viewcart {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 16px;
    white-space: nowrap;
  }

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

  .products-arrow {
    display: none;
  }

  .product-desc {
    position: relative;
    max-height: 240px;
    overflow: hidden;
  }

  .product-desc::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(to top, #4e5b34 18%, rgba(78,91,52,0));
    pointer-events: none;
  }

  .product-info.is-expanded .product-desc {
    max-height: none;
  }

  .product-info.is-expanded .product-desc::after {
    display: none;
  }

  .product-readmore {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .hero-bottom-text { font-size: 11px; white-space: normal; }
  .logo-text { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .nav-menu a,
  .site-nav .nav-cart,
  .burger span {
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
  .nav-menu a,
  .site-nav .nav-cart {
    transform: none !important;
  }
}

/* =====================================================================
   COSMOS — CART & CHECKOUT (блоки WooCommerce)
===================================================================== */

/* 1. STICKY-ФУТЕР */
body.woocommerce-page,
body.woocommerce-cart,
body.woocommerce-checkout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.woocommerce-page #page,
body.woocommerce-cart #page,
body.woocommerce-checkout #page {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
}

body.woocommerce-page #content,
body.woocommerce-cart #content,
body.woocommerce-checkout #content,
body.woocommerce-page #primary,
body.woocommerce-cart #primary,
body.woocommerce-checkout #primary,
body.woocommerce-page #main,
body.woocommerce-cart #main,
body.woocommerce-checkout #main {
  flex: 1 0 auto;
}

body.woocommerce-page .site-footer,
body.woocommerce-cart .site-footer,
body.woocommerce-checkout .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* 2. ХЕДЕР на внутренних страницах */
body:not(.home) .site-header {
  position: relative;
  background: #2e2b19;
}

body:not(.home).admin-bar .site-header {
  top: 0;
}

/* 3. Прячем служебные заголовки и Edit */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-cart .page-title,
.woocommerce-checkout .page-title {
  display: none;
}

.post-edit-link,
.entry-footer .edit-link {
  display: none !important;
}

/* 4. Ширина контейнера + Manrope на все блоки */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-cart .wp-block-post-content,
.woocommerce-checkout .wp-block-post-content,
.woocommerce-cart article,
.woocommerce-checkout article {
  max-width: none !important;
  width: 100% !important;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 1140px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: clamp(40px, 6vw, 80px) var(--pad);
  color: #1d1d1a;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-cart *,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-checkout * {
  font-family: 'Manrope', sans-serif !important;
}

/* 5. ДВЕ КОЛОНКИ */
.wc-block-components-sidebar-layout {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 56px);
}

.wc-block-components-main {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  padding-right: 0 !important;
}

.wc-block-components-sidebar {
  flex: 0 0 360px !important;
  width: 360px !important;
  max-width: 360px !important;
  padding-left: 0 !important;
  align-self: flex-start;
}

/* 6. CART — таблица позиций */
.wc-block-cart-items {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.wc-block-cart-items__header,
.wc-block-cart-items__header th,
.wc-block-cart-items__header td {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,.12);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: #6f6f6a;
}

.wc-block-cart-items__row,
.wc-block-cart-item__row,
.wc-block-cart-items td {
  border-color: rgba(0,0,0,.08);
}

.wc-block-cart-item__image img {
  border-radius: 10px;
}

.wc-block-components-product-name {
  font-weight: 700;
  color: #1d1d1a !important;
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.wc-block-components-product-name:hover {
  color: #4f5d34 !important;
}

.wc-block-cart-item__product-metadata,
.wc-block-components-product-metadata {
  color: #4a4a45;
  font-size: 14px;
}

.wc-block-components-product-price,
.wc-block-formatted-money-amount {
  color: #1d1d1a;
  font-weight: 600;
}

.wc-block-components-product-price del {
  opacity: .55;
  font-weight: 500;
}

.wc-block-components-quantity-selector {
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 8px;
  background: #fff;
}

.wc-block-components-quantity-selector__input {
  color: #1d1d1a;
  font-weight: 600;
}

.wc-block-components-quantity-selector__button {
  color: #4f5d34;
  transition: color 200ms var(--ease);
}

.wc-block-components-quantity-selector__button:hover {
  color: #2e2b19;
}

.wc-block-cart-item__remove-link {
  color: #9a9a92;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms var(--ease);
}

.wc-block-cart-item__remove-link:hover {
  color: #b23b3b;
}

/* 7. УБИРАЕМ КУПОНЫ */
.wc-block-components-totals-coupon,
.wc-block-components-totals-coupon__form,
.wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  display: none !important;
}

/* 8. Сайдбар корзины — карточка */
.wc-block-cart__sidebar {
  background: #f6f6f3 !important;
  border-radius: 14px;
  padding: clamp(24px, 2.5vw, 32px) !important;
}

.wc-block-cart__sidebar .wc-block-components-totals-wrapper,
.wc-block-cart__sidebar .wc-block-components-panel {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.wc-block-cart__totals-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: #6f6f6a;
  margin-bottom: 16px;
}

/* 9. Итоги */
.wc-block-components-totals-item__label {
  color: #4a4a45;
}

.wc-block-components-totals-item__value {
  color: #1d1d1a;
  font-weight: 600;
}

.wc-block-components-totals-footer-item {
  font-size: 18px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  color: #1d1d1a;
  font-weight: 800;
}

/* 10. КНОПКИ блоков */
.wc-block-cart__submit-button,
.wc-block-components-button.contained,
.wc-block-components-checkout-place-order-button {
  background: #4f5d34 !important;
  color: #FFF0AF !important;
  border: 1.5px solid #4f5d34 !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
  min-height: 52px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.wc-block-cart__submit-button {
  margin-top: 18px;
  width: 100%;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-button.contained:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: #5c6c3d !important;
  color: #fff !important;
}

.wc-block-components-button.outlined {
  background: transparent !important;
  color: #4f5d34 !important;
  border: 1.5px solid rgba(79,93,52,.5) !important;
  border-radius: 10px !important;
}

.wc-block-components-button.outlined:hover {
  background: rgba(79,93,52,.08) !important;
  color: #3a4527 !important;
}

.wc-block-components-button.text {
  background: transparent !important;
  color: #4f5d34 !important;
  border: none !important;
}

/* 11. CHECKOUT */
.wc-block-components-checkout-step__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d1d1a;
}

.wc-block-components-checkout-step__description {
  color: #4a4a45;
}

.wc-block-components-checkout-step__heading-content {
  color: #4f5d34;
}

.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-select__select {
  background: #f3f3f1 !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  color: #2a2a26 !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-components-select__select:focus {
  border-color: #4f5d34 !important;
  box-shadow: 0 0 0 2px rgba(79,93,52,.2) !important;
  outline: none !important;
}

.wc-block-components-text-input label,
.wc-block-components-checkout-step label {
  color: #9a9a92;
}

.wc-block-components-radio-control__option,
.wc-block-components-radio-control {
  color: #1d1d1a;
}

.wc-block-components-radio-control__input:checked {
  accent-color: #4f5d34;
}

.wp-block-woocommerce-checkout-order-summary-block {
  background: #f6f6f3;
  border: none !important;
  border-radius: 14px;
  padding: clamp(24px, 2.5vw, 32px);
}

.wc-block-checkout__sidebar .wc-block-components-totals-wrapper,
.wc-block-checkout__sidebar .wc-block-components-panel {
  background: transparent !important;
  border: none !important;
}

.wc-block-components-notice-banner.is-info {
  border-left-color: #4f5d34 !important;
  border-radius: 8px;
}

/* 12. МОБИЛЬНЫЕ — одна колонка */
@media (max-width: 900px) {
  .wc-block-components-sidebar-layout {
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  .wc-block-components-main,
  .wc-block-components-sidebar {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: none !important;
  }
}

/* 13. FALLBACK — классическая вёрстка */
.woocommerce .coupon { display: none !important; }

/* =====================================================================
   COSMOS — SINGLE PRODUCT (только товар + описание, одна картинка)
===================================================================== */

/* Прячем лишнее: крошки, табы, похожие, апселлы, мета (категория) */
.single-product .woocommerce-breadcrumb,
.single-product .woocommerce-tabs,
.single-product .related,
.single-product .up-sells,
.single-product .product_meta {
  display: none !important;
}

/* Контейнер — отступы только у .wrap внутри #main (не трогаем хедер/футер!) */
body.single-product #main > .wrap {
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(56px, 8vw, 110px);
}

/* Раскладка: картинка | инфо */
.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Картинка товара */
.single-product div.product .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  position: relative;
}

.single-product .woocommerce-product-gallery__image img {
  border-radius: 14px;
  width: 100%;
  height: auto;
}

.single-product .onsale {
  background: var(--gold);
  color: #2e2b19;
  border: none;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 6px 14px;
  min-width: 0;
  min-height: 0;
  line-height: 1;
  top: 16px;
  left: 16px;
}

/* Инфо (summary) */
.single-product .summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.single-product .product_title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: #1d1d1a;
  margin: 0 0 18px;
}

.single-product .product_title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 18px;
}

.single-product .summary .price,
.single-product .summary .price .woocommerce-Price-amount {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 30px);
  color: #4f5d34;
}

.single-product .summary .price {
  margin: 0 0 22px;
}

.single-product .summary .price del,
.single-product .summary .price del .woocommerce-Price-amount {
  color: #9a9a92;
  font-weight: 600;
  margin-right: 10px;
}

.single-product .summary .price ins {
  text-decoration: none;
}

.single-product .woocommerce-product-details__short-description {
  display: none;
}

.single-product .stock {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: #4f5d34;
}

.single-product .stock.out-of-stock {
  color: #b23b3b;
}

/* Картинка (кастомный шаблон) */
.single-product .cosmos-product-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Кнопки: Add to cart + View cart в ряд */
.single-product .cosmos-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
}

.single-product form.cart {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

/* поле количества убрано */
.single-product form.cart .quantity {
  display: none !important;
}

/* кнопка "View cart" рядом с "Add to cart" */
.single-product .product-viewcart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  background: transparent;
  color: #4f5d34;
  border: 1.5px solid rgba(79,93,52,.5);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}

.single-product .product-viewcart:hover {
  background: rgba(79,93,52,.08);
  border-color: #4f5d34;
  color: #3a4527;
}

.single-product .single_add_to_cart_button,
.single-product button.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin: 0 !important;
  padding: 0 36px;
  background: #4f5d34 !important;
  color: #FFF0AF !important;
  border: 1.5px solid #4f5d34 !important;
  border-radius: 10px !important;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: none;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.single-product .single_add_to_cart_button:hover {
  background: #5c6c3d !important;
  color: #fff !important;
}

/* Описание товара — под кнопками, в колонке инфо */
.single-product .summary .product-description-body {
  margin-top: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #3a3a35;
}

.single-product .product-description-body p { margin: 0 0 14px; }
.single-product .product-description-body ul { margin: 0 0 14px; padding-left: 20px; }
.single-product .product-description-body li { margin-bottom: 6px; }
.single-product .product-description-body strong { color: #1d1d1a; }
.single-product .product-description-body > *:last-child { margin-bottom: 0; }

/* Адаптив */
@media (max-width: 860px) {
  .single-product div.product {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =====================================================================
   COSMOS — 404
===================================================================== */
/* footer прижат к низу + без резерва скроллбара (тонкая полоска справа) */
html:has(body.error404) {
  scrollbar-gutter: auto;
}

body.error404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.error404 #page {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
}

body.error404 #content,
body.error404 #primary,
body.error404 #main {
  flex: 1 0 auto;
}

body.error404 #main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.error404 .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.error-404 {
  padding: clamp(56px, 9vw, 110px) 0;
}

.error-404-inner {
  max-width: 560px;
}

.error-404-code {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.error-404-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.01em;
  color: #1d1d1a;
  margin: 18px 0 14px;
}

.error-404-text {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a45;
  margin-bottom: 32px;
}

.error-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  background: #4f5d34;
  color: #FFF0AF;
  border: 1.5px solid #4f5d34;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.error-404-btn:hover {
  background: #5c6c3d;
  color: #fff;
  transform: translateY(-2px);
}

/* =====================================================================
   COSMOS — ORDER RECEIVED (страница "спасибо за заказ")
===================================================================== */

/* убрать "Payment method" из верхней сводки */
.woocommerce-order-overview__payment-method {
  display: none !important;
}

/* убрать "Order number" из верхней сводки */
.woocommerce-order-overview__order {
  display: none !important;
}

/* строку "Payment method:" в таблице убирает фильтр в functions.php */

/* убрать блок Billing address полностью */
.woocommerce-customer-details {
  display: none !important;
}

/* сообщение "Thank you. Your order has been received." */
.woocommerce-thankyou-order-received {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d1d1a;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

/* верхняя сводка заказа — светлая карточка */
ul.woocommerce-order-overview {
  list-style: none !important;
  margin: 0 0 clamp(40px, 5vw, 64px) !important;
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 36px) !important;
  background: #f6f6f3;
  border: none !important;
  border-radius: 14px;
  display: flex !important;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px) !important;
}

/* clearfix-псевдоэлементы WooCommerce становятся флекс-элементами и дают
   лишний отступ слева/справа — отключаем их */
ul.woocommerce-order-overview::before,
ul.woocommerce-order-overview::after {
  content: none !important;
  display: none !important;
}

ul.woocommerce-order-overview li {
  font-family: 'Manrope', sans-serif;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
  color: #6f6f6a;
  font-weight: 700;
}

ul.woocommerce-order-overview li strong {
  display: block;
  margin-top: 6px;
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
  color: #1d1d1a;
  font-weight: 800;
}

/* заголовки разделов */
.woocommerce-order-details__title,
.woocommerce-column__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1d1d1a;
  margin-bottom: clamp(18px, 2vw, 26px);
}

/* таблица деталей заказа */
.woocommerce-table--order-details {
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  font-family: 'Manrope', sans-serif;
  color: #1d1d1a;
}

.woocommerce-table--order-details tfoot th {
  font-weight: 700;
}

.woocommerce-table--order-details .woocommerce-Price-amount {
  font-weight: 700;
  color: #1d1d1a;
}