:root {
  color-scheme: light;
  --ink: #1b1c1a;
  --ink-soft: #4b463f;
  --paper: #fcf9f6;
  --surface: #ffffff;
  --surface-soft: #f6f3f0;
  --line: #ded7d0;
  --berry: #8e4860;
  --berry-dark: #713449;
  --blush: #ffebef;
  --rose: #d8a9b7;
  --green: #3f6b54;
  --green-soft: #e8f1eb;
  --warning: #7a4c00;
  --warning-bg: #fff2cd;
  --error: #9b2335;
  --error-bg: #fff0f2;
  --shadow: 0 24px 70px rgba(63, 64, 73, 0.08);
  --radius-lg: 2rem;
  --radius-md: 1.5rem;
  --radius-sm: 0.9rem;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Onest", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: -1;
  top: -15rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: rgba(216, 169, 183, 0.14);
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(142, 72, 96, 0.68);
  outline-offset: 3px;
}

::selection {
  background: var(--blush);
  color: var(--ink);
}

.gtm-frame {
  display: none;
  visibility: hidden;
}

.container {
  width: min(100% - 2.5rem, 1180px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--berry);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(205, 197, 188, 0.58);
  background: rgba(252, 249, 246, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header-note {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.phone-link {
  color: var(--berry);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--berry-dark);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.demo-banner {
  border-bottom: 1px solid #eed797;
  background: var(--warning-bg);
  color: var(--warning);
}

.demo-banner-inner {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  font-size: 0.88rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-block: 1.5rem 1.2rem;
  overflow: hidden;
  color: #746e67;
  font-size: 0.82rem;
  white-space: nowrap;
}

.breadcrumbs a {
  color: var(--berry);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: 1.2rem 6.5rem;
}

.product-visual {
  margin: 0;
}

.image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ece5df;
  box-shadow: var(--shadow);
}

.image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-wrap:hover img {
  transform: scale(1.018);
}

.product-visual figcaption {
  margin: 0.95rem 0 0;
  color: #746e67;
  font-size: 0.78rem;
  text-align: center;
}

.product-info {
  padding-top: clamp(0rem, 2vw, 1.8rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--berry);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Tenor Sans", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.024em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.product-short {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-block: 1.15rem;
  border-block: 1px solid var(--line);
}

.product-price {
  margin: 0;
  font-family: "Tenor Sans", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1;
  white-space: nowrap;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.availability::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.availability.is-unavailable {
  background: var(--error-bg);
  color: var(--error);
}

.service-list {
  display: grid;
  gap: 1.15rem;
  margin-block: 0 2.1rem;
}

.service-item {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.9rem;
}

.service-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(142, 72, 96, 0.28);
  border-radius: 50%;
  color: var(--berry);
  font-size: 0.66rem;
  font-weight: 700;
}

.service-item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.92rem;
}

.service-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.primary-button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--berry);
  box-shadow: 0 12px 30px rgba(142, 72, 96, 0.18);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.primary-button:hover:not(:disabled) {
  background: var(--berry-dark);
  box-shadow: 0 14px 34px rgba(113, 52, 73, 0.22);
  transform: translateY(-1px);
}

.primary-button:disabled {
  background: #ada6a1;
  box-shadow: none;
}

.product-cta {
  width: min(100%, 21rem);
  padding: 0.85rem 1.8rem;
}

.microcopy {
  margin: 0.8rem 0 0;
  color: #746e67;
  font-size: 0.76rem;
}

.section-card {
  border: 1px solid rgba(205, 197, 188, 0.5);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-description {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(5rem, 10vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
}

.product-description h2 {
  margin: 0;
}

.product-description > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.85;
  white-space: pre-line;
}

.checkout-section {
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.checkout-heading {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.checkout-heading h2 {
  margin-bottom: 0.7rem;
}

.checkout-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 2rem;
}

.checkout-form {
  padding: clamp(1.25rem, 4vw, 3rem);
}

.form-section {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.4rem;
}

.form-section-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.form-section-heading > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--berry-dark);
  font-size: 0.74rem;
  font-weight: 700;
}

