@import url("sustable-design.css");

.su-site-header {
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(232, 232, 237, 0.78);
  background: rgba(255, 255, 255, 0.88);
}

.su-site-header--sticky {
  position: sticky;
  top: 0;
}

.su-site-header--blur {
  backdrop-filter: blur(18px);
}

.su-site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 32px;
}

.su-site-header__logo img,
.su-site-footer__logo img {
  display: block;
  width: auto;
  max-height: 36px;
}

.su-site-header__nav,
.su-site-footer__nav,
.su-site-footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.su-site-header__nav {
  flex: 1;
  justify-content: center;
  gap: 32px;
}

.su-site-header__nav a,
.su-site-footer__nav a,
.su-site-footer__social a {
  color: var(--su-text-soft);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none !important;
}

.su-site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.su-site-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: var(--su-radius-pill);
  padding: 9px 26px;
  background: var(--su-bg-soft);
  color: var(--su-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}

.su-site-header__cart-icon {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.su-site-header__cart-count {
  margin-right: 5px;
}

.su-site-header__cart-total {
  color: var(--su-muted);
  font-weight: 500;
}

.su-site-header__shop {
  gap: 8px;
  padding: 10px 22px;
  font-size: 14.5px;
}

.su-site-header__shop-icon {
  display: block;
  flex-shrink: 0;
}

.su-site-header__menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--su-radius-sm);
  background: var(--su-bg-soft);
  color: var(--su-text);
  cursor: pointer;
  flex-shrink: 0;
}

.su-site-header__mobile {
  display: none;
  flex-direction: column;
  padding: 6px 18px 16px;
  background: rgba(255, 255, 255, 0.98);
}

.su-site-header__mobile.is-open {
  display: flex;
}

.su-site-header__mobile a {
  border-bottom: 1px solid #f0f0f2;
  padding: 15px 6px;
  color: var(--su-text);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
}

.su-site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--su-border);
  background: #ffffff;
  padding: 56px 32px 36px;
}

.su-site-footer__top,
.su-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.su-site-footer__top {
  margin-bottom: 34px;
}

.su-site-footer__bottom {
  border-top: 1px solid #f0f0f2;
  padding-top: 26px;
}

.su-site-footer__copyright {
  color: var(--su-muted);
  font-size: 13px;
}

.su-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--su-hero-min, 620px);
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 24%), linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.93) 38%, rgba(255,255,255,0.55) 58%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0) 95%), var(--su-hero-bg);
  background-position: right center;
  background-size: cover;
}

.su-hero--center {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72)), var(--su-hero-bg);
  background-position: center;
  text-align: center;
}

.su-hero__inner {
  padding: 90px 32px 110px;
}

.su-hero__content {
  max-width: 720px;
}

.su-hero--center .su-hero__content {
  margin: 0 auto;
}

.su-hero__title {
  margin: 0 0 26px;
  color: var(--su-text);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.su-hero__highlight {
  color: var(--su-orange);
  font-weight: 700;
}

.su-hero__text {
  max-width: 520px;
  margin: 0 0 38px;
  color: var(--su-text-soft);
  font-size: 19px;
  line-height: 1.6;
}

.su-hero--center .su-hero__text {
  margin-left: auto;
  margin-right: auto;
}

.su-hero__actions,
.su-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.su-calculator-section {
  background: var(--su-bg-soft);
}

.su-calculator {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.su-calculator__controls,
.su-calculator__results {
  border-radius: var(--su-radius-xl);
  padding: 44px;
}

.su-calculator__controls {
  display: flex;
  flex-direction: column;
  gap: 34px;
  background: #ffffff;
}

.su-calculator__results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background: var(--su-black);
  color: #ffffff;
}

.su-calculator label {
  display: block;
  margin-bottom: 12px;
  color: var(--su-text);
  font-size: 15px;
  font-weight: 600;
}

.su-calculator__product-buttons {
  display: flex;
  gap: 8px;
}

.su-calculator__product {
  flex: 1;
  border: 1.5px solid #d2d2d7;
  border-radius: 14px;
  background: #ffffff;
  color: var(--su-text);
  cursor: pointer;
  padding: 13px 8px;
  text-align: center;
}

.su-calculator__product[aria-pressed="true"] {
  border-color: var(--su-ink);
  background: var(--su-ink);
  color: #ffffff;
}

.su-calculator__product-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.su-calculator__product-sub {
  display: block;
  margin-top: 2px;
  color: var(--su-muted);
  font-size: 12px;
}

.su-calculator__product[aria-pressed="true"] .su-calculator__product-sub {
  color: rgba(255, 255, 255, 0.72);
}

.su-calculator__range-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.su-calculator__range-value {
  color: var(--su-text);
  font-size: 22px;
  font-weight: 700;
}

.su-calculator input[type="range"] {
  width: 100%;
  accent-color: var(--su-ink);
  cursor: pointer;
}

.su-calculator select {
  width: 100%;
  border: 1px solid #d2d2d7;
  border-radius: var(--su-radius-sm);
  background: #ffffff;
  color: var(--su-text);
  cursor: pointer;
  font-size: 15px;
  padding: 14px 16px;
}

.su-calculator__note {
  margin: 0;
  color: var(--su-muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.su-calculator__result-label {
  margin-bottom: 8px;
  color: var(--su-muted);
  font-size: 14px;
  font-weight: 500;
}

.su-calculator__big {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.su-calculator__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
}

.su-calculator__stat-value {
  font-size: 21px;
  font-weight: 700;
}

.su-calculator__stat-label {
  margin-top: 4px;
  color: var(--su-muted);
  font-size: 12.5px;
}

.su-benefit-card {
  min-height: 100%;
  padding: 34px;
}

.su-benefit-card__icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--su-text);
}

.su-benefit-card h3,
.su-app-row h3,
.su-dealer-card h3,
.su-product-card h3,
.su-contact-card h3 {
  margin: 0 0 8px;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
}

.su-benefit-card p,
.su-dealer-card p,
.su-product-card p,
.su-contact-card p {
  margin: 0;
  color: var(--su-muted-2);
  font-size: 14.5px;
  line-height: 1.65;
}

.su-section.su-benefits.su-section--soft .su-benefit-card {
  background: #ffffff;
}

.su-featured-product__inner,
.su-app-preview__inner,
.su-info-hero__inner,
.su-business-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.su-featured-product--image-right .su-featured-product__media {
  order: 2;
}

.su-info-hero__inner {
  align-items: stretch;
}

.su-featured-product__media,
.su-info-hero__media,
.su-product-card__image,
.su-info-row__media {
  overflow: hidden;
  border-radius: var(--su-radius-xl);
  background: #ffffff;
}

.su-featured-product__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.su-info-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--su-bg-soft);
  min-height: 320px;
  padding: 40px;
}

