/* Modern product/decor page layer. Scoped by file inclusion on decor pages. */
body.catalog-page {
  --qp-green: #93e48d;
  --qp-green-dark: #159f45;
  --qp-ink: #111916;
  --qp-muted: rgba(17, 25, 22, .68);
  --qp-line: rgba(17, 25, 22, .1);
  --qp-bg: #f7faf8;
  --qp-card: #ffffff;
  --qp-shadow: 0 24px 70px rgba(20, 47, 31, .09);
  --qp-radius-lg: 26px;
  --qp-radius-md: 18px;
  background: var(--qp-bg);
  color: var(--qp-ink);
  font-family: "TildaSans", Arial, sans-serif;
}

body.catalog-page main {
  background: var(--qp-bg);
}

body.catalog-page .container {
  width: min(1180px, calc(100% - 40px));
}

body.catalog-page .hero {
  padding: 104px 0 34px;
  background: var(--qp-bg);
}

body.catalog-page .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--qp-line);
  border-radius: var(--qp-radius-lg);
  background: linear-gradient(110deg, #fff 0%, #fff 48%, #f1fbf3 100%);
  box-shadow: var(--qp-shadow);
  overflow: hidden;
  padding: 42px 46px;
}

body.catalog-page .hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--qp-ink);
}

body.catalog-page .eyebrow,
body.catalog-page .meta-chip {
  width: fit-content;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(43, 158, 36, .16);
  border-radius: 999px;
  background: #eef9ed;
  color: #258f20;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body.catalog-page .hero h1 {
  max-width: 680px;
  margin-top: 18px;
  color: #080d0b;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

body.catalog-page .hero__lead {
  max-width: 560px;
  margin-top: 18px;
  color: var(--qp-muted);
  font-size: 20px;
  line-height: 1.45;
}

body.catalog-page .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.catalog-page .btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: none;
}

body.catalog-page .btn--primary,
body.catalog-page .cta-form__submit {
  border-color: var(--qp-green-dark);
  background: linear-gradient(180deg, #0aa889, #159f45);
  color: #fff;
}

body.catalog-page .btn--secondary {
  border-color: rgba(17, 25, 22, .12);
  background: #fff;
  color: var(--qp-ink);
}

body.catalog-page .hero__visual {
  min-height: 430px;
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 26%, rgba(147, 228, 141, .24), transparent 32%),
    linear-gradient(180deg, #f8fbf7, #eef6ee);
  box-shadow: inset 0 0 0 1px rgba(17, 25, 22, .06);
}

body.catalog-page .hero__visual img {
  width: min(100%, 560px);
  min-height: 0;
  max-height: 410px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 34px rgba(20, 47, 31, .12)) !important;
}

body.catalog-page .section {
  padding: 34px 0;
}

body.catalog-page .section--tight {
  padding-top: 24px;
}

body.catalog-page .card {
  border: 1px solid var(--qp-line);
  border-radius: var(--qp-radius-lg);
  background: var(--qp-card);
  box-shadow: var(--qp-shadow);
  overflow: hidden;
}

body.catalog-page .section__head h2,
body.catalog-page .detail-card h3,
body.catalog-page .feature-card h3,
body.catalog-page .cta-card h2,
body.catalog-page .calculator-head h2 {
  color: #080d0b;
  font-weight: 900;
  letter-spacing: -.018em;
  text-transform: none;
}

