:root {
  --snow: #fffaf3;
  --cream: #f6eadc;
  --cream-strong: #ead5bc;
  --ink: #35261b;
  --muted: #7e6d5e;
  --chestnut: #a86a37;
  --roux: #d59a61;
  --rose: #efb7ae;
  --moss: #839676;
  --gold: #d8aa63;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(86, 58, 35, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.95), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(239, 183, 174, 0.24), transparent 24rem),
    linear-gradient(180deg, #fffdf9 0%, var(--snow) 56%, #f4e5d4 100%);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(170px, 260px) 1fr minmax(120px, 260px);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.82);
  border-bottom: 1px solid rgba(168, 106, 55, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(220px, 42vw);
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a,
.header-cta {
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.header-cta:hover {
  color: var(--chestnut);
  transform: translateY(-1px);
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(168, 106, 55, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--chestnut);
  font-weight: 800;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(168, 106, 55, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(86, 58, 35, 0.08);
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  background: var(--ink);
  color: var(--white);
}

.language-switcher button:hover {
  transform: translateY(-1px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: 78vh;
  padding: clamp(38px, 7vw, 90px) clamp(18px, 5vw, 76px) 42px;
}

.hero-copy {
  animation: rise-in 700ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--chestnut);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 660px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 5.3rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.story-band p,
.values-section p,
.product-card p,
.purchase-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--roux), var(--chestnut));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(168, 106, 55, 0.22);
}

.button-soft {
  background: var(--white);
  color: var(--chestnut);
  border: 1px solid rgba(168, 106, 55, 0.16);
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 106, 55, 0.12);
  border-radius: 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f3e5d8 100%);
  box-shadow: var(--shadow);
  animation: float-in 900ms ease 130ms both;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  filter: blur(36px);
}

.hero-card img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.friends-section,
.shop-grid-section,
.values-section,
.story-band,
.product-page {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.product-stage {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  min-height: 500px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(168, 106, 55, 0.08);
  border-radius: 36px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(86, 58, 35, 0.1);
}

.ghost-word {
  position: absolute;
  inset: auto 0 28px;
  margin: 0;
  color: rgba(168, 106, 55, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.8rem, 17vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  text-align: center;
  pointer-events: none;
}

.product-carousel {
  position: relative;
  z-index: 1;
  min-height: 390px;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 16px;
  justify-items: center;
  width: clamp(170px, 15vw, 260px);
  min-height: 320px;
  padding: 12px;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  opacity: 0.72;
  transform: translate(-50%, -50%) scale(0.78);
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 360ms ease,
    color 260ms ease,
    filter 360ms ease;
  will-change: transform, opacity;
}

.carousel-item:hover,
.carousel-item.is-active {
  color: var(--chestnut);
  opacity: 1;
}

.carousel-item.is-active {
  z-index: 3;
  background: transparent;
  color: var(--chestnut);
  opacity: 1;
  transform: translate(-50%, -58%) scale(1.24);
}

.carousel-item img {
  width: 100%;
  max-height: 215px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(72, 48, 30, 0.1));
  transition:
    max-height 520ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 360ms ease;
}

.carousel-item.is-active img {
  max-height: 315px;
  filter: drop-shadow(0 28px 30px rgba(72, 48, 30, 0.18));
}

.carousel-item[data-position="-1"],
.carousel-item[data-position="1"] {
  opacity: 0.9;
}

.carousel-item[data-position="-1"] {
  z-index: 2;
  transform: translate(calc(-50% - min(19vw, 260px)), -49%) scale(0.94);
}

.carousel-item[data-position="1"] {
  z-index: 2;
  transform: translate(calc(-50% + min(19vw, 260px)), -49%) scale(0.94);
}

.carousel-item[data-position="-2"],
.carousel-item[data-position="2"] {
  opacity: 0.68;
  filter: saturate(0.94);
}

.carousel-item[data-position="-2"] {
  z-index: 1;
  transform: translate(calc(-50% - min(38vw, 520px)), -45%) scale(0.74);
}

.carousel-item[data-position="2"] {
  z-index: 1;
  transform: translate(calc(-50% + min(38vw, 520px)), -45%) scale(0.74);
}

.carousel-item span {
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  color: inherit;
  font-size: 0.94rem;
  line-height: 1.25;
  text-align: center;
}

.round-control {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #eee1d2;
  color: var(--chestnut);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.round-control:hover {
  background: var(--cream-strong);
  transform: scale(1.05);
}

.active-product {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 24px;
  text-align: center;
}

.active-product p,
.product-card small {
  margin: 0;
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.active-product span {
  color: var(--muted);
}

.active-product .button {
  margin-top: 12px;
}

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

.product-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(168, 106, 55, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 26px rgba(86, 58, 35, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  border-radius: 18px;
  background: #ffffff;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.45rem;
}

.product-card p {
  margin: 0;
  font-size: 0.95rem;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 76px) clamp(54px, 8vw, 104px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(131, 150, 118, 0.92), rgba(168, 106, 55, 0.82)),
    radial-gradient(circle at 92% 20%, rgba(255, 255, 255, 0.34), transparent 18rem);
  color: var(--white);
}

.story-band .eyebrow,
.story-band p {
  color: rgba(255, 255, 255, 0.84);
}

.values-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.values-section article {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 26px rgba(86, 58, 35, 0.08);
}

.values-section span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid rgba(168, 106, 55, 0.12);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.contact-copy {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.contact-copy p:not(.eyebrow),
.contact-copy a {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.contact-copy a {
  color: var(--chestnut);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(168, 106, 55, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.product-page {
  min-height: 76vh;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumb a {
  color: var(--chestnut);
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.product-media {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.thumbs {
  display: grid;
  gap: 12px;
}

.thumb {
  width: 86px;
  height: 86px;
  padding: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: var(--white);
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--chestnut);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 620px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-visual img {
  width: min(92%, 780px);
  max-height: 580px;
  object-fit: contain;
}

.product-info-tabs {
  grid-column: 2;
  overflow: hidden;
  border: 1px solid rgba(168, 106, 55, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 clamp(18px, 3vw, 34px);
  border-bottom: 1px solid rgba(126, 109, 94, 0.22);
}

.tab-button {
  position: relative;
  padding: 20px clamp(12px, 2vw, 26px) 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tab-button::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.tab-button.is-active {
  color: var(--chestnut);
}

.tab-button.is-active::after {
  background: var(--chestnut);
}

.tab-panel {
  display: none;
  min-height: 138px;
  padding: clamp(20px, 3vw, 34px);
}

.tab-panel.is-active {
  display: block;
  overflow-x: auto;
}

.tab-panel p,
.tab-panel li {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.tab-panel p + p,
.tab-panel ul + p {
  margin-top: 18px;
}

.tab-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.tab-panel li::marker {
  color: var(--chestnut);
}

.size-table {
  width: 100%;
  margin: 22px 0;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(168, 106, 55, 0.14);
  border-radius: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.size-table th,
.size-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(168, 106, 55, 0.1);
  text-align: left;
  vertical-align: top;
}

.size-table th {
  background: rgba(246, 234, 220, 0.62);
  color: var(--ink);
  font-weight: 900;
}

.size-table tr:last-child td {
  border-bottom: 0;
}

.purchase-panel {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.purchase-panel h1 {
  max-width: 100%;
  font-size: clamp(2.2rem, 3.35vw, 3.55rem);
  overflow-wrap: anywhere;
}

.purchase-panel .subtitle {
  margin: -6px 0 0;
  color: var(--chestnut);
  font-weight: 800;
}

.price {
  color: #c83b31;
  font-size: 1.4rem;
}

.product-options,
.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.product-options button,
.product-options a,
.quantity-row button {
  min-height: 42px;
  border: 1px solid rgba(168, 106, 55, 0.22);
  border-radius: 999px;
  background: var(--snow);
  color: var(--chestnut);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.product-options button,
.product-options a {
  padding: 10px 16px;
}

.quantity-row div {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px;
  border-radius: 999px;
  background: var(--snow);
}

.quantity-row button {
  width: 36px;
  height: 36px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 0 0;
  color: var(--muted);
  border-top: 1px solid rgba(168, 106, 55, 0.14);
}

.detail-list li {
  margin-left: 18px;
}

.order-page {
  padding-top: clamp(34px, 5vw, 64px);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
}

.order-summary,
.order-form {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.order-summary {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.order-summary-image {
  display: grid;
  place-items: center;
  min-height: 300px;
  border-radius: 28px;
  background: #ffffff;
}

.order-summary-image img {
  width: min(86%, 320px);
  max-height: 300px;
  object-fit: contain;
}

.order-summary h1,
.order-form h2 {
  max-width: 100%;
}

.order-form h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.order-summary p,
.order-form p,
.form-note,
.form-status {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.order-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

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

.field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.field small {
  color: rgba(126, 109, 94, 0.76);
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(168, 106, 55, 0.18);
  border-radius: 18px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
  outline: none;
}

.field input {
  min-height: 48px;
  padding: 12px 15px;
}

.field textarea {
  resize: vertical;
  padding: 14px 15px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(168, 106, 55, 0.55);
  box-shadow: 0 0 0 4px rgba(213, 154, 97, 0.14);
}

.mode-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.mode-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 900;
}

.mode-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(168, 106, 55, 0.16);
  border-radius: 22px;
  background: #fffdf9;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.55;
}

.mode-card input {
  margin-top: 4px;
  accent-color: var(--chestnut);
}

.mode-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.mode-panel {
  display: none;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(168, 106, 55, 0.12);
  border-radius: 24px;
  background: rgba(246, 234, 220, 0.34);
}

.mode-panel.is-active {
  display: grid;
}

.form-note,
.form-status {
  margin: 0;
}

.form-status {
  min-height: 1.7em;
  font-weight: 800;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@media (max-width: 1080px) {
  .hero-section,
  .story-band,
  .product-detail,
  .order-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

  .product-carousel {
    min-height: 360px;
  }

  .carousel-item[data-position="-2"],
  .carousel-item[data-position="2"] {
    display: none;
  }

  .carousel-item[data-position="-1"] {
    transform: translate(calc(-50% - min(26vw, 190px)), -47%) scale(0.82);
  }

  .carousel-item[data-position="1"] {
    transform: translate(calc(-50% + min(26vw, 190px)), -47%) scale(0.82);
  }

  .thumbs {
    display: flex;
    order: 2;
    overflow-x: auto;
  }

  .product-visual {
    order: 1;
  }

  .product-info-tabs {
    grid-column: 1;
    order: 3;
  }

  .purchase-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    padding: 4px;
  }

  .language-switcher button {
    min-width: 32px;
    min-height: 30px;
    font-size: 0.7rem;
  }

  .hero-section {
    min-height: auto;
  }

  .product-stage {
    grid-template-columns: 1fr;
    min-height: 430px;
  }

  .round-control {
    display: none;
  }

  .product-carousel,
  .product-grid,
  .values-section {
    grid-template-columns: 1fr;
  }

  .carousel-item[data-position="-1"],
  .carousel-item[data-position="1"] {
    display: none;
  }

  .carousel-item {
    width: min(76vw, 280px);
    min-height: 310px;
  }

  .carousel-item img,
  .carousel-item.is-active img {
    max-height: 280px;
  }

  .product-visual {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }

  .form-grid,
  .mode-choice {
    grid-template-columns: 1fr;
  }
}