.su-featured-product__media img,
.su-info-hero__media img,
.su-info-row__media img,
.su-product-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.su-info-hero__media img {
  width: auto;
  max-width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.su-info-hero--image-direct-rounding .su-info-hero__media {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.su-info-hero--image-direct-rounding .su-info-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: var(--su-radius-xl);
  object-fit: cover;
}

@media (min-width: 1001px) {
  .su-info-hero__media {
    position: relative;
    min-height: 0;
  }

  .su-info-hero__media img {
    position: absolute;
    inset: 40px;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    max-height: none;
  }

  .su-info-hero--image-direct-rounding .su-info-hero__media img {
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

.su-featured-product__price,
.su-product-card__price {
  color: var(--su-text);
  font-size: 28px;
  font-weight: 700;
}

.su-featured-product__price {
  margin: 0 0 30px;
}

.su-app-preview {
  background: var(--su-black);
  color: #ffffff;
}

.su-app-preview__features {
  display: flex;
  flex-direction: column;
}

.su-app-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.su-app-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.su-app-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
}

.su-app-row__icon i,
.su-app-row__icon img,
.su-app-row__icon svg {
  display: block;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.su-app-row__icon svg,
.su-app-row__icon svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.su-app-row__icon svg {
  stroke-width: 1.8;
}

.su-app-row__icon svg [stroke]:not([stroke="none"]) {
  stroke: currentColor;
}

.su-app-row h3 {
  color: #ffffff;
  font-size: 15px;
}

.su-app-row p {
  margin: 0;
  color: var(--su-muted);
  font-size: 13.5px;
}

.su-phone-frame {
  position: relative;
  width: min(300px, 100%);
  margin: 0 auto;
  border-radius: 48px;
  background: var(--su-black);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 0 0 2px rgba(255,255,255,0.07);
  padding: 11px;
}

.su-phone-frame::before {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: #000000;
  content: "";
  transform: translateX(-50%);
}

.su-phone-frame img {
  display: block;
  width: 100%;
  border-radius: 38px;
}

.su-dealer-teaser__cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.su-dealer-card {
  min-width: 290px;
  max-width: 360px;
  border-radius: var(--su-radius-lg);
  background: var(--su-bg-soft);
  padding: 26px 34px;
  text-align: left;
}

.su-video-frame {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--su-radius-xl);
  background: var(--su-black);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.su-video-frame video {
  display: block;
  width: 100%;
}

.su-info-hero--dark {
  background: var(--su-black);
  color: #ffffff;
}

.su-info-hero--soft {
  background: var(--su-bg-soft);
}

.su-info-hero--centered .su-info-hero__inner {
  display: block;
  max-width: 860px;
  text-align: center;
}

.su-info-hero--centered .su-info-hero__content {
  margin: 0 auto;
}

.su-info-hero--centered .su-section-head--left {
  margin: 0 auto 54px;
  text-align: center;
}

.su-info-hero--centered .su-actions {
  display: block;
}

.su-info-rows__list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.su-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.su-info-row--image-right .su-info-row__media {
  order: 2;
}

.su-info-row__media img {
  height: 340px;
  object-fit: cover;
}

.su-info-row__media--contain img {
  object-fit: contain;
}

.su-info-row h3 {
  margin: 0 0 16px;
  color: var(--su-text);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.su-info-row__text {
  color: var(--su-muted-2);
  font-size: 15.5px;
  line-height: 1.75;
}

.su-cta-banner__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: var(--su-radius-xl);
  padding: 50px;
}

.su-cta-banner--light .su-cta-banner__box {
  background: var(--su-bg-soft);
}

.su-cta-banner--dark .su-cta-banner__box {
  background: var(--su-black);
  color: #ffffff;
}

.su-cta-banner--centered .su-cta-banner__box {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.su-cta-banner h2,
.su-business-hero h1,
.su-contacts h2 {
  margin: 0 0 14px;
  color: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.su-cta-banner h2 {
  font-size: 30px;
}

.su-cta-banner p {
  margin: 0;
  color: var(--su-muted-2);
  font-size: 15px;
  line-height: 1.6;
}

.su-cta-banner--dark p {
  color: var(--su-muted);
}

.su-cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.su-cta-banner--split .su-cta-banner__actions {
  flex-wrap: nowrap;
}

.su-cta-banner--split .su-cta-banner__actions .su-button {
  flex: 0 0 auto;
}

.su-cta-banner--dark .su-button--outline {
  color: #ffffff !important;
}

.elementor-mobile-align-center.elementor-widget-mobile__width-inherit .elementor-button {
  width: 100%;
}

.su-cta-banner--centered .su-cta-banner__actions {
  justify-content: center;
  margin-top: 28px;
}

.su-stats__grid {
  text-align: center;
}

.su-stat__value {
  color: var(--su-text);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.su-stat__label {
  margin-top: 6px;
  color: var(--su-muted-2);
  font-size: 14.5px;
}

.su-blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  margin-bottom: 24px;
  color: var(--su-text) !important;
  text-decoration: none !important;
}

.su-blog-card,
.su-product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--su-text) !important;
  text-decoration: none !important;
}

.su-product-grid {
  min-height: 70vh;
  padding: 80px 32px 120px;
}

.su-product-grid .su-section-head {
  margin-bottom: 56px;
}

.su-product-grid .su-heading {
  font-size: 46px;
}

.su-product-grid .su-text {
  margin-top: 16px;
  line-height: 1.4;
}

.su-blog-card img,
.su-blog-featured img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--su-bg-soft);
}

.su-blog-featured img {
  height: 380px;
}

.su-blog-card__body,
.su-blog-featured__body,
.su-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}

