.vm-ucoz {
  min-width: 0;
  background: #fff;
}

.vm-ucoz #wrapper,
.vm-ucoz #middle,
.vm-ucoz .cnt {
  width: auto;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.vm-ucoz .vm-header,
.vm-ucoz .vm-footer {
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.vm-ucoz h1,
.vm-ucoz h2,
.vm-ucoz h3,
.vm-ucoz h4 {
  color: var(--vm-ink);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.vm-ucoz .vm-footer h2 {
  color: #a9c1b7;
}

.vm-ucoz .vm-footer .vm-logo--light span {
  color: #71dda0;
}

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

.vm-category-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--vm-line);
  border-radius: var(--vm-radius);
  background: #fff;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.vm-category-card:hover {
  transform: translateY(-4px);
  border-color: #b7d8c6;
  box-shadow: var(--vm-shadow);
}

.vm-category-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 12px;
}

.vm-category-card span {
  font-size: 19px;
  font-weight: 850;
}

.vm-category-card small {
  margin-top: 4px;
  color: var(--vm-muted);
  font-size: 13px;
}

.vm-product-feed,
.vm-goods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vm-product-feed::after,
.vm-goods-grid::after {
  display: none;
}

.vm-product-feed > div,
.vm-goods-grid > div,
.vm-product-feed .g-item,
.vm-goods-grid .g-item {
  width: auto !important;
  height: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  float: none !important;
}

.vm-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--vm-line);
  border-radius: var(--vm-radius);
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}

.vm-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--vm-shadow);
}

.vm-product-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--vm-cream);
}

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

.vm-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.vm-product-card__category {
  color: var(--vm-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.vm-product-card h2 {
  margin: 9px 0 11px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -.015em;
}

.vm-product-card__brief {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 15px;
  color: var(--vm-muted);
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vm-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: auto;
  color: var(--vm-muted);
  font-size: 12px;
}

.vm-product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--vm-line);
}

.vm-product-card__price {
  font-size: 21px;
  white-space: nowrap;
}

.vm-out {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #8d342c;
  font-weight: 750;
}

.vm-out--large {
  min-height: 52px;
  margin: 18px 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff0ed;
}

.vm-center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.vm-stock-promo {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 54px;
}

.vm-stock-promo > img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 22px;
}

.vm-stock-promo h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
}

.vm-stock-promo p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--vm-muted);
  font-size: 17px;
}

.vm-faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
}

.vm-faq details {
  border-bottom: 1px solid var(--vm-line);
}

.vm-faq summary {
  position: relative;
  padding: 20px 42px 20px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.vm-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  font-size: 24px;
  line-height: 1;
}

.vm-faq details[open] summary::after {
  content: "−";
}

.vm-faq details p {
  margin: -4px 0 22px;
  color: var(--vm-muted);
}

.vm-catalog-hero {
  padding: 54px 0 48px;
  background: var(--vm-cream);
}

.vm-catalog-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.vm-catalog-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--vm-muted);
  font-size: 18px;
}

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

.vm-sorter select,
.vm-filter select,
.vm-filter input {
  min-height: 44px;
  border: 1px solid var(--vm-line);
  border-radius: 10px;
  background: #fff;
  color: var(--vm-ink);
  font: inherit;
}

.vm-filter {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--vm-line);
  border-radius: 14px;
  background: var(--vm-cream);
}

.vm-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 34px;
}

.vm-pagination a,
.vm-pagination b {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--vm-line);
  border-radius: 10px;
}

.vm-product-hero {
  padding: 34px 0 70px;
  background: linear-gradient(180deg, var(--vm-cream), #fff);
}

.vm-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 65px;
  align-items: start;
}

.vm-product-gallery {
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 28px;
  border: 1px solid var(--vm-line);
  border-radius: 24px;
  background: #fff;
}