.form-section-heading h3 {
  margin: 0;
  font-family: "Tenor Sans", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field {
  min-width: 0;
}

.field label,
.quantity-field > span {
  display: block;
  margin-bottom: 0.48rem;
  color: #403c37;
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 3.25rem;
  padding: 0.72rem 0.9rem;
}

.field textarea {
  min-height: 7.2rem;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #aaa29a;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 4px rgba(142, 72, 96, 0.1);
  outline: 0;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(155, 35, 53, 0.08);
}

.field small {
  display: block;
  margin-top: 0.38rem;
  color: #746e67;
  font-size: 0.72rem;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 0 1.2rem;
  padding: 0;
  border: 0;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 5.4rem;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.choice-card:has(input:checked) {
  border-color: var(--berry);
  background: #fff8fa;
}

.choice-card input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.15rem 0 0;
  accent-color: var(--berry);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
}

.choice-card small {
  color: #746e67;
  font-size: 0.7rem;
  line-height: 1.45;
}

.delivery-fields {
  margin-bottom: 1.15rem;
}

.schedule-grid {
  margin-top: 1.15rem;
}

.quantity-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.quantity-field > span {
  margin: 0;
}

.quantity-control {
  display: grid;
  grid-template-columns: 2.7rem 3.2rem 2.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.quantity-control button,
.quantity-control input {
  min-height: 2.7rem;
  border: 0;
  background: transparent;
  text-align: center;
}

.quantity-control button {
  color: var(--berry);
  font-size: 1.15rem;
  font-weight: 700;
}

.quantity-control button:hover {
  background: var(--blush);
}

.quantity-control input {
  width: 100%;
  border-inline: 1px solid var(--line);
  border-radius: 0;
  appearance: textfield;
  font-size: 0.86rem;
  font-weight: 700;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.form-message {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #f0c8cf;
  border-radius: var(--radius-sm);
  background: var(--error-bg);
  color: var(--error);
  font-size: 0.82rem;
}

.form-message.is-success {
  border-color: #bfd7c6;
  background: var(--green-soft);
  color: var(--green);
}

.pay-button {
  position: relative;
  width: 100%;
  min-height: 3.6rem;
  padding: 0.85rem 1.5rem;
}

.button-spinner {
  display: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.65rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.pay-button.is-loading .button-spinner {
  display: inline-block;
}

.legal-note {
  max-width: 40rem;
  margin: 0.8rem auto 0;
  color: #746e67;
  font-size: 0.69rem;
  line-height: 1.5;
  text-align: center;
}

.consent-field {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  align-items: start;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent-field input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.15rem 0 0;
  accent-color: var(--berry);
}

.consent-field a {
  color: var(--berry);
  font-weight: 700;
}

.order-summary {
  position: sticky;
  top: 112px;
  padding: 1.6rem;
}

.order-summary h3 {
  margin: -0.25rem 0 1.3rem;
  font-family: "Tenor Sans", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.summary-product {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.summary-product img {
  width: 5rem;
  height: 5.8rem;
  border-radius: 0.8rem;
  background: #ece5df;
  object-fit: cover;
}

.summary-product strong,
.summary-product span {
  display: block;
}

.summary-product strong {
  margin-bottom: 0.4rem;
  font-family: "Tenor Sans", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.35;
}

.summary-product span {
  color: #746e67;
  font-size: 0.75rem;
}

.summary-lines {
  margin: 0;
  padding-block: 1.15rem;
}

.summary-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.summary-lines dt,
.summary-lines dd {
  margin: 0;
}

.summary-total {
  align-items: baseline;
  margin-top: 0.8rem;
  padding-top: 1.15rem !important;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-weight: 700;
}

.summary-total dd {
  font-family: "Tenor Sans", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.payment-note {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--surface-soft);
}

.payment-note strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
}

.payment-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.55;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.85rem;
}

.payment-logos img {
  width: auto;
  height: 20px;
  object-fit: contain;
}

.site-footer {
  border-top: 1px solid rgba(205, 197, 188, 0.5);
  background: #f3efeb;
}

.footer-inner {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.footer-inner > div {
  text-align: right;
}

.footer-inner p {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.footer-inner a {
  color: var(--berry);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-footer-inner > div > a {
  display: inline-block;
  margin-left: 0.8rem;
}

.footer-legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.75rem;
}

.footer-legal-links a {
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* Order status page */
.order-page-main {
  min-height: calc(100vh - 245px);
  padding-block: clamp(3rem, 8vw, 7rem);
}

.order-page-shell {
  width: min(100%, 760px);
  margin-inline: auto;
}

.order-loading,
.order-error,
.order-result {
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.order-loading {
  text-align: center;
}

.loading-flower {
  width: 2.3rem;
  height: 2.3rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--blush);
  border-top-color: var(--berry);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.order-loading p,
.order-error p,
.order-result-intro {
  color: var(--ink-soft);
}

.order-error {
  text-align: center;
}

.order-error h1,
.order-result h1 {
  max-width: none;
  font-size: clamp(2.3rem, 6vw, 3.7rem);
}

.order-status-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  background: var(--warning-bg);
  color: var(--warning);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-badge.is-paid {
  background: var(--green-soft);
  color: var(--green);
}

.status-badge.is-failed {
  background: var(--error-bg);
  color: var(--error);
}

.order-number {
  margin-bottom: 0.5rem;
  color: var(--berry);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-detail-list {
  margin: 0;
  padding-block: 1.2rem;
}

.order-detail-list > div {
  display: grid;
  grid-template-columns: minmax(9rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
  padding-block: 0.72rem;
  border-bottom: 1px solid rgba(222, 215, 208, 0.62);
}

.order-detail-list dt,
.order-detail-list dd {
  margin: 0;
}

.order-detail-list dt {
  color: #746e67;
  font-size: 0.78rem;
}

.order-detail-list dd {
  font-size: 0.86rem;
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
}

.order-total-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
}

.order-total-line span {
  font-weight: 700;
}

.order-total-line strong {
  font-family: "Tenor Sans", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.order-next-step {
  margin-top: 0.8rem;
  padding: 1.15rem;
  border-radius: 1rem;
  background: var(--surface-soft);
}

.order-next-step strong {
  display: block;
  margin-bottom: 0.25rem;
}

.order-next-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.order-actions .primary-button,
.secondary-button {
  min-height: 3.15rem;
  padding: 0.75rem 1.3rem;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--berry);
  border-radius: 999px;
  color: var(--berry);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.secondary-button:hover {
  background: var(--blush);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 920px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 2.5rem;
  }

  .header-note {
    display: none;
  }

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

  .order-summary {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    height: 36px;
  }

  .phone-link {
    font-size: 0;
  }

  .phone-link::after {
    display: inline-flex;
    min-height: 2.7rem;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border: 1px solid rgba(142, 72, 96, 0.35);
    border-radius: 999px;
    content: "Подзвонити";
    font-size: 0.76rem;
  }

  .demo-banner-inner {
    display: grid;
    gap: 0;
    padding-block: 0.55rem;
    line-height: 1.35;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-bottom: 4.5rem;
  }

  .product-visual figcaption {
    text-align: left;
  }

  .product-info {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .product-description {
    grid-template-columns: 1fr;
  }

  .field-grid,
  .choice-group {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  .footer-inner > div {
    text-align: left;
  }

  .legal-footer-inner > div > a {
    display: block;
    margin: 0.25rem 0 0;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  .order-status-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .breadcrumbs {
    padding-top: 1rem;
  }

  .image-wrap,
  .section-card {
    border-radius: 1.35rem;
  }

  .product-short {
    font-size: 0.96rem;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .product-cta {
    width: 100%;
  }

  .product-description,
  .checkout-form,
  .order-loading,
  .order-error,
  .order-result {
    padding: 1.25rem;
  }

  .checkout-heading {
    padding-inline: 0.3rem;
  }

  .order-summary {
    padding: 1.25rem;
  }

  .summary-product {
    grid-template-columns: 4.4rem minmax(0, 1fr);
  }

  .summary-product img {
    width: 4.4rem;
    height: 5.1rem;
  }

  .order-detail-list > div {
    grid-template-columns: 1fr;
    gap: 0.22rem;
  }

  .order-detail-list dd {
    text-align: left;
  }

  .order-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