.su-product-card__body {
  gap: 14px;
  padding: 30px;
}

.su-blog-featured__body {
  justify-content: center;
  padding: 44px;
}

.su-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: var(--su-radius-pill);
  background: var(--su-bg-soft);
  color: var(--su-text-soft);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
}

.su-product-card .su-pill {
  font-size: 12px;
  padding: 6px 13px;
}

.su-blog-meta {
  color: var(--su-muted);
  font-size: 13px;
}

.su-blog-card h3,
.su-blog-featured h3 {
  margin: 0;
  color: var(--su-text);
  font-weight: 700;
  line-height: 1.35;
}

.su-blog-card h3 {
  font-size: 17.5px;
}

.su-blog-featured h3 {
  font-size: 25px;
}

.su-blog-card p,
.su-blog-featured p {
  margin: 0;
  color: var(--su-muted-2);
  font-size: 14.5px;
  line-height: 1.65;
}

.su-read-more {
  margin-top: auto;
  color: var(--su-text);
  font-size: 14px;
  font-weight: 600;
}

.su-faq-groups {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.su-faq-group h2 {
  margin: 0 0 16px;
  color: var(--su-text);
  font-size: 19px;
  font-weight: 700;
}

.su-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.su-faq-item {
  overflow: hidden;
  border-radius: var(--su-radius-md);
  background: var(--su-bg-soft);
}

.su-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  color: var(--su-text);
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  list-style: none;
}

.su-faq-item summary::-webkit-details-marker {
  display: none;
}

.su-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 500;
}

.su-faq-item[open] summary::after {
  content: "-";
}

.su-faq-answer {
  padding: 0 26px 22px;
  color: var(--su-muted-2);
  font-size: 14.5px;
  line-height: 1.75;
}

.su-product-card__image {
  height: 270px;
  border-radius: 0;
  background: var(--su-bg-soft);
}

.su-product-card__image img {
  height: 100%;
  object-fit: cover;
}

