@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --page-bg: #f8f1ea;
  --paper: rgb(255 251 247 / 84%);
  --paper-strong: rgb(255 252 249 / 94%);
  --ink: #2e3551;
  --muted: #667089;
  --accent: #8d6fa7;
  --accent-deep: #715884;
  --sand: #dfc4ab;
  --sand-deep: #b88b6d;
  --line: rgb(141 111 167 / 20%);
  --shadow: none;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html {
  min-height: 100%;
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  color: var(--ink);
  font-family: var(--font-body);
  background: linear-gradient(180deg, #faf2ea 0%, #f5e6da 45%, #eeddd0 100%);
  background-repeat: no-repeat;
}

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

.shop-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px) 0 46px;
}

.shop-hero {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(24px, 4vw, 40px);
  text-align: center;
}

.brand-link,
.back-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 249 244 / 0.74);
  box-shadow: none;
}

.back-link--large {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

h1 {
  max-width: 940px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.05;
}

h1 span,
.product-title-accent {
  color: var(--accent-deep);
}

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

.category-button {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgb(255 252 249 / 92%), rgb(255 246 240 / 76%));
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.category-button:hover {
  transform: translateY(-3px);
  border-color: rgb(141 111 167 / 34%);
  box-shadow: none;
}

.category-button span,
.category-button strong {
  display: block;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.category-button strong {
  font-size: clamp(21px, 2.4vw, 30px);
}

.catalog-head {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  text-align: center;
}

.catalog-head h1 {
  font-size: clamp(32px, 4.5vw, 58px);
}

.catalog-head p,
.catalog-description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  text-align: center;
}

.catalog-description {
  margin-bottom: 28px;
}

.catalog-schedule-link {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.schedule-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 12px 26px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-deep), var(--accent));
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.schedule-button:hover {
  transform: translateY(-2px);
  box-shadow: none;
  filter: saturate(1.06);
}

.schedule-button:focus-visible {
  outline: 3px solid rgb(141 111 167 / 0.35);
  outline-offset: 4px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  content-visibility: auto;
  contain-intrinsic-size: 430px 520px;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgb(141 111 167 / 34%);
  box-shadow: none;
}

.product-card:focus-visible {
  outline: 3px solid rgb(141 111 167 / 34%);
  outline-offset: 4px;
}