.vm-product-main-image {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.vm-product-thumbs {
  display: flex;
  gap: 8px;
  justify-self: start;
  margin-top: 18px;
}

.vm-product-thumbs img {
  object-fit: contain;
  border: 1px solid var(--vm-line);
  border-radius: 8px;
}

.vm-product-summary {
  padding-top: 18px;
}

.vm-product-summary h1 {
  margin: 10px 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.vm-product-lead {
  color: var(--vm-muted);
  font-size: 17px;
}

.vm-product-price {
  margin: 24px 0;
  font-size: 34px;
  font-weight: 900;
}

.vm-product-facts {
  margin: 0 0 22px;
  border-top: 1px solid var(--vm-line);
}

.vm-product-facts div {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 11px 0;
  border-bottom: 1px solid var(--vm-line);
}

.vm-product-facts dt {
  color: var(--vm-muted);
}

.vm-product-facts dd {
  margin: 0;
  font-weight: 750;
}

.vm-product-buy {
  margin: 24px 0 12px;
}

.vm-product-buy .button,
.vm-product-buy input[type="submit"],
.vm-product-buy button {
  min-height: 52px !important;
  border: 1px solid var(--vm-green) !important;
  border-radius: 12px !important;
  background: var(--vm-green) !important;
  color: #fff !important;
  font-weight: 800 !important;
}

.vm-product-note {
  color: var(--vm-muted);
  font-size: 13px;
}

.vm-product-content {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
}

.vm-product-content article > h2,
.vm-product-content aside > h2 {
  font-size: 30px;
}

.vm-product-content aside {
  align-self: start;
  display: grid;
  gap: 13px;
  padding: 26px;
  border-radius: 18px;
  background: var(--vm-cream);
}

.vm-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: start;
}

.vm-contact-card,
.vm-contact-form {
  padding: 30px;
  border: 1px solid var(--vm-line);
  border-radius: 20px;
  background: #fff;
}

.vm-contact-card {
  background: var(--vm-cream);
}

.vm-contact-card h2,
.vm-contact-form h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

.vm-contact-card dl {
  margin: 0 0 24px;
}

.vm-contact-card dl div {
  padding: 14px 0;
  border-bottom: 1px solid var(--vm-line);
}

.vm-contact-card dt {
  margin-bottom: 5px;
  color: var(--vm-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.vm-contact-card dd {
  display: grid;
  gap: 4px;
  margin: 0;
  font-weight: 650;
}

.vm-contact-form > p {
  margin-top: 0;
  color: var(--vm-muted);
}

.vm-contact-form form table,
.vm-contact-form form tbody,
.vm-contact-form form tr,
.vm-contact-form form td {
  display: block;
  width: 100% !important;
}

.vm-contact-form form tr {
  margin-bottom: 15px;
}

.vm-contact-form form td:first-child {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 750;
}

.vm-contact-form input[type="text"],
.vm-contact-form input[type="email"],
.vm-contact-form input[type="tel"],
.vm-contact-form textarea,
.vm-contact-form select {
  width: 100% !important;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--vm-line);
  border-radius: 10px;
  background: #fff;
  color: var(--vm-ink);
  font: inherit;
}

.vm-contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.vm-contact-form input:focus,
.vm-contact-form textarea:focus {
  outline: 3px solid rgba(17,112,71,.18);
  border-color: var(--vm-green);
}

.vm-contact-form input[type="submit"],
.vm-contact-form button[type="submit"] {
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 11px;
  background: var(--vm-green);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.vm-consent {
  display: flex;
  gap: 10px;
  margin: 8px 0 15px;
  color: var(--vm-muted);
  font-size: 13px;
  line-height: 1.45;
}

.vm-consent input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
}

.vm-consent a {
  color: var(--vm-green);
  text-decoration: underline;
}

.vm-form-note {
  margin: 10px 0 0;
  color: var(--vm-muted);
  font-size: 12px;
}

.vm-powered {
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: .01;
}

@media (max-width: 980px) {
  .vm-category-grid,
  .vm-product-feed,
  .vm-goods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-product-layout,
  .vm-product-content,
  .vm-contact-layout,
  .vm-stock-promo {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vm-product-gallery {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .vm-hero__visual {
    order: 0;
  }

  .vm-category-grid,
  .vm-product-feed,
  .vm-goods-grid,
  .vm-faq {
    grid-template-columns: 1fr;
  }

  .vm-category-card {
    min-height: 0;
  }

  .vm-category-card img {
    height: 170px;
  }

  .vm-catalog-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .vm-product-gallery {
    min-height: 300px;
    padding: 18px;
  }

  .vm-product-summary h1 {
    font-size: 34px;
  }

  .vm-product-card__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .vm-product-card__bottom .vm-btn {
    width: 100%;
  }
}