.su-product-card__title {
  margin: 0;
  color: var(--su-text);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.su-product-card__title a {
  color: inherit !important;
  text-decoration: none !important;
}

.su-product-card p {
  font-size: 14px;
  line-height: 1.6;
}

.su-product-card__description {
  position: relative;
  max-height: 7.2em;
  overflow: hidden;
}

.su-product-card__description.is-overflowing::after {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 3.5em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff 42%);
  content: "...";
  text-align: right;
}

.su-product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}

.su-product-card__price {
  font-size: 24px;
}

.su-product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.su-product-card .su-button,
.su-product-detail__add .su-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  text-decoration: none !important;
  border-radius: var(--su-radius-pill) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.su-product-card .su-button {
  flex: 1 !important;
  padding: 11px 18px !important;
  font-size: 14px !important;
}

.su-product-detail__add .su-button {
  flex: 1 !important;
  padding: 14px 28px !important;
  font-size: 16px !important;
}

.su-product-card .su-button.su-button--dark,
.su-product-card .su-button.add_to_cart_button,
.su-product-detail__add .su-button.su-button--dark,
.su-product-detail__add .su-button.add_to_cart_button {
  border: 0 !important;
  background: var(--su-ink) !important;
  color: #ffffff !important;
}

.su-product-card .su-button.su-button--dark:hover,
.su-product-card .su-button.add_to_cart_button:hover,
.su-product-detail__add .su-button.su-button--dark:hover,
.su-product-detail__add .su-button.add_to_cart_button:hover {
  border: 0 !important;
  background: var(--su-ink) !important;
  color: #ffffff !important;
  transform: none !important;
}

.su-product-card .add_to_cart_button.added::after,
.su-product-card .add_to_cart_button.loading::after {
  display: none !important;
}

.su-product-card .added_to_cart.wc-forward {
  display: none !important;
}

.su-product-card .su-button--outline {
  flex: 0 0 auto !important;
  padding: 10px 18px !important;
  border: 1.5px solid #c7c7cc !important;
  background: transparent !important;
  color: var(--su-text) !important;
}

.su-product-card .su-button--outline:hover {
  background: transparent !important;
  color: var(--su-text) !important;
}

.su-product-grid__note {
  margin: 32px 0 0;
  color: var(--su-muted);
  font-size: 12.5px;
  text-align: center;
}

.su-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 40px);
  border-radius: var(--su-radius-pill);
  background: var(--su-ink);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 26px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.su-toast svg {
  flex: 0 0 auto;
}

.su-toast a {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: underline !important;
}

.su-product-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.su-product-highlights__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.su-product-highlights__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--su-text);
  font-size: 14.5px;
}

.su-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  color: var(--su-text);
  flex: 0 0 auto;
}

.su-product-highlights__info {
  border-radius: 14px;
  background: var(--su-bg-soft);
  color: var(--su-text-soft);
  font-size: 13.5px;
  line-height: 1.6;
  padding: 14px 18px;
}

.su-tech-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--su-border);
  font-size: 14px;
}

.su-tech-table div {
  border-bottom: 1px solid var(--su-border);
  padding: 11px 0;
}

.su-tech-table div:nth-child(odd) {
  color: var(--su-muted);
}

.su-tech-table div:nth-child(even) {
  color: var(--su-text);
  font-weight: 600;
}

.su-product-detail {
  padding: 50px 32px 120px;
  background: var(--su-bg);
}

.su-product-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--su-muted);
  font-size: 13.5px;
}

.su-product-detail__breadcrumb a {
  color: var(--su-muted);
  text-decoration: none !important;
}

.su-product-detail__breadcrumb-current {
  color: var(--su-text);
  font-weight: 600;
}

.su-product-detail__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.su-product-detail__media {
  overflow: hidden;
  border-radius: var(--su-radius-xl);
  background: var(--su-bg-soft);
  height: 480px;
}

.su-product-detail__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.su-product-detail__title {
  margin: 0 0 14px;
  color: var(--su-text);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.su-product-detail__price {
  margin-bottom: 6px;
  color: var(--su-text);
  font-size: 30px;
  font-weight: 700;
}

.su-product-detail__price ins {
  text-decoration: none;
}

.su-product-detail__price-note {
  margin-bottom: 26px;
  color: var(--su-muted);
  font-size: 13px;
}

.su-product-detail__description {
  margin: 0 0 26px;
  color: var(--su-muted-2);
  font-size: 15px;
  line-height: 1.7;
}

.su-product-detail__content .su-product-highlights__list {
  margin: 0 0 30px;
}

.su-product-detail__add {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 18px;
}

.su-quantity-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--su-border-strong);
  border-radius: var(--su-radius-pill);
  overflow: hidden;
  flex: 0 0 auto;
}

.su-quantity-stepper__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  color: var(--su-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.su-quantity-stepper__value {
  min-width: 36px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--su-text);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  user-select: none;
}