.product-photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-sizing: border-box;
  padding: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  border: 1px dashed rgb(141 111 167 / 34%);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgb(255 252 249 / 84%), rgb(246 235 228 / 74%));
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  border-radius: 12px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-info h2 {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  margin: 0;
  flex-grow: 1;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.product-info h2::before {
  width: 42px;
  height: 57px;
  content: "";
  background: url("../assets/images/pdf-icon.png") center / contain no-repeat;
}


.class-pricing-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-schedule-link {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.class-pricing-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.class-pricing-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

.footer {
  padding: 34px 0 8px;
  text-align: center;
}

.site-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px 60px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.site-footer-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 60px;
}

.site-footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer p a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer nav a {
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-rights {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  text-decoration: none;
}

.footer-brand__icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 18px;
  color: #fff6e8;
  background:
    radial-gradient(circle at 33% 26%, rgb(255 255 255 / 25%), transparent 36%),
    linear-gradient(145deg, #f09a42, #ce612d);
  box-shadow: 0 10px 20px rgb(206 97 45 / 24%);
  transition: transform 0.2s ease;
}

.footer-brand:hover .footer-brand__icon,
.footer-brand:focus-visible .footer-brand__icon {
  transform: translateY(-2px);
}

.footer-brand:focus-visible {
  outline: 3px solid color-mix(in srgb, #d77037 74%, #fff);
  outline-offset: 4px;
  border-radius: 12px;
}

.footer-brand__icon svg {
  width: 42px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-brand__loaf {
  fill: rgb(255 230 191 / 16%);
}

.footer-brand__copy {
  display: flex;
  flex-direction: column;
}

.footer-brand__wordmark {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand__wordmark b {
  font-style: normal;
  background: linear-gradient(145deg, #f09a42, #ce612d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand__wordmark i {
  font-style: normal;
  color: #d77037;
}

.footer-brand__tagline {
  margin-top: 6px;
  color: color-mix(in srgb, #d77037 34%, #5d6980);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .site-footer-columns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }

  .footer-brand {
    margin-left: 0;
  }

  .footer-brand__icon {
    width: 46px;
    border-radius: 15px;
  }

  .footer-brand__icon svg {
    width: 34px;
  }

  .footer-brand__wordmark {
    font-size: 22px;
  }

  .footer-brand__tagline {
    font-size: 10px;
  }

  .class-pricing-label strong {
    font-size: 1.5em;
  }
}

.class-pricing-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: inherit;
}

.class-pricing-title {
  font-weight: 700;
}

.class-pricing-current {
  white-space: nowrap;
}

.class-pricing-label strong {
  font-size: 2em;
  color: var(--accent);
}

.class-free-trial {
  display: block;
  text-align: center;
  color: var(--accent);
  font-size: 1.2em;
}

.class-old-price {
  color: rgb(0 0 0 / 0.4);
  font-weight: 400;
  margin-left: 6px;
}

.class-buy-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-deep), var(--accent));
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms, box-shadow 150ms;
  box-shadow: none;
}

.class-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.apply-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgb(46 53 81 / 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.apply-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.apply-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 34px;
  background: var(--paper);
  backdrop-filter: blur(12px);
}

.apply-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--accent-deep);
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.apply-consent-input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.apply-consent span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}

.apply-consent a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.apply-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-deep);
}

.apply-input {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms;
}

.apply-select {
  appearance: auto;
}

.apply-textarea {
  min-height: 96px;
  font-family: var(--font-body);
  resize: vertical;
}

.apply-input:focus {
  border-color: var(--accent);
}

.apply-error {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: #c44;
  min-height: 20px;
}

.apply-submit-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-deep), var(--accent));
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms, box-shadow 180ms;
  align-self: flex-start;
}

.apply-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.apply-success {
  font-family: var(--font-heading);
  font-size: 20px;
  color: rgb(80 180 80);
  margin: 0;
}

.booking-btn {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 26px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-deep), var(--accent));
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.shop-shell--no-pdf .product-info h2,
.shop-shell--no-pdf .product-detail-copy h1 {
  grid-template-columns: minmax(0, 1fr);
}

.shop-shell--no-pdf .product-info h2::before,
.shop-shell--no-pdf .product-detail-copy h1::before {
  display: none;
}

.product-price {
  margin: 0;
  color: var(--accent-deep);
  font-size: 20px;
  font-weight: 800;
}

.product-price--soon,
.product-detail-price--soon {
  color: var(--muted);
  font-style: italic;
  font-weight: 600;
}

.product-old-price {
  color: rgb(0 0 0 / 0.4);
  font-size: 0.8em;
  font-weight: 400;
}

.product-detail-description ul.benefits {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.product-detail-description ul.benefits li {
  position: relative;
  margin-top: 10px;
  padding-left: 28px;
  line-height: 1.72;
}

.product-detail-description ul.benefits li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, #dfc4ab, #8d6fa7);
  box-shadow: none;
}

.product-detail-head {
  margin-bottom: 20px;
}

.product-detail {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.product-carousel {
  display: grid;
  gap: 14px;
}

.carousel-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 42vw, 520px);
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgb(255 255 255 / 74%);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgb(255 252 249 / 94%), rgb(255 246 240 / 78%));
  box-shadow: none;
}

.carousel-image-frame {
  position: relative;
  display: inline-grid;
  place-items: center;
  max-width: 100%;
}

