@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Display";
  src: url("../fonts/FixelDisplay-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --color-yellow: #ffc400;
  --color-green: #245e31;
  --color-green-dark: #173f22;
  --color-text: #111;
  --color-muted: #6f6f6f;
  --color-surface: #f5f5f5;
  --color-line: #c7c7c7;
  --container: 1584px;
  --focus: #0b62d6;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--color-text);
  font-family: "Fixel Display", "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.home-page {
  background: var(--color-surface);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  left: 16px;
  top: 16px;
  padding: 12px 16px;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

.brand {
  color: var(--color-yellow);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.site-header {
  height: 120px;
  background: #fff;
  color: #111;
}

.site-header--overlay {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  background: transparent;
  color: #fff;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.main-nav {
  display: flex;
  gap: 64px;
  white-space: nowrap;
}

.mobile-menu__contacts {
  display: none;
}

.main-nav a,
.phone-link {
  font-size: 18px;
  transition: opacity 180ms ease;
}

.main-nav a:hover,
.phone-link:hover {
  opacity: 0.65;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  white-space: nowrap;
}

.phone-link {
  flex: 0 0 auto;
}

.social-link,
.footer-socials a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-link:hover,
.footer-socials a:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.social-link img,
.footer-socials img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-link {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.cart-icon {
  display: block;
  width: 34px;
  height: 30px;
  object-fit: contain;
}

.cart-count {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 20px;
  background: var(--color-yellow);
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px 10px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(14, 31, 12, 0.08), rgba(14, 31, 12, 0)),
    url("../images/hero-desktop.webp") center 58% / cover no-repeat;
}

.hero__content {
  display: flex;
  min-height: 760px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-top: 88px;
}

.hero h1 {
  max-width: 790px;
  margin: 0 0 36px;
  color: #fff;
  font-size: clamp(72px, 7.8vw, 150px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  padding: 10px 30px;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-weight: 600;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.button:active {
  box-shadow: none;
  transform: translateY(0) scale(0.98);
}

.button--primary {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
}

.button--primary:hover {
  border-color: #111;
}

.hero__button {
  min-width: 210px;
}

.section {
  padding: 88px 0;
}

.section h2 {
  margin: 0 0 60px;
  font-size: clamp(32px, 3vw, 55px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-align: center;
}

.section-heading {
  position: relative;
}

.slider-controls {
  position: absolute;
  right: 0;
  top: -4px;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid #aaa;
  background: #fff;
  cursor: pointer;
}

.slider-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

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

.product-card__image {
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  background: #f8f8f8;
}

.product-card {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.025);
}

.product-card h3 {
  margin: 22px 0 3px;
  font-size: 23px;
  font-weight: 600;
}

.product-card p {
  min-height: 42px;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.product-card__bottom strong {
  font-size: 31px;
  font-weight: 500;
}

.product-card__bottom small {
  font-size: 16px;
  font-weight: 400;
}

.button--outline {
  min-width: 150px;
}

.order-steps {
  background: #e7e7e7;
}

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

.steps-grid article {
  min-height: 210px;
  padding: 28px 32px;
  border: 1px solid #777;
  text-align: center;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.steps-grid article + article {
  border-left: 0;
}

.steps-grid span {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.steps-grid h3 {
  margin: 8px 0;
  font-size: 20px;
}

.steps-grid p {
  max-width: 330px;
  margin: 0 auto;
  font-size: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 84px;
}

.about-copy {
  max-width: 620px;
  justify-self: end;
}

.about-copy h2 {
  text-align: left;
}

.about-copy p {
  font-size: 20px;
}

.about-grid img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-section {
  padding-top: 30px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.reviews-track blockquote {
  min-height: 360px;
  margin: 0;
  padding: 36px;
  border-radius: 34px;
  background: #a9a9a9;
  color: #fff;
  transition:
    box-shadow 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-track p {
  margin: 76px 0 22px;
  font-size: 20px;
}

.reviews-track cite {
  font-style: normal;
  font-weight: 700;
}

.stars {
  color: var(--color-yellow);
  letter-spacing: 3px;
}

.site-footer {
  padding: 64px 0;
  background: var(--color-green);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  max-width: 1000px;
  gap: 80px;
}

.footer-brand {
  display: block;
  margin-bottom: 24px;
  font-size: 54px;
}

.footer-socials {
  display: flex;
  gap: 28px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
}

.site-footer .footer-brand {
  margin: 0 0 32px;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.site-footer .footer-socials a {
  width: 34px;
  height: 34px;
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 1500;
  right: 24px;
  bottom: 24px;
  padding: 14px 20px;
  background: #111;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.modal-open {
  overflow: hidden;
}

.cart-overlay {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.64);
  color: #111;
}

.cart-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  width: min(1160px, 100%);
  max-height: min(720px, calc(100dvh - 48px));
  overflow: auto;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 0;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 3px;
  background: currentColor;
  content: "";
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cart-modal__items {
  padding: 42px 48px;
}

.cart-modal__items h2 {
  margin: 0 0 28px;
  font-size: 30px;
  font-weight: 500;
}

.mini-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 15px 44px 15px 0;
  border-bottom: 1px solid #ddd;
}

.mini-cart-item img {
  width: 130px;
  height: 90px;
  object-fit: cover;
}

.mini-cart-item h3 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.mini-cart-item p {
  margin: 4px 0 18px;
  color: #858585;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}

.mini-cart-item strong {
  color: #111;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.mini-cart-remove {
  position: absolute;
  top: 14px;
  right: 0;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mini-cart-remove::before,
.mini-cart-remove::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.mini-cart-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mini-cart-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mini-cart-remove:hover {
  opacity: 0.6;
}

.mini-cart-quantity,
.checkout-item__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #bbb;
}

.mini-cart-quantity button,
.checkout-item__quantity button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mini-cart-quantity span,
.checkout-item__quantity span {
  min-width: 28px;
  text-align: center;
}

.cart-modal__summary {
  display: flex;
  flex-direction: column;
  padding: 68px 44px 44px;
  background: #f5f5f5;
}

.cart-modal__summary h3,
.checkout-summary h2 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
}

.cart-modal__summary dl,
.checkout-summary dl {
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px dashed #aaa;
}

.cart-modal__summary dl div,
.checkout-summary dl div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-modal__summary dd,
.checkout-summary dd {
  margin: 0;
}

.cart-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: auto 0 0;
  padding-top: 46px;
}

.cart-total strong {
  font-size: 22px;
  font-weight: 500;
}

.cart-total small {
  font-size: 12px;
}

.cart-total-note {
  margin: 2px 0 12px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.35;
}

.cart-empty-inline {
  margin: 24px 0;
  color: var(--color-muted);
}

.cart-modal__summary .button {
  width: 100%;
  margin-top: 10px;
  font-size: 13px;
}

.button.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.cart-empty {
  padding: 60px 0;
}

.checkout-shell {
  min-height: 100dvh;
  background: var(--color-green);
}

.checkout-header {
  display: grid;
  height: 140px;
  place-items: center;
}

.checkout-header .brand {
  font-size: 70px;
}

.checkout-card {
  width: min(calc(100% - 96px), 1740px);
  margin: 0 auto 90px;
  padding: 48px 56px 90px;
  border-radius: 10px;
  background: #f7f7f7;
}

.checkout-card > h1 {
  margin: 0 0 26px;
  font-size: 36px;
  font-weight: 400;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: 44px;
}

.checkout-main {
  display: grid;
  gap: 26px;
}

.checkout-section {
  margin: 0;
  padding: 38px 48px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.checkout-products {
  padding-block: 24px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}

.checkout-item + .checkout-item {
  border-top: 1px solid #ddd;
}

.checkout-item img {
  width: 160px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
}

.checkout-item h3 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.checkout-item p {
  margin: 4px 0 18px;
  color: #858585;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}

.checkout-item strong {
  color: #111;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.form-section legend {
  float: left;
  width: 100%;
  margin-bottom: 24px;
  font-size: 26px;
}

.form-section legend + * {
  clear: both;
}

.form-section > label,
.form-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: start;
  gap: 24px;
  margin: 16px 0;
}

.form-section label > span {
  padding-top: 13px;
}

.form-section label b {
  color: #b22020;
}

.form-section label small {
  display: block;
  color: var(--color-muted);
  font-size: 11px;
}

.form-section input:not([type="radio"]):not([type="checkbox"]),
.form-section select,
.form-section textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px 16px;
  background: #fff;
}

.form-section textarea {
  resize: vertical;
}

.radio-stack {
  display: grid;
  gap: 10px;
}

.radio-stack label,
.consents label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.radio-stack input,
.consents input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #222;
}

.consents {
  display: grid;
  gap: 10px;
  margin-left: 214px;
  padding-top: 10px;
  font-size: 13px;
}

.checkout-summary {
  position: sticky;
  top: 24px;
  padding: 38px 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.checkout-summary .cart-total {
  margin: 26px 0 0;
  padding-top: 24px;
}

.checkout-summary > .cart-total-note {
  margin: 4px 0 22px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.4;
}

.checkout-summary .button {
  width: 100%;
}

.checkout-empty {
  padding: 100px 24px 140px;
  text-align: center;
}

.checkout-success {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  align-content: center;
  gap: 64px;
  padding: 48px 24px;
  color: #fff;
  text-align: center;
}

.checkout-success > div {
  max-width: 620px;
  padding: 54px;
  border-radius: 8px;
  background: #fff;
  color: #111;
}

.success-mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-size: 38px;
}

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

.product-page {
  padding: 30px 0 0;
}

.back-link {
  display: inline-block;
  margin: 0 0 26px;
  font-size: 15px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  gap: 100px;
  align-items: start;
}

.product-gallery__main {
  position: relative;
  overflow: hidden;
  background: #f2eee8;
  aspect-ratio: 1.12;
}

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

.gallery-next {
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.product-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.product-gallery__thumbs button {
  width: 82px;
  height: 68px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: #eee;
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--color-yellow);
}

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

.product-info {
  padding-top: 4px;
}

.product-info h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}

.product-subtitle {
  margin: 2px 0 10px;
  color: var(--color-muted);
  font-size: 20px;
}

.product-price {
  margin: 0 0 70px;
  font-size: 50px;
  font-weight: 500;
}

.product-price small {
  font-size: 22px;
}

.color-fieldset {
  display: grid;
  grid-template-columns: 130px auto;
  align-items: center;
  margin: 0 0 48px;
  padding: 0;
  border: 0;
}

.color-fieldset legend {
  float: left;
  width: 130px;
  font-size: 20px;
  font-weight: 600;
}

.color-fieldset p {
  grid-column: 1;
  margin: 2px 0 0;
  color: var(--color-muted);
}

.color-fieldset > div {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 18px;
}

.color-fieldset label {
  position: relative;
  cursor: pointer;
}

.color-fieldset input {
  position: absolute;
  opacity: 0;
}

.color-swatch {
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid #bbb;
  box-shadow: inset 0 0 0 4px #fff;
}

.color-fieldset input:checked + .color-swatch {
  border: 2px solid #111;
}

.color-swatch--oak {
  background: #d6ac83;
}

.color-swatch--white {
  background: #fff;
}

.product-buy {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 38px;
  margin-bottom: 34px;
}

.product-buy > .button {
  width: 100%;
}

.quantity-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 56px;
  border: 1px solid #777;
}

.quantity-control button,
.quantity-control output {
  display: grid;
  min-width: 48px;
  place-items: center;
  border: 0;
  background: transparent;
  font-weight: 600;
}

.quantity-control button {
  cursor: pointer;
}

.detail-accordion {
  border-bottom: 1px solid #bbb;
}

.detail-accordion button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}

.detail-accordion p {
  max-width: 680px;
  margin: -4px 0 24px;
  color: var(--color-muted);
}

.product-reviews {
  max-width: 720px;
  padding: 70px 0 110px;
}

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

.product-reviews h2 {
  margin: 0;
  font-size: 25px;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding: 26px;
  background: #f2f2f2;
  font-size: 23px;
}

.review-row {
  padding: 38px 0;
  border-bottom: 1px solid #bbb;
}

.review-row .stars {
  font-size: 13px;
}

.review-row__meta {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.review-row__meta time {
  color: #aaa;
}

.review-row p {
  margin: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.pagination button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.pagination button[aria-current="page"] {
  border: 1px solid #111;
}

@media (max-width: 1280px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    column-gap: 32px;
  }

  .main-nav {
    justify-self: center;
    gap: 36px;
  }

  .header-actions {
    gap: 12px;
  }

  .phone-link {
    display: none;
  }
}

@media (max-width: 1100px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .main-nav {
    gap: 28px;
  }

  .social-link {
    display: none;
  }

  .product-card__image {
    min-height: 300px;
  }

  .product-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-track::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
    scroll-snap-align: start;
  }

  .about-grid {
    gap: 48px;
  }

  .reviews-track {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    scroll-snap-type: x mandatory;
  }

  .reviews-track blockquote {
    scroll-snap-align: start;
  }

  .product-detail {
    gap: 48px;
  }

  .product-buy {
    grid-template-columns: minmax(130px, 0.75fr) minmax(0, 1.25fr);
    gap: 12px;
  }

  .product-buy .quantity-control button,
  .product-buy .quantity-control output {
    min-width: 0;
  }

  .product-buy > .button {
    min-width: 0;
    padding-inline: 16px;
  }

  .checkout-card {
    width: min(calc(100% - 48px), 1740px);
    padding-inline: 32px;
  }

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

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 48px);
  }

  .site-header {
    height: 82px;
  }

  .site-header__inner {
    position: relative;
    grid-template-columns: 1fr auto;
  }

  .site-header--overlay .site-header__inner {
    padding-top: 8px;
  }

  .brand {
    font-size: 25px;
  }

  .site-header--overlay .brand {
    margin-left: 10px;
  }

  .main-nav {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    flex-direction: column;
    gap: 0;
    justify-self: stretch;
    margin: 0;
    overflow-y: auto;
    padding: 116px 34px 34px;
    background: var(--color-green-dark);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-header:not(.site-header--overlay) .main-nav {
    background: #fff;
    color: #111;
    box-shadow: none;
  }

  .main-nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.3);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.25;
  }

  .mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    padding-top: 52px;
    white-space: normal;
  }

  .mobile-menu__contacts p {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-menu__phone {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
  }

  .mobile-menu__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .mobile-menu__social-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 9px;
    padding: 8px 14px 8px 9px;
    border-radius: 24px;
    background: var(--color-green);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
  }

  .mobile-menu__social-link img {
    width: 28px;
    height: 28px;
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-open .site-header .brand {
    position: fixed;
    z-index: 1001;
    top: 32px;
    left: 34px;
    margin: 0;
  }

  .menu-open .site-header .header-actions {
    position: fixed;
    z-index: 1001;
    top: 17px;
    right: 24px;
  }

  .menu-open .site-header .cart-link {
    display: none;
  }

  .header-actions {
    position: relative;
    z-index: 101;
    gap: 6px;
  }

  .site-header .brand {
    position: relative;
    z-index: 101;
  }

  .cart-link,
  .menu-toggle {
    display: grid;
  }

  .site-header--overlay .cart-link {
    display: none;
  }

  .site-header--overlay .menu-toggle span {
    width: 18px;
    margin-left: auto;
  }

  .menu-toggle span {
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-toggle:not([aria-expanded="true"]) span {
    position: absolute;
    left: 20px;
    width: 18px;
    margin: 0;
  }

  .menu-toggle:not([aria-expanded="true"]) span:first-child {
    top: 19px;
  }

  .menu-toggle:not([aria-expanded="true"]) span:nth-child(2) {
    top: 26px;
  }

  .menu-toggle:not([aria-expanded="true"]) span:last-child {
    top: 33px;
  }

  .menu-toggle[aria-expanded="true"] span {
    position: absolute;
    top: 23px;
    left: 10px;
    width: 28px;
    margin: 0;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .hero,
  .hero__content {
    min-height: 597px;
  }

  .hero {
    overflow: hidden;
    background-color: #5079b9;
    background-image: none;
  }

  .hero::before {
    position: absolute;
    inset: 33px 0 0;
    content: "";
    background: url("../images/hero-mobile.webp") center / cover no-repeat;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    justify-content: flex-start;
    width: calc(100% - 62px);
    padding-top: 99px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(60px, 18vw, 78px);
    line-height: 0.78;
  }

  .hero__button {
    min-width: 136px;
    min-height: 43px;
    margin-left: 6px;
    padding-block: 7px;
  }

  .section {
    padding: 56px 0;
  }

  .section h2 {
    margin-bottom: 36px;
    font-size: 25px;
  }

  .slider-controls {
    display: none;
  }

  .products-section .container {
    width: 100%;
  }

  .products-section {
    min-height: 402px;
    overflow: hidden;
    padding: 33px 0 0;
  }

  .products-section h2 {
    margin-bottom: 25px;
    padding-inline: 0;
    font-size: 20px;
    line-height: 25px;
  }

  .product-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 38px 16px;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 38px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-track::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 149px;
    width: 149px;
    min-width: 149px;
    max-width: 149px;
    scroll-snap-align: start;
  }

  .product-card__image {
    position: relative;
    width: 149px;
    height: 179px;
    min-height: 0;
    background: #fff;
  }

  .product-card__image img {
    position: absolute;
    max-width: none;
    object-fit: cover;
  }

  .product-card:nth-child(1) .product-card__image img {
    top: 40.5px;
    left: -24.12px;
    width: 195.36px;
    height: 121.79px;
  }

  .product-card:nth-child(2) .product-card__image img {
    top: 19.65px;
    left: -38.71px;
    width: 224.13px;
    height: 139.73px;
  }

  .product-card:nth-child(3) .product-card__image img {
    top: 35.5px;
    left: -35.5px;
    width: 205.81px;
    height: 128.31px;
  }

  .product-card:hover .product-card__image img {
    transform: none;
  }

  .product-card h3 {
    width: 137px;
    margin: 6px 0 3px;
    font-size: 20px;
    font-weight: 500;
    line-height: 16px;
  }

  .product-card p {
    width: 142px;
    min-height: 19px;
    color: #111;
    font-size: 8px;
    font-weight: 300;
    line-height: 10px;
  }

  .product-card__bottom {
    position: relative;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
  }

  .product-card__bottom strong {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    white-space: nowrap;
  }

  .product-card__bottom small {
    font-size: 10px;
    font-weight: 500;
    line-height: 20px;
  }

  .button--outline {
    width: 80px;
    min-width: 80px;
    min-height: 21px;
    border-width: 0.5px;
    padding: 2px 8px;
    font-size: 10px;
    line-height: 1;
  }

  .product-card__bottom .button--outline {
    position: absolute;
    top: 0;
    left: 69px;
  }

  .order-steps {
    height: 325px;
    padding: 28px 0 35px;
  }

  .order-steps h2 {
    margin-bottom: 25px;
    font-size: 22px;
    line-height: 1;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    justify-content: center;
    gap: 11px 12px;
    width: min(100%, 318px);
    margin-inline: auto;
  }

  .steps-grid article {
    height: 102px;
    min-height: 102px;
    padding: 10px 4px;
  }

  .steps-grid article + article {
    border-left: 1px solid #777;
  }

  .steps-grid article:last-child {
    grid-column: 1 / -1;
    width: min(161px, 100%);
    margin-inline: auto;
    border-left: 1px solid #777;
  }

  .steps-grid span {
    font-size: 20px;
  }

  .steps-grid h3 {
    margin: 5px 0 6px;
    font-size: 11px;
    line-height: 1.25;
  }

  .steps-grid article:last-child h3 {
    font-size: 10px;
    white-space: nowrap;
  }

  .steps-grid p {
    font-size: 8px;
    line-height: 1.25;
  }

  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .about-copy h2 {
    margin-bottom: 20px;
    text-align: left;
  }

  .about-copy p {
    font-size: 12px;
  }

  .about-grid img {
    max-height: 400px;
  }

  .reviews-section {
    padding-top: 28px;
  }

  .reviews-track {
    margin-right: -24px;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 10px;
  }

  .reviews-track blockquote {
    min-height: 240px;
    padding: 22px;
    border-radius: 20px;
  }

  .reviews-track p {
    margin-top: 42px;
    font-size: 13px;
  }

  .site-footer {
    padding: 34px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }

  .footer-socials {
    gap: 10px;
  }

  .site-footer .footer-socials a {
    width: 30px;
    height: 30px;
  }

  .site-footer h2,
  .site-footer p,
  .site-footer a {
    font-size: 8px;
  }

  .site-footer .footer-brand {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .product-page {
    padding-top: 18px;
  }

  .back-link {
    margin-bottom: 18px;
  }

  .product-detail {
    display: block;
  }

  .product-gallery__main {
    margin-inline: -24px;
    aspect-ratio: 0.88;
  }

  .product-gallery__thumbs {
    overflow-x: auto;
  }

  .product-info {
    padding-top: 34px;
  }

  .product-info h1 {
    font-size: 24px;
  }

  .product-subtitle {
    font-size: 14px;
  }

  .product-price {
    margin-bottom: 34px;
    font-size: 36px;
  }

  .color-fieldset {
    margin-bottom: 32px;
  }

  .product-buy {
    grid-template-columns: 130px 1fr;
    gap: 12px;
  }

  .detail-accordion button {
    min-height: 58px;
    font-size: 16px;
  }

  .product-reviews {
    padding: 54px 0 70px;
  }

  .product-reviews__heading {
    align-items: flex-start;
  }

  .product-reviews h2 {
    font-size: 19px;
  }

  .product-reviews__heading .button {
    min-width: 120px;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .review-row__meta {
    font-size: 12px;
  }

  .review-row p {
    font-size: 13px;
  }

  .pagination {
    gap: 4px;
  }

  .cart-overlay {
    align-items: end;
    padding: 0;
  }

  .cart-modal {
    display: block;
    max-height: 90dvh;
  }

  .cart-modal__items {
    padding: 32px 24px 18px;
  }

  .cart-modal__items h2 {
    font-size: 24px;
  }

  .mini-cart-item {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .mini-cart-item img {
    width: 82px;
    height: 72px;
  }

  .mini-cart-item h3 {
    font-size: 15px;
  }

  .mini-cart-item p {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .mini-cart-item strong {
    font-size: 17px;
  }

  .mini-cart-quantity {
    grid-column: 2;
    width: max-content;
  }

  .cart-modal__summary {
    padding: 28px 24px;
  }

  .cart-total {
    margin-top: 10px;
    padding-top: 24px;
  }

  .checkout-header {
    height: 100px;
  }

  .checkout-header .brand {
    font-size: 44px;
  }

  .checkout-card {
    width: calc(100% - 24px);
    margin-bottom: 40px;
    padding: 24px 12px 42px;
  }

  .checkout-card > h1 {
    padding-left: 12px;
    font-size: 28px;
  }

  .checkout-grid {
    gap: 20px;
  }

  .checkout-section {
    padding: 24px 18px;
  }

  .checkout-item {
    grid-template-columns: 76px 1fr;
  }

  .checkout-item img {
    width: 76px;
    height: 66px;
  }

  .checkout-item h3 {
    font-size: 15px;
  }

  .checkout-item p {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .checkout-item strong {
    font-size: 17px;
  }

  .checkout-item__quantity {
    grid-column: 2;
    width: max-content;
  }

  .form-section legend {
    font-size: 20px;
  }

  .form-section > label,
  .form-row {
    display: block;
    margin-bottom: 20px;
  }

  .form-section label > span,
  .form-row > span {
    display: block;
    margin-bottom: 6px;
    padding: 0;
  }

  .consents {
    margin-left: 0;
  }

  .checkout-summary {
    padding: 28px 22px;
  }

  .checkout-success > div {
    padding: 38px 24px;
  }
}

.catalog-shell {
  background: #f5f5f5;
}

.catalog-page {
  min-height: calc(100vh - 112px);
  padding: 72px 0 118px;
  background: #f5f5f5;
}

.catalog-page__title {
  margin: 0 0 68px;
  font-size: clamp(46px, 4.4vw, 72px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

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

.catalog-card {
  min-width: 0;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-card__image {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1.18;
  place-items: center;
  background: #fff;
}

.catalog-card__image img {
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-card h2 {
  margin: 28px 0 7px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.catalog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.catalog-card__description {
  min-height: 44px;
  margin: 0;
  color: #7d7d7d;
  font-size: 16px;
  line-height: 1.35;
}

.catalog-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.catalog-card__price {
  flex: 0 0 auto;
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.catalog-card__price small {
  margin-left: 2px;
  font-size: 17px;
  letter-spacing: 0;
}

.catalog-card .button--outline {
  position: static;
  width: auto;
  min-width: 154px;
  min-height: 50px;
  padding: 10px 24px;
  border-color: #111;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .product-page {
    padding-top: 8px;
  }

  .product-page .back-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
  }

  .product-page .product-gallery__main {
    aspect-ratio: 1;
  }

  .product-page .gallery-next {
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .product-page .product-gallery__thumbs {
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .product-page .product-gallery__thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-page .product-gallery__thumbs button {
    flex: 0 0 78px;
    width: 78px;
    height: 64px;
  }

  .product-page .product-info {
    padding-top: 30px;
  }

  .product-page .product-info h1 {
    font-size: 28px;
    line-height: 1.1;
  }

  .product-page .product-subtitle {
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.4;
  }

  .product-page .product-price {
    margin: 18px 0 34px;
    font-size: 40px;
    line-height: 1;
  }

  .product-page .product-price small {
    font-size: 19px;
  }

  .product-page .color-fieldset {
    grid-template-columns: 120px auto;
    margin-bottom: 32px;
  }

  .product-page .color-fieldset legend {
    width: 120px;
    font-size: 18px;
  }

  .product-page .color-fieldset p {
    font-size: 15px;
  }

  .product-page .color-swatch {
    width: 44px;
    height: 44px;
  }

  .product-page .product-buy {
    grid-template-columns: minmax(116px, 0.78fr) minmax(0, 1.22fr);
    gap: 12px;
    margin-bottom: 32px;
  }

  .product-page .quantity-control,
  .product-page .product-buy > .button {
    min-height: 56px;
  }

  .product-page .detail-accordion button {
    min-height: 60px;
    font-size: 16px;
  }

  .product-page .detail-accordion p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  .product-page .product-reviews {
    padding: 52px 0 72px;
  }

  .product-page .product-reviews__heading {
    align-items: center;
  }

  .product-page .product-reviews h2 {
    max-width: 190px;
    font-size: 21px;
    line-height: 1.3;
  }

  .product-page .product-reviews__heading .button {
    min-width: 126px;
    min-height: 44px;
    font-size: 11px;
  }

  .product-page .rating-summary {
    margin-top: 22px;
    padding: 24px 16px;
  }

  .product-page .review-row {
    padding: 32px 0;
  }

  .product-page .review-row .stars {
    font-size: 14px;
  }

  .product-page .review-row__meta {
    margin: 8px 0;
    font-size: 13px;
  }

  .product-page .review-row p {
    font-size: 14px;
    line-height: 1.5;
  }

  .product-page .pagination {
    margin-top: 32px;
  }

  .product-page .pagination button {
    width: 44px;
    height: 44px;
  }

  .product-page + .site-footer {
    padding: 42px 0 46px;
  }

  .product-page + .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .product-page + .site-footer .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .product-page + .site-footer .footer-brand {
    margin-bottom: 22px;
    font-size: 40px;
  }

  .product-page + .site-footer .footer-socials {
    gap: 12px;
  }

  .product-page + .site-footer .footer-socials a {
    width: 42px;
    height: 42px;
  }

  .product-page + .site-footer h2 {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .product-page + .site-footer p,
  .product-page + .site-footer a {
    font-size: 12px;
    line-height: 1.45;
  }

  .catalog-page {
    min-height: 0;
    padding: 44px 0 76px;
  }

  .catalog-page__title {
    margin-bottom: 38px;
    font-size: 40px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .catalog-card__image {
    aspect-ratio: 1.12;
  }

  .catalog-card__image img {
    padding: 18px;
  }

  .catalog-card h2 {
    margin-top: 20px;
    font-size: 25px;
  }

  .catalog-card__description {
    min-height: 0;
    font-size: 15px;
  }

  .catalog-card__bottom {
    margin-top: 19px;
  }

  .catalog-card__price {
    font-size: 31px;
  }

  .catalog-card__price small {
    font-size: 15px;
  }

  .catalog-card .button--outline {
    min-width: 138px;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .product-page .product-buy {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .product-page .quantity-control button,
  .product-page .quantity-control output {
    min-width: 0;
  }

  .product-page .product-buy > .button {
    min-width: 0;
    padding-inline: 12px;
  }

  .product-page .product-reviews h2 {
    max-width: 155px;
    font-size: 19px;
  }

  .product-page .product-reviews__heading .button {
    min-width: 112px;
    padding-inline: 8px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .catalog-card:hover {
    transform: translateY(-7px);
  }

  .catalog-card:hover .catalog-card__image img {
    transform: scale(1.025);
  }

  .product-card:hover {
    transform: translateY(-7px);
  }

  .steps-grid article:hover {
    border-color: #111;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
  }

  .about-grid img:hover {
    transform: scale(1.015);
  }

  .reviews-track blockquote:hover {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
    transform: translateY(-6px);
  }
}

.motion-ready .hero .brand {
  animation: hero-fade-down 650ms 80ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .hero .header-actions {
  animation: hero-fade-down 650ms 150ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .hero h1 {
  animation: hero-rise 820ms 180ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .hero__button {
  animation: hero-rise 720ms 360ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms var(--reveal-delay, 0ms) ease,
    transform 680ms var(--reveal-delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.reveal--scale {
  transform: scale(0.965);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .reveal.is-visible.catalog-card:hover {
    transform: translateY(-7px);
  }

  .reveal.is-visible.product-card:hover {
    transform: translateY(-7px);
  }

  .steps-grid article.reveal.is-visible:hover {
    transform: translateY(-5px);
  }

  .reveal.is-visible.about-visual:hover {
    transform: scale(1.015);
  }

  .reveal.is-visible.reviews-card:hover {
    transform: translateY(-6px);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-down {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* WordPress and WooCommerce integration */

.main-nav__list,
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__list {
  display: contents;
}

.main-nav__list li {
  display: contents;
}

.main-nav__list a {
  color: inherit;
  text-decoration: none;
}

.main-nav__list .current-menu-item > a,
.main-nav__list .current_page_item > a {
  text-decoration: underline;
  text-decoration-color: var(--color-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.brand__image {
  display: block;
  width: auto;
  max-width: 150px;
  height: 48px;
  object-fit: contain;
}

.footer-menu a {
  color: inherit;
  text-decoration: none;
}

.wp-page {
  min-height: 55vh;
  padding: 64px 0 100px;
}

.wp-entry > h1 {
  margin: 0 0 40px;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 400;
}

.wp-entry::after {
  display: table;
  clear: both;
  content: "";
}

.ekos-empty {
  width: 100%;
  margin: 24px 0;
  color: var(--color-muted);
}

.product-card__image img,
.catalog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__bottom .price,
.catalog-card__price .price,
.catalog-card__price {
  color: #111;
  font-size: inherit;
}

.product-card__bottom del,
.catalog-card__price del {
  margin-right: 6px;
  color: #888;
  font-size: 0.62em;
}

.product-card__bottom ins,
.catalog-card__price ins {
  text-decoration: none;
}

.product-card__bottom .button {
  min-width: 150px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -28px 0 36px;
}

.catalog-toolbar .woocommerce-result-count {
  margin: 0;
  color: #777;
}

.catalog-toolbar .woocommerce-ordering {
  margin: 0;
}

.catalog-toolbar select {
  min-height: 48px;
  padding: 8px 38px 8px 14px;
  border: 1px solid #aaa;
  border-radius: 0;
  background: #fff;
  font: inherit;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 56px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: #111;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  border-color: #111;
  background: transparent;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin-bottom: 28px;
  border-top-color: var(--color-yellow);
  background: #fff;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--color-green);
}

.woocommerce .woocommerce-product-gallery {
  float: none;
  width: 100%;
  margin: 0;
}

.woocommerce .woocommerce-product-gallery .flex-viewport,
.woocommerce .woocommerce-product-gallery__wrapper {
  background: #f2eee8;
}

.woocommerce .woocommerce-product-gallery__image a {
  display: block;
  aspect-ratio: 1.12;
}

.woocommerce .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
}

.woocommerce .woocommerce-product-gallery .flex-control-thumbs li {
  float: none;
  flex: 0 0 82px;
  width: 82px;
  padding: 0;
}

.woocommerce .woocommerce-product-gallery .flex-control-thumbs img {
  width: 82px;
  height: 68px;
  border: 2px solid transparent;
  object-fit: cover;
  opacity: 1;
}

.woocommerce .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
  border-color: var(--color-yellow);
}

.product-info .product-subtitle p {
  margin: 0;
}

.product-info .product-price {
  color: #111;
}

.product-info .product-price .price {
  color: inherit;
  font-size: inherit;
}

.product-info .woocommerce-product-rating {
  margin: -54px 0 36px;
}

.product-info form.cart {
  margin: 0 0 34px;
}

.product-info form.cart:not(.variations_form),
.product-info .woocommerce-variation-add-to-cart {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(190px, 1.28fr);
  gap: 18px;
}

.product-info .quantity {
  float: none;
  margin: 0 !important;
}

.product-info .quantity .qty {
  width: 100%;
  min-height: 56px;
  border: 1px solid #777;
  border-radius: 0;
  font: inherit;
  font-weight: 600;
}

.product-info .single_add_to_cart_button {
  min-height: 56px;
  border: 1px solid var(--color-yellow) !important;
  border-radius: 0 !important;
  background: var(--color-yellow) !important;
  color: #111 !important;
  font: inherit !important;
  font-weight: 600 !important;
  opacity: 1;
}

.product-info .single_add_to_cart_button:disabled {
  opacity: 0.45;
}

.product-info .variations {
  margin: 0 0 24px !important;
}

.product-info .variations tr {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.product-info .variations th,
.product-info .variations td {
  display: block;
  padding: 0 !important;
  text-align: left;
}

.product-info .variations label {
  font-size: 17px;
}

.product-info .variations select {
  width: 100%;
  min-height: 52px;
  margin: 0 !important;
  padding: 8px 36px 8px 14px;
  border: 1px solid #aaa;
  border-radius: 0;
  background: #fff;
  font: inherit;
}

.product-info .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: #777;
}

.product-info .woocommerce-variation-price {
  margin-bottom: 16px;
  font-size: 28px;
}

.product-info .product_meta {
  display: grid;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid #ccc;
  color: #777;
  font-size: 13px;
}

.product-details-tabs {
  max-width: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 28px;
  margin: 0 0 32px;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: #bbb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid var(--color-yellow);
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 0;
  color: #111;
  font-weight: 600;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin-bottom: 52px;
}

.woocommerce div.product .woocommerce-tabs .panel h2:first-child {
  font-size: 25px;
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin-left: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid #bbb;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  display: none;
}

.woocommerce #review_form #respond textarea {
  min-height: 140px;
  padding: 14px;
  border: 1px solid #aaa;
}

.woocommerce #review_form #respond .form-submit input {
  min-height: 48px;
  border: 1px solid #111;
  border-radius: 0;
  padding: 10px 24px;
  background: transparent;
  color: #111;
}

.related-products {
  padding-bottom: 100px;
}

.related-products > section > h2 {
  margin-bottom: 42px;
  font-size: 36px;
  font-weight: 400;
}

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

.related-products .products::before,
.related-products .products::after {
  display: none;
}

.related-products .product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.mini-cart-item > a {
  display: block;
}

.mini-cart-item .variation {
  margin: 2px 0 10px;
  color: #858585;
  font-size: 13px;
}

.mini-cart-item .variation dt,
.mini-cart-item .variation dd {
  display: inline;
  float: none;
  margin: 0;
}

.mini-cart-item .variation p {
  display: inline;
}

.mini-cart-item.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

.woocommerce-cart .wp-page,
.woocommerce-checkout .wp-page,
.woocommerce-account .wp-page {
  padding-top: 48px;
  background: var(--color-green);
}

.woocommerce-cart .wp-entry,
.woocommerce-checkout .wp-entry,
.woocommerce-account .wp-entry {
  padding: 44px;
  border-radius: 10px;
  background: #f7f7f7;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
  border-collapse: collapse;
  border-radius: 0;
  background: #fff;
}

.woocommerce-cart table.shop_table td,
.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table td,
.woocommerce-checkout table.shop_table th {
  padding: 18px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  border: 1px solid #aaa;
  border-radius: 0;
  padding: 10px 12px;
  background: #fff;
  font: inherit;
}

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

.woocommerce #payment {
  border-radius: 0;
  background: #fff;
}

.woocommerce #payment #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.wc-block-components-button {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background: var(--color-yellow);
  color: #111;
  font: inherit;
  font-weight: 600;
}

.wc-block-cart,
.wc-block-checkout {
  padding: 26px;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 700px) {
  .main-nav__list {
    display: block;
    width: 100%;
  }

  .main-nav__list li {
    display: block;
  }

  .main-nav__list > li > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.3);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.25;
  }

  .brand__image {
    max-width: 92px;
    height: 34px;
  }

  .catalog-toolbar {
    display: block;
    margin: -12px 0 30px;
  }

  .catalog-toolbar .woocommerce-ordering {
    margin-top: 12px;
  }

  .catalog-toolbar select {
    width: 100%;
  }

  .woocommerce .woocommerce-product-gallery__image a {
    aspect-ratio: 1;
  }

  .woocommerce .woocommerce-product-gallery .flex-control-thumbs {
    scrollbar-width: none;
  }

  .woocommerce .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-info .woocommerce-product-rating {
    margin: -22px 0 28px;
  }

  .product-info form.cart:not(.variations_form),
  .product-info .woocommerce-variation-add-to-cart {
    grid-template-columns: minmax(116px, 0.78fr) minmax(0, 1.22fr);
    gap: 12px;
  }

  .product-info .variations tr {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
  }

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

  .woocommerce-cart .wp-entry,
  .woocommerce-checkout .wp-entry,
  .woocommerce-account .wp-entry {
    padding: 24px 18px;
  }

  .woocommerce-cart table.shop_table_responsive tr td {
    padding: 14px;
  }

  .wc-block-cart,
  .wc-block-checkout {
    padding: 16px;
  }
}

/* Single product: keep WooCommerce functionality inside the EKOS composition. */
.woocommerce div.product .product-gallery div.images.woocommerce-product-gallery,
.woocommerce div.product .product-info.summary {
  float: none;
  width: 100%;
  margin: 0;
}

.woocommerce div.product .product-gallery .woocommerce-product-gallery__wrapper {
  width: 100%;
  margin: 0;
}

.woocommerce div.product .product-gallery .woocommerce-product-gallery__image {
  width: 100% !important;
}

.woocommerce div.product .product-gallery .woocommerce-product-gallery__image a {
  width: 100%;
  aspect-ratio: 1.12;
  background: #f7f5f1;
}

.woocommerce div.product .product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce div.product .product-gallery .flex-control-thumbs:has(li:only-child) {
  display: none;
}

.woocommerce div.product .product-info .product-price {
  margin: 0 0 44px;
}

.woocommerce div.product .product-info .product-price .amount {
  color: #111;
  font-size: inherit;
  font-weight: inherit;
}

.woocommerce div.product .product-info .product-price .woocommerce-Price-currencySymbol {
  margin-left: 4px;
  font-size: 22px;
  font-weight: 400;
}

.woocommerce div.product .product-info .product-price small {
  margin-left: 2px;
  font-size: 22px;
  font-weight: 400;
}

.woocommerce div.product .product-info form.cart {
  margin-bottom: 34px;
}

.woocommerce div.product .product-info form.variations_form {
  display: block;
}

.woocommerce div.product .product-info .variations {
  width: 100%;
  margin: 0 0 42px !important;
}

.woocommerce div.product .product-info .variations tbody {
  display: block;
}

.woocommerce div.product .product-info .variations tr {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin: 0;
}

.woocommerce div.product .product-info .variations th {
  display: grid;
  gap: 4px;
  padding: 0 !important;
}

.woocommerce div.product .product-info .variations th label {
  font-size: 20px;
  font-weight: 600;
}

.ekos-variation-current {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 400;
}

.woocommerce div.product .product-info .variations td {
  padding: 0 !important;
}

.ekos-variation-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.ekos-variation-swatches {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ekos-swatch {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid #b8b8b8;
  border-radius: 0;
  box-shadow: inset 0 0 0 4px #fff;
  background: #ddd;
  color: #111;
  cursor: pointer;
  font: inherit;
}

.ekos-swatch--oak {
  background: #d6ac83;
}

.ekos-swatch--white {
  background: #fff;
}

.ekos-swatch.is-selected {
  border: 2px solid #111;
}

.woocommerce div.product .product-info .reset_variations {
  display: none !important;
}

.woocommerce div.product .product-info .single_variation_wrap {
  display: block;
}

.woocommerce div.product .product-info .woocommerce-variation {
  min-height: 0;
}

.woocommerce div.product .product-info .woocommerce-variation-price,
.woocommerce div.product .product-info .woocommerce-variation-availability {
  display: none;
}

.woocommerce div.product .product-info .woocommerce-variation-add-to-cart,
.woocommerce div.product .product-info form.cart:not(.variations_form) {
  display: grid;
  grid-template-columns: 200px minmax(220px, 1fr);
  gap: 38px;
}

.woocommerce div.product .product-info .quantity--stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(48px, 1fr));
  min-height: 64px;
  border: 1px solid #777;
}

.woocommerce div.product .product-info .quantity--stepper .qty {
  width: 100%;
  min-width: 0;
  min-height: 62px;
  padding: 0;
  border: 0;
  appearance: textfield;
  text-align: center;
}

.woocommerce div.product .product-info .quantity--stepper .qty::-webkit-inner-spin-button,
.woocommerce div.product .product-info .quantity--stepper .qty::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.quantity-stepper__button {
  min-width: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 22px;
}

.woocommerce div.product .product-info .single_add_to_cart_button {
  min-height: 64px;
}

.product-reviews .star-rating {
  float: none;
  width: 5.4em;
  margin: 0;
  color: #111;
  letter-spacing: 0.08em;
}

.review-row .star-rating {
  font-size: 14px;
}

.review-row__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 9px 0;
  color: var(--color-muted);
}

.review-row__meta strong {
  color: #111;
}

.review-row p {
  margin: 0;
}

.reviews-empty {
  margin: 30px 0 0;
  color: var(--color-muted);
}

.ekos-review-form {
  margin-top: 38px;
  padding: 30px;
  background: #f5f5f5;
}

.ekos-review-form h3 {
  margin-top: 0;
}

.ekos-review-form label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
}

.ekos-review-form input,
.ekos-review-form select,
.ekos-review-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #aaa;
  border-radius: 0;
  background: #fff;
  font: inherit;
}

.ekos-review-form textarea {
  min-height: 140px;
  resize: vertical;
}

.ekos-review-form .submit {
  min-height: 50px;
  padding: 10px 24px;
  border: 1px solid #111;
  border-radius: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.woocommerce .cart-modal__summary .button.button--primary,
.cart-modal__summary .button.button--primary,
.woocommerce .cart-modal__summary .button.button--outline,
.cart-modal__summary .button.button--outline {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}

.woocommerce .cart-modal__summary .button.button--primary,
.cart-modal__summary .button.button--primary {
  border: 1px solid var(--color-yellow) !important;
  background: var(--color-yellow) !important;
  color: #111 !important;
  opacity: 1;
}

.woocommerce .cart-modal__summary .button.button--outline,
.cart-modal__summary .button.button--outline,
.woocommerce .product-reviews .button.button--outline,
.product-reviews .button.button--outline {
  border: 1px solid #111 !important;
  background: transparent !important;
  color: #111 !important;
  opacity: 1;
}

.woocommerce .cart-modal__summary .button.button--primary:hover,
.cart-modal__summary .button.button--primary:hover {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

.woocommerce .cart-modal__summary .button.button--outline:hover,
.cart-modal__summary .button.button--outline:hover,
.woocommerce .product-reviews .button.button--outline:hover,
.product-reviews .button.button--outline:hover {
  background: #111 !important;
  color: #fff !important;
}

@media (max-width: 700px) {
  .woocommerce div.product .product-gallery .woocommerce-product-gallery__image a {
    aspect-ratio: 1;
  }

  .woocommerce div.product .product-info .product-price {
    margin: 18px 0 34px;
  }

  .woocommerce div.product .product-info .variations {
    margin-bottom: 32px !important;
  }

  .woocommerce div.product .product-info .variations tr {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
  }

  .woocommerce div.product .product-info .variations th label {
    font-size: 18px;
  }

  .ekos-swatch {
    width: 44px;
    height: 44px;
  }

  .woocommerce div.product .product-info .woocommerce-variation-add-to-cart,
  .woocommerce div.product .product-info form.cart:not(.variations_form) {
    grid-template-columns: minmax(126px, 0.84fr) minmax(0, 1.16fr);
    gap: 12px;
  }

  .woocommerce div.product .product-info .quantity--stepper,
  .woocommerce div.product .product-info .single_add_to_cart_button {
    min-height: 58px;
  }

  .woocommerce div.product .product-info .quantity--stepper .qty {
    min-height: 56px;
  }

  .quantity-stepper__button {
    min-width: 36px;
  }

  .ekos-review-form {
    padding: 24px 18px;
  }
}

/* Product reviews — visual parity with the approved EKOS product mockup. */
.woocommerce div.product .product-reviews {
  max-width: none;
  padding: 90px 74px 128px;
}

.woocommerce div.product .product-reviews__heading {
  align-items: center;
  gap: 32px;
}

.woocommerce div.product .product-reviews h2 {
  max-width: none;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.woocommerce div.product .product-reviews__heading .button {
  width: auto;
  min-width: 314px;
  min-height: 72px;
  padding: 14px 32px;
  border-width: 1px !important;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 400;
}

.woocommerce div.product .rating-summary {
  min-height: 152px;
  margin-top: 34px;
  padding: 30px;
  gap: 36px;
  background: #ececec;
}

.woocommerce div.product .rating-summary strong {
  font-size: clamp(36px, 3.4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.woocommerce div.product .product-reviews .star-rating {
  width: 5.45em;
  height: 1.2em;
  color: #ffc400;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.woocommerce div.product .product-reviews .star-rating::before {
  color: #929292;
  opacity: 1;
}

.woocommerce div.product .product-reviews .star-rating span::before {
  color: #ffc400;
}

.woocommerce div.product .review-row {
  padding: 90px 0 76px;
  border-bottom: 3px solid #dedede;
}

.woocommerce div.product .review-row > .star-rating {
  margin-bottom: 24px;
  font-size: clamp(22px, 1.8vw, 28px);
}

.woocommerce div.product .review-row__meta {
  align-items: baseline;
  margin: 0 0 24px;
  color: #c2bebe;
  font-size: clamp(20px, 1.8vw, 28px);
}

.woocommerce div.product .review-row__meta strong {
  color: #111;
  font-weight: 600;
}

.woocommerce div.product .review-row__meta time {
  color: #c2bebe;
  font-weight: 400;
}

.woocommerce div.product .review-row p {
  max-width: 1060px;
  font-size: clamp(19px, 1.8vw, 28px);
  line-height: 1.55;
}

.woocommerce div.product .reviews-empty {
  padding: 70px 0;
  border-bottom: 3px solid #dedede;
  font-size: 20px;
}

.woocommerce div.product .ekos-review-form {
  margin-top: 56px;
  padding: 42px;
}

@media (max-width: 700px) {
  .woocommerce div.product .product-reviews {
    padding: 52px 0 72px;
  }

  .woocommerce div.product .product-reviews__heading {
    gap: 16px;
  }

  .woocommerce div.product .product-reviews h2 {
    max-width: 185px;
    font-size: 24px;
    line-height: 1.25;
  }

  .woocommerce div.product .product-reviews__heading .button {
    min-width: 142px;
    min-height: 50px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 500;
  }

  .woocommerce div.product .rating-summary {
    min-height: 92px;
    margin-top: 30px;
    padding: 22px 16px;
    gap: 18px;
  }

  .woocommerce div.product .rating-summary strong {
    font-size: 28px;
  }

  .woocommerce div.product .product-reviews .star-rating {
    font-size: 22px;
  }

  .woocommerce div.product .review-row {
    padding: 38px 0 34px;
    border-bottom-width: 1px;
  }

  .woocommerce div.product .review-row > .star-rating {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .woocommerce div.product .review-row__meta {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .woocommerce div.product .review-row p {
    font-size: 15px;
    line-height: 1.55;
  }

  .woocommerce div.product .ekos-review-form {
    margin-top: 34px;
    padding: 24px 18px;
  }
}