.su-product-detail__add .su-button {
  flex: 1;
  padding: 14px 28px;
  border: 0;
  font-size: 16px;
}

.su-product-detail__info {
  border-radius: 14px;
  background: var(--su-bg-soft);
  color: var(--su-text-soft);
  font-size: 13.5px;
  line-height: 1.6;
  padding: 14px 18px;
}

.su-product-detail__technical {
  margin-top: 36px;
}

.su-product-detail__technical h2 {
  margin: 0 0 14px;
  color: var(--su-text);
  font-size: 18px;
  font-weight: 700;
}

.su-business-hero {
  background: var(--su-black);
  color: #ffffff;
  text-align: center;
}

.su-business-hero h1 {
  font-size: 52px;
  line-height: 1.12;
}

.su-business-hero__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 42px;
}

.su-business-hero__badges span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--su-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
}

.su-business-hero .su-button {
  font-size: 16px;
}

.su-business-hero .su-button--outline {
  color: #ffffff !important;
}

.su-contacts__intro {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.su-contacts h2 {
  font-size: 34px;
}

.su-contact-card {
  border-radius: var(--su-radius-xl);
  background: var(--su-bg-soft);
  padding: 38px;
  text-align: center;
}

.su-contact-card img {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
}

.su-contact-card__links {
  margin: 0 0 22px;
  color: var(--su-text-soft);
  font-size: 14.5px;
  line-height: 1.9;
}

.su-contact-card__links a {
  color: var(--su-text);
  font-weight: 600;
}

.su-contact-card__links a[href^="mailto:"] {
  text-decoration: underline;
}

.su-checkout {
  padding: 80px 32px 120px;
  background: var(--su-bg-soft);
}

.su-checkout__title {
  margin: 0 0 10px;
  color: var(--su-text);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.su-checkout__progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.su-checkout__progress-label {
  color: var(--su-text);
  font-size: 14.5px;
  font-weight: 600;
}

.su-checkout__progress-note {
  color: var(--su-muted);
  font-size: 12.5px;
}

.su-checkout__progress-bar {
  height: 4px;
  margin-bottom: 34px;
  overflow: hidden;
  border-radius: var(--su-radius-pill);
  background: var(--su-border);
}

.su-checkout__progress-fill {
  width: 33.34%;
  height: 100%;
  border-radius: var(--su-radius-pill);
  background: var(--su-ink);
  transition: width 0.3s ease;
}

.su-checkout__empty {
  border-radius: var(--su-radius-xl);
  background: #ffffff;
  padding: 60px 40px;
  text-align: center;
}

.su-checkout__empty p {
  margin: 0 0 24px;
  color: var(--su-muted-2);
  font-size: 16px;
}

.su-checkout__card {
  border-radius: var(--su-radius-xl);
  background: #ffffff;
  padding: 40px;
}

.su-checkout__card .woocommerce {
  color: var(--su-text);
}

.su-checkout__card .woocommerce-checkout,
.su-checkout__card .woocommerce-checkout .col2-set,
.su-checkout__card .woocommerce-checkout .col-1,
.su-checkout__card .woocommerce-checkout .col-2,
.su-checkout__card .woocommerce-checkout .woocommerce-billing-fields,
.su-checkout__card .woocommerce-checkout .woocommerce-shipping-fields,
.su-checkout__card .woocommerce-checkout .woocommerce-additional-fields,
.su-checkout__card .woocommerce-checkout #customer_details {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.su-checkout__card .woocommerce-billing-fields h3,
.su-checkout__card .woocommerce-shipping-fields h3,
.su-checkout__card #order_review_heading,
.su-checkout__card .woocommerce-checkout-payment h3,
.su-checkout__card .woocommerce-additional-fields h3 {
  margin: 0 0 24px;
  color: var(--su-text);
  font-size: 21px;
  font-weight: 700;
}

.su-checkout__card .woocommerce-billing-fields__field-wrapper,
.su-checkout__card .woocommerce-shipping-fields__field-wrapper,
.su-checkout__card .woocommerce-additional-fields__field-wrapper,
.su-checkout__card .woocommerce .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.su-checkout__card .woocommerce .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.su-checkout__card .woocommerce .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.su-checkout__card .form-row,
.su-checkout__card .woocommerce form .form-row,
.su-checkout__card .woocommerce .woocommerce-checkout .form-row {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.su-checkout__card .form-row label,
.su-checkout__card .woocommerce form .form-row label,
.su-checkout__card .woocommerce .woocommerce-checkout .form-row label {
  display: block !important;
  margin-bottom: 8px !important;
  color: var(--su-text) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.su-checkout__card .woocommerce-billing-fields > h3,
.su-checkout__card #order_review_heading {
  display: none !important;
}

.su-checkout__card .woocommerce-checkout .form-row#billing_address_2_field,
.su-checkout__card .woocommerce-checkout .form-row#billing_state_field,
.su-checkout__card .woocommerce-checkout .form-row#billing_phone_field,
.su-checkout__card .woocommerce-checkout .form-row#billing_company_field,
.su-checkout__card .woocommerce-checkout .form-row#shipping_address_2_field,
.su-checkout__card .woocommerce-checkout .form-row#shipping_state_field,
.su-checkout__card .woocommerce-checkout .form-row#shipping_phone_field,
.su-checkout__card .woocommerce-checkout .form-row#shipping_company_field,
.su-checkout__card .woocommerce-checkout .woocommerce-account-fields,
.su-checkout__card .woocommerce-checkout .woocommerce-additional-fields,
.su-checkout__card .woocommerce-checkout .woocommerce-newsletter {
  display: none !important;
}

.su-checkout__card .form-row,
.su-checkout__card .woocommerce form .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.su-checkout__card .form-row-wide,
.su-checkout__card .form-row#billing_email_field,
.su-checkout__card .form-row#billing_address_1_field,
.su-checkout__card .form-row#shipping_address_1_field,
.su-checkout__card .form-row#order_comments_field {
  grid-column: 1 / -1 !important;
}

.su-checkout__card .form-row label,
.su-checkout__card .woocommerce form .form-row label {
  display: block !important;
  margin-bottom: 8px !important;
  color: var(--su-text) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.su-checkout__card .form-row .required {
  color: #d70015;
}

.su-checkout__card .woocommerce .woocommerce-checkout .form-row .input-text,
.su-checkout__card .woocommerce .woocommerce-checkout .form-row input[type="text"],
.su-checkout__card .woocommerce .woocommerce-checkout .form-row input[type="email"],
.su-checkout__card .woocommerce .woocommerce-checkout .form-row input[type="tel"],
.su-checkout__card .woocommerce .woocommerce-checkout .form-row input[type="number"],
.su-checkout__card .woocommerce .woocommerce-checkout .form-row input[type="password"],
.su-checkout__card .woocommerce .woocommerce-checkout .form-row textarea,
.su-checkout__card .woocommerce .woocommerce-checkout .form-row select,
.su-checkout__card .woocommerce-checkout .form-row select {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  border: 1px solid #d2d2d7 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: var(--su-text) !important;
  font-size: 14.5px !important;
  font-family: var(--su-font) !important;
  line-height: 1.4 !important;
  padding: 14px 18px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.su-checkout__card .woocommerce .woocommerce-checkout .form-row .input-text:focus,
.su-checkout__card .woocommerce .woocommerce-checkout .form-row input:focus,
.su-checkout__card .woocommerce .woocommerce-checkout .form-row textarea:focus,
.su-checkout__card .woocommerce .woocommerce-checkout .form-row select:focus,
.su-checkout__card .woocommerce-checkout .form-row .input-text:focus,
.su-checkout__card .woocommerce-checkout .form-row input:focus,
.su-checkout__card .woocommerce-checkout .form-row textarea:focus,
.su-checkout__card .woocommerce-checkout .form-row select:focus {
  border-color: var(--su-ink) !important;
  box-shadow: none !important;
  outline: none !important;
}

.su-checkout__card .woocommerce-input-wrapper {
  display: block;
}

.su-checkout__card .woocommerce-checkout-payment {
  background: transparent !important;
  padding: 0 !important;
}

.su-checkout__card .woocommerce-checkout-payment .payment_methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.su-checkout__card .woocommerce-checkout-payment .payment_methods > li {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid #d2d2d7;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  background: #ffffff;
}

.su-checkout__card .woocommerce-checkout-payment .payment_methods input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--su-ink);
}

.su-checkout__card .woocommerce-checkout-payment .payment_box {
  margin-top: 12px;
  padding: 0;
  background: transparent;
  color: var(--su-muted-2);
  font-size: 13.5px;
}

.su-checkout__card .woocommerce-checkout-review-order-table {
  width: 100%;
  margin: 0 0 16px;
  border: 0;
}

.su-checkout__card .woocommerce-checkout-review-order-table th,
.su-checkout__card .woocommerce-checkout-review-order-table td {
  border: 0;
  border-bottom: 1px solid #f0f0f2;
  padding: 12px 0;
  font-size: 14.5px;
  vertical-align: middle;
}

.su-checkout__card .woocommerce-checkout-review-order-table th {
  font-weight: 600;
}

.su-checkout__card .woocommerce-checkout-review-order-table td.product-total,
.su-checkout__card .woocommerce-checkout-review-order-table .cart-subtotal td,
.su-checkout__card .woocommerce-checkout-review-order-table .order-total td {
  text-align: right;
  font-weight: 700;
}

.su-checkout__card .woocommerce-checkout-review-order-table .order-total th,
.su-checkout__card .woocommerce-checkout-review-order-table .order-total td {
  border-bottom: 0;
  font-size: 17px;
  font-weight: 700;
}

.su-checkout__card .woocommerce-terms-and-conditions-wrapper {
  margin: 18px 0;
  color: var(--su-text-soft);
  font-size: 13.5px;
}

.su-checkout__card .woocommerce-info,
.su-checkout__card .woocommerce-form-coupon-toggle,
.su-checkout__card .woocommerce-form-coupon {
  display: none !important;
}

.su-checkout__card .shipping_address {
  display: none;
}

.su-checkout__card .woocommerce-shipping-fields {
  margin-top: 14px;
}

.su-checkout__card .woocommerce-shipping-fields h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.su-checkout__card .woocommerce-shipping-fields h3 label {
  display: flex !important;
  align-items: center;
  gap: 14px;
  border: 1.5px solid #d2d2d7;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  background: #ffffff;
}

.su-checkout__card .woocommerce-shipping-fields .form-row label {
  display: block !important;
  margin-bottom: 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  cursor: default !important;
  background: transparent !important;
  color: var(--su-text) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.su-checkout__card .woocommerce-shipping-fields input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 4px !important;
  accent-color: var(--su-ink);
}

.su-checkout__card #place_order,
.su-checkout__card .button.alt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: var(--su-radius-pill);
  background: var(--su-ink);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 30px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.su-checkout__card #place_order:hover,
.su-checkout__card .button.alt:hover {
  transform: translateY(-1px);
}

.su-checkout__step-nav {
  display: none;
  justify-content: space-between;
  margin-top: 30px;
}

.su-checkout[data-su-checkout-stepped="1"] .su-checkout__step-nav {
  display: flex;
}

.su-checkout__step-nav .su-button--ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--su-muted);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 0;
  cursor: pointer;
}