.carousel-image-frame img {
  width: auto;
  max-width: 100%;
  max-height: clamp(280px, 40vw, 480px);
  object-fit: contain;
  border-radius: 18px;
}

.carousel-placeholder {
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  border: 1px dashed rgb(141 111 167 / 34%);
  border-radius: 20px;
  background: rgb(255 251 247 / 74%);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.carousel-arrow,
.carousel-dot,
.cart-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  color: var(--accent-deep);
  font-size: 30px;
  line-height: 1;
  border-radius: 50%;
  background: var(--paper-strong);
  box-shadow: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: rgb(141 111 167 / 25%);
}

.carousel-dot.is-active {
  background: var(--accent-deep);
}

.product-detail-copy {
  width: min(880px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  text-align: center;
}

.product-detail-copy h1 {
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  display: grid;
  grid-template-columns: clamp(51px, 7.5vw, 75px) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  font-size: clamp(32px, 4.4vw, 56px);
  text-align: left;
}

.product-detail-copy h1::before {
  width: clamp(51px, 7.5vw, 75px);
  height: clamp(69px, 10.5vw, 102px);
  content: "";
  background: url("../assets/images/pdf-icon.png") center / contain no-repeat;
}

.product-detail-description {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
  white-space: pre-line;
  text-align: left;
}

.product-detail-price {
  margin: 0;
  color: var(--accent-deep);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.cart-button {
  justify-self: center;
  min-width: min(100%, 260px);
  min-height: 58px;
  padding: 16px 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-deep), var(--accent));
  box-shadow: none;
}

.carousel-arrow:focus-visible,
.carousel-dot:focus-visible,
.cart-button:focus-visible {
  outline: 3px solid rgb(141 111 167 / 34%);
  outline-offset: 4px;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.82);
  cursor: zoom-out;
  touch-action: pan-y;
  animation: lightbox-fade-in 200ms ease;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: none;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.15);
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: clamp(44px, 8vw, 58px);
  height: clamp(44px, 8vw, 58px);
  padding: 0;
  color: #fff;
  font-size: clamp(36px, 8vw, 54px);
  line-height: 0.8;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.16);
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-nav--prev {
  left: clamp(12px, 4vw, 34px);
}

.lightbox-nav--next {
  right: clamp(12px, 4vw, 34px);
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgb(255 255 255 / 0.24);
}

.lightbox-nav:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgb(255 255 255 / 0.45);
  outline-offset: 3px;
}

.carousel-image-frame {
  cursor: zoom-in;
}

@keyframes lightbox-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (max-width: 760px) {
  .shop-shell {
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
  }

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

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-button {
    min-height: 124px;
  }

  .product-card {
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
  }

  .product-photo {
    padding: 6px;
    border-radius: 12px;
  }

  .product-photo img {
    border-radius: 9px;
  }

  .product-info {
    gap: 5px;
  }

  .product-info h2 {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 6px;
    font-size: 12px;
    line-height: 1.25;
  }

  .product-info h2::before {
    width: 30px;
    height: 42px;
  }

  .product-price {
    font-size: 16px;
  }

  .carousel-stage {
    min-height: 360px;
    border-radius: 22px;
  }

  .product-detail-copy {
    text-align: left;
  }

  .product-detail-copy h1 {
    grid-template-columns: 51px minmax(0, 1fr);
    gap: 10px;
    justify-self: stretch;
    width: 100%;
  }

  .product-detail-copy h1::before {
    width: 51px;
    height: 69px;
  }

  .cart-button {
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  .class-pricing-row {
    display: block;
  }

  .class-pricing-label {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
    font-size: 17px;
  }

  .class-pricing-title {
    flex-basis: 100%;
    white-space: normal;
  }

  .class-pricing-current,
  .class-old-price {
    white-space: nowrap;
  }

  .class-pricing-label strong {
    font-size: clamp(28px, 6.5vw, 30px);
    line-height: 1;
  }

  .class-old-price {
    margin-left: 0;
  }
}