body.catalog-page .section__head--compact h2 {
  margin-top: 12px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

body.catalog-page .section__head p,
body.catalog-page .detail-card p,
body.catalog-page .detail-card li,
body.catalog-page .cta-card p {
  color: var(--qp-muted);
}

body.catalog-page .product-gallery {
  padding: 26px;
}

body.catalog-page .product-gallery__stage {
  min-height: 480px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8faf7, #eef5ef);
}

body.catalog-page .product-gallery__image {
  height: 480px;
  object-fit: contain;
}

body.catalog-page .product-gallery__nav {
  border-color: rgba(17, 25, 22, .1);
  background: rgba(255, 255, 255, .92);
  color: var(--qp-ink);
  box-shadow: 0 12px 26px rgba(20, 47, 31, .12);
}

body.catalog-page .product-gallery__thumbs {
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 9px;
}

body.catalog-page .product-gallery__thumb {
  border-radius: 14px;
  background: #f4f6f2;
}

body.catalog-page .product-gallery__thumb.is-active {
  border-color: var(--qp-green-dark);
}

body.catalog-page .product-layout,
body.catalog-page .detail-grid,
body.catalog-page .grid-2 {
  gap: 18px;
}

body.catalog-page .price-card,
body.catalog-page .calculator-card,
body.catalog-page .info-card,
body.catalog-page .detail-card,
body.catalog-page .cta-card {
  padding: 26px;
}

body.catalog-page .price-table th,
body.catalog-page .price-table td {
  padding: 13px 0;
  border-bottom-color: var(--qp-line);
}

body.catalog-page .price-table th {
  color: rgba(17, 25, 22, .55);
  font-size: 13px;
  font-weight: 850;
}

body.catalog-page .price-table td {
  color: var(--qp-ink);
  font-size: 16px;
  font-weight: 750;
}

body.catalog-page .price-table__hint,
body.catalog-page .calculator-inline-note,
body.catalog-page .calculator-card__status,
body.catalog-page .calculator-cart__item-meta,
body.catalog-page .calculator-choice__text {
  color: var(--qp-muted);
}

body.catalog-page .calculator-card {
  gap: 16px;
}

body.catalog-page .calculator-section,
body.catalog-page .calculator-cart,
body.catalog-page .calculator-choice,
body.catalog-page .calculator-grid label,
body.catalog-page .calculator-breakdown {
  border-color: rgba(17, 25, 22, .08);
  border-radius: var(--qp-radius-md);
  background: #fbfcfb;
}

body.catalog-page .calculator-choice.is-active {
  border-color: rgba(43, 158, 36, .42);
  background: #f0faee;
}

body.catalog-page .calculator-card select,
body.catalog-page .calculator-card input,
body.catalog-page .cta-form input,
body.catalog-page .cta-form textarea {
  border-color: rgba(17, 25, 22, .12);
  border-radius: 15px;
  background: #fff;
  color: var(--qp-ink);
}

body.catalog-page .detail-card {
  background: linear-gradient(180deg, #fff, #fbfcfb);
}

body.catalog-page .product-card__actions {
  gap: 10px;
}

body.catalog-page .cta-section {
  padding: 34px 0 54px;
}

body.catalog-page .cta-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(110deg, #fff 0%, #fff 48%, #f1fbf3 100%);
}

body.catalog-page .cta-form {
  gap: 12px;
}

body.catalog-page .cta-form__note {
  color: var(--qp-muted);
}

body.catalog-page .contact-block,
body.catalog-page .mobile-bottom-nav {
  display: none;
}

body.catalog-page #t-header,
body.catalog-page #t-footer,
body.catalog-page .t450,
body.catalog-page .t450__overlay,
body.catalog-page #rec562746132,
body.catalog-page #rec562746134,
body.catalog-page #rec594496061,
body.catalog-page #rec595458858 {
  display: none !important;
}

@media (max-width: 980px) {
  body.catalog-page .container {
    width: calc(100vw - 32px);
    max-width: 760px;
  }

  body.catalog-page .hero {
    padding-top: 86px;
  }

  body.catalog-page .hero__grid {
    grid-template-columns: 1fr;
    width: calc(100vw - 32px);
    max-width: 760px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 28px;
  }

  body.catalog-page .hero__content,
  body.catalog-page .hero__visual {
    min-width: 0;
  }

  body.catalog-page .hero__visual {
    min-height: 330px;
  }

  body.catalog-page .hero__visual img {
    max-height: 320px;
  }

  body.catalog-page .product-layout,
  body.catalog-page .cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body.catalog-page,
  body.catalog-page #allrecords,
  body.catalog-page main,
  body.catalog-page .hero {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

  body.catalog-page .container {
    width: calc(100vw - 24px);
    max-width: 480px;
  }

  body.catalog-page .hero {
    padding: 70px 12px 18px !important;
  }

  body.catalog-page .hero__grid {
    width: calc(100vw - 52px) !important;
    max-width: 424px !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    gap: 18px;
    padding: 22px 13px;
    border-radius: 24px;
  }

  body.catalog-page .hero__content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.catalog-page .hero h1 {
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    font-size: 28px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  body.catalog-page .hero__lead {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  body.catalog-page .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
    min-width: 0;
    max-width: 100%;
  }

  body.catalog-page .btn {
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 42px;
    justify-self: start;
    padding: 0 16px;
    font-size: 13px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  body.catalog-page .hero__visual {
    display: none;
  }

  body.catalog-page .section {
    padding: 18px 0;
  }

  body.catalog-page .product-gallery,
  body.catalog-page .price-card,
  body.catalog-page .calculator-card,
  body.catalog-page .info-card,
  body.catalog-page .detail-card,
  body.catalog-page .cta-card {
    padding: 18px;
    border-radius: 22px;
  }

  body.catalog-page .product-gallery__stage {
    min-height: 300px;
    border-radius: 17px;
  }

  body.catalog-page .product-gallery__image {
    height: 300px;
  }

  body.catalog-page .product-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  body.catalog-page .product-gallery__thumb {
    flex: 0 0 64px;
    scroll-snap-align: start;
  }

  body.catalog-page .section__head--compact h2,
  body.catalog-page .cta-card h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  body.catalog-page .detail-grid,
  body.catalog-page .grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.catalog-page .price-table th,
  body.catalog-page .price-table td {
    font-size: 13px;
  }

  body.catalog-page .calculator-choice-grid,
  body.catalog-page .calculator-choice-grid--compact,
  body.catalog-page .calculator-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  body.catalog-page .hero h1 {
    font-size: 25px;
  }

  body.catalog-page .product-gallery__stage {
    min-height: 270px;
  }

  body.catalog-page .product-gallery__image {
    height: 270px;
  }
}