.su-checkout__step-nav .su-button--ghost:disabled {
  opacity: 0;
  pointer-events: none;
}

.su-checkout__step-nav .su-button {
  padding: 13px 28px;
  font-size: 15px;
}

.su-checkout__card[data-su-stepped-card="1"] .woocommerce-billing-fields,
.su-checkout__card[data-su-stepped-card="1"] .woocommerce-shipping-fields,
.su-checkout__card[data-su-stepped-card="1"] .woocommerce-additional-fields {
  display: block;
}

.su-checkout__card[data-su-stepped-card="1"] .woocommerce-checkout-review-order,
.su-checkout__card[data-su-stepped-card="1"] #order_review_heading {
  display: none;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-1 .woocommerce-billing-fields,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-1 .woocommerce-shipping-fields,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-1 .woocommerce-additional-fields {
  display: block;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-1 .woocommerce-checkout-review-order,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-1 #order_review_heading {
  display: none;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-2 .woocommerce-billing-fields,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-2 .woocommerce-shipping-fields,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-2 .woocommerce-additional-fields {
  display: none;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-2 .woocommerce-checkout-review-order,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-2 #order_review_heading {
  display: block;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-2 .woocommerce-checkout-review-order-table {
  display: none;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-3 .woocommerce-billing-fields,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-3 .woocommerce-shipping-fields,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-3 .woocommerce-additional-fields {
  display: none;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-3 .woocommerce-checkout-review-order,
.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-3 #order_review_heading {
  display: block;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-3 .woocommerce-checkout-payment {
  display: none;
}

.su-checkout__card[data-su-stepped-card="1"].su-checkout--step-3 .su-checkout__step-nav .su-button--dark::after {
  content: '';
}

.su-cart {
  padding: 80px 32px 120px;
  background: var(--su-bg-soft);
}

.su-cart__title {
  margin: 0 0 36px;
  color: var(--su-text);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.su-cart__empty {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--su-radius-xl);
  background: #ffffff;
  padding: 70px 40px;
  text-align: center;
}

.su-cart__empty p {
  margin: 0 0 26px;
  color: var(--su-muted-2);
  font-size: 17px;
}

.su-cart__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  align-items: start;
}

.su-cart__items {
  border-radius: var(--su-radius-xl);
  background: #ffffff;
  padding: 10px 30px;
}

.su-cart__row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #f0f0f2;
}

.su-cart__row:last-child {
  border-bottom: 0;
}

.su-cart__thumb {
  overflow: hidden;
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  border-radius: 16px;
  background: var(--su-bg-soft);
}

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

.su-cart__name {
  flex: 1;
  min-width: 0;
}

.su-cart__product-name {
  margin: 0 0 4px;
  color: var(--su-text);
  font-size: 15.5px;
  font-weight: 700;
}

.su-cart__unit-price {
  color: var(--su-muted);
  font-size: 13.5px;
}

.su-cart__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid #d2d2d7;
  border-radius: var(--su-radius-pill);
  overflow: hidden;
  flex: 0 0 auto;
}

.su-cart__qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border: 0;
  background: transparent;
  color: var(--su-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.su-cart__qty-value {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  user-select: none;
}

.su-cart__line-total {
  min-width: 90px;
  text-align: right;
  color: var(--su-text);
  font-size: 15.5px;
  font-weight: 700;
}

.su-cart__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 0;
  background: transparent;
  color: var(--su-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.su-cart__summary {
  border-radius: var(--su-radius-xl);
  background: #ffffff;
  padding: 32px;
}

.su-cart__summary h2 {
  margin: 0 0 20px;
  color: var(--su-text);
  font-size: 19px;
  font-weight: 700;
}

.su-cart__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--su-muted-2);
  font-size: 14.5px;
}

.su-cart__summary-row--bordered {
  border-bottom: 1px solid #f0f0f2;
  margin-bottom: 12px;
}

.su-cart__summary-amount {
  color: var(--su-text);
  font-weight: 600;
}

.su-cart__summary-row--total {
  padding: 16px 0 22px;
  color: var(--su-text);
  font-size: 17px;
  font-weight: 700;
}

.su-cart__checkout {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15.5px;
}

@media (max-width: 1000px) {
  .su-site-header__nav {
    display: none;
  }

  .su-site-header__menu-button {
    display: inline-flex;
  }

  .su-calculator,
  .su-featured-product__inner,
  .su-app-preview__inner,
  .su-info-hero__inner,
  .su-info-row,
  .su-business-intro,
  .su-blog-featured,
  .su-product-detail__grid {
    grid-template-columns: 1fr;
  }

  .su-product-detail__media {
    height: 420px;
  }

  .su-featured-product--image-right .su-featured-product__media,
  .su-info-row--image-right .su-info-row__media {
    order: 0;
  }
}

@media (max-width: 760px) {
  .su-site-header__inner {
    padding: 10px 18px;
  }

  .su-site-footer {
    padding: 42px 20px 30px;
  }

  .su-hero {
    min-height: 0;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.80)), var(--su-hero-bg);
    background-position: center;
  }

  .su-hero__inner {
    padding: 56px 20px 64px;
  }

  .su-hero__title {
    font-size: 34px;
  }

  .su-hero__text {
    font-size: 17px;
  }

  .su-product-grid,
  .su-product-detail {
    padding: 60px 20px;
  }

  .su-product-grid .su-heading {
    font-size: 34px;
    line-height: 1.15;
  }

  .su-calculator__controls,
  .su-calculator__results,
  .su-cta-banner__box {
    padding: 30px;
  }

  .su-calculator__stats {
    gap: 12px;
  }

  .su-calculator__big {
    font-size: 44px;
  }

  .su-info-rows__list {
    gap: 48px;
  }

  .su-info-row__media img {
    height: 300px;
  }

  .su-cta-banner__box {
    display: block;
    text-align: center;
  }

  .su-cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin-top: 26px;
  }

  .su-cta-banner__actions .su-button {
    width: 100%;
  }

  .su-product-detail__media {
    height: 340px;
  }

  .su-product-detail__title {
    font-size: 28px;
  }

  .su-checkout {
    padding: 60px 20px;
  }

  .su-checkout__title {
    font-size: 34px;
  }

  .su-checkout__card {
    padding: 30px;
  }

  .su-checkout__card .woocommerce-billing-fields__field-wrapper,
  .su-checkout__card .woocommerce-shipping-fields__field-wrapper,
  .su-checkout__card .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .su-checkout__card .form-row#billing_email_field,
  .su-checkout__card .form-row#billing_address_1_field,
  .su-checkout__card .form-row#shipping_address_1_field,
  .su-checkout__card .form-row#order_comments_field {
    grid-column: auto;
  }

  .su-cart__grid {
    grid-template-columns: 1fr;
  }

  .su-cart__row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .su-cart__name {
    flex: 1 1 calc(100% - 120px);
  }

  .su-cart__line-total {
    flex: 1;
    text-align: left;
    margin-left: 114px;
  }

  .su-cart__remove {
    margin-left: auto;
  }

  .su-product-detail__price {
    font-size: 26px;
  }

  .su-product-detail__add {
    flex-direction: column;
  }

  .su-quantity-stepper {
    width: 100%;
    justify-content: center;
  }

  .su-quantity-stepper__input {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .su-site-header__cart-total {
    display: none;
  }

  .su-hero__title {
    font-size: 28px;
  }

  .su-product-grid .su-heading {
    font-size: 28px;
  }

  .su-calculator__product-buttons,
  .su-calculator__stats,
  .su-product-card__actions {
    grid-template-columns: 1fr;
  }

  .su-calculator__product-buttons {
    flex-direction: column;
  }

  .su-calculator__stats {
    display: grid;
  }

  .su-tech-table {
    grid-template-columns: 1fr;
  }

  .su-tech-table div:nth-child(odd) {
    border-bottom: 0;
    padding-bottom: 3px;
  }
}
