:root {
  --ink: #17211b;
  --muted: #5f6b63;
  --paper: #fbfaf5;
  --kraft: #c79855;
  --leaf: #2f6e55;
  --clay: #a94f35;
  --orange: #e04400;
  --line: #ded7c9;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(31, 38, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.93);
  border-bottom: 1px solid rgba(222, 215, 201, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 178px;
  max-width: 34vw;
  height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  flex-wrap: wrap;
}

.nav a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}

.quote-btn,
.primary-btn,
.secondary-btn,
.outline-btn,
.product-card button,
.site-footer button {
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.quote-btn,
.primary-btn,
.product-card button,
.site-footer button {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 12px 28px rgba(169, 79, 53, 0.22);
}

.secondary-btn,
.outline-btn {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.quote-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover,
.product-card button:hover,
.site-footer button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(34px, 5vw, 76px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

@media (min-width: 1180px) {
  body.quote-panel-floating .hero,
  body.quote-panel-floating .section,
  body.quote-panel-floating .article-hero,
  body.quote-panel-floating .article-layout,
  body.quote-panel-floating .page-nav {
    padding-right: calc(clamp(18px, 5vw, 72px) + 440px);
  }
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.trust-row span {
  border-left: 3px solid var(--kraft);
  padding-left: 10px;
  color: var(--muted);
  font-weight: 720;
  font-size: 14px;
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.hero-media img {
  display: block;
  width: 100%;
  height: min(68vh, 660px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.intro-band,
.contact-section,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 36px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.split > div:first-child,
.split .quote-panel {
  align-self: stretch;
}

@media (min-width: 981px) {
  .split h2 {
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(30px, 2.55vw, 46px);
  }

  .product-title-row h3 {
    white-space: nowrap;
    overflow-wrap: normal;
    font-size: clamp(17px, 1.18vw, 22px);
  }
}

.intro-band p,
.split p,
.section-heading p,
.contact-section p,
.quote-panel p,
.product-card p,
.material-grid p,
.market-grid p {
  color: var(--muted);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

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

.product-card,
.material-grid article,
.market-grid article,
.advantage-grid article,
.quote-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  box-shadow: 0 10px 28px rgba(31, 38, 34, 0.08);
}

.product-card p {
  flex: 1;
}

.product-title-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.product-title-row h3 {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.18;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

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

.whatsapp-mini {
  display: grid;
  height: 44px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: #1f8f5a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 24px rgba(31, 143, 90, 0.22);
}

.product-card-image,
.material-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 16px;
  background: #f1eee6;
}

.card-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 0;
  border-radius: 6px;
  color: var(--leaf);
  background: #e7f0e9;
  font-weight: 850;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.process-list span,
.application-table div {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.quote-panel {
  box-shadow: var(--shadow);
}

.quote-compact {
  display: grid;
  align-content: center;
  gap: 12px;
  height: 100%;
  padding: 24px;
}

.quote-compact h3 {
  margin: 0;
  font-size: 22px;
}

.quote-compact p {
  margin: 0;
}

.split .quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  max-height: 640px;
  padding: 0;
  overflow: hidden;
}

.quote-panel-scroll {
  display: none;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 24px;
  scrollbar-width: thin;
}

.quote-price {
  color: #222;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.quote-moq {
  margin: 10px 0 18px;
  font-size: 15px;
}

.sample-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 14px;
  font-weight: 800;
}

.sample-row button {
  border: 1px solid #222;
  border-radius: 999px;
  background: var(--white);
  padding: 7px 14px;
  font-weight: 850;
}

.option-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.option-heading h3,
.option-block h3,
.quote-panel-scroll > h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.option-heading a {
  color: #222;
  font-weight: 850;
}

.quote-thumbs {
  display: grid;
  grid-template-columns: repeat(7, 44px);
  gap: 6px;
  margin: 8px 0 18px;
}

.quote-thumbs button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

.quote-thumbs img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.quote-thumbs button:first-child {
  border: 2px solid #222;
}

.option-block {
  margin-bottom: 14px;
}

.option-block span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 2px solid #222;
  border-radius: 7px;
  background: #f6f6f6;
  padding: 8px 15px;
  font-weight: 750;
}

.quote-divider {
  height: 1px;
  margin: 20px 0;
  background: #e7e7e7;
}

.custom-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 14px;
}

.custom-option span {
  color: #f04a2a;
  font-weight: 850;
}

.custom-option small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.quote-panel-scroll em {
  color: #0b65a8;
  font-style: normal;
  font-size: 14px;
}

.quote-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.quote-sticky-actions {
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 16px 24px 20px;
  box-shadow: 0 -10px 24px rgba(31, 38, 34, 0.06);
}

.quote-panel .primary-btn,
.quote-panel .whatsapp-mini {
  min-height: 54px;
  border-radius: 999px;
}

.quote-panel .primary-btn {
  background: var(--orange);
}

.quote-panel .whatsapp-mini {
  border: 1px solid #222;
  color: #222;
  background: var(--white);
  box-shadow: none;
}

.full {
  width: 100%;
}

.material-band {
  background: #eef3ec;
}

.visual-reference {
  background: var(--white);
}

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

.image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f1eee6;
}

.image-card figcaption {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  color: var(--muted);
  font-size: 13px;
}

.image-card a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

.image-whatsapp {
  display: inline-grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--white) !important;
  background: #1f8f5a;
  box-shadow: 0 10px 20px rgba(31, 143, 90, 0.22);
}

.image-whatsapp span {
  font-size: 11px;
  font-weight: 900;
}

.why-section {
  background: #f6efe4;
}

.why-section .section-heading h2 {
  white-space: nowrap;
  font-size: clamp(28px, 3.2vw, 44px);
}

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

.advantage-grid p {
  color: var(--muted);
}

.application-table {
  display: grid;
  gap: 10px;
}

.application-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.application-table span {
  color: var(--muted);
}

.market-section {
  background: var(--white);
}

.seo-index {
  background: #f6efe4;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 520px;
  overflow: auto;
  padding: 2px;
}

.keyword-cloud a {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.required-star {
  color: var(--clay);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(47, 110, 85, 0.14);
}

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

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 24px;
  color: var(--leaf);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 720px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--white);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 17, 0.62);
}

.modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.article-page {
  background: var(--white);
}

.article-hero {
  padding: clamp(48px, 7vw, 94px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #f6efe4 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.article-hero > div {
  max-width: 980px;
}

.linked-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.breadcrumb a,
.article-content a,
.page-nav a {
  color: var(--leaf);
  text-decoration: none;
  font-weight: 800;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
  font-weight: 500;
}

.article-product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.article-content {
  max-width: 880px;
}

.article-content h2 {
  margin-top: 32px;
  font-size: clamp(24px, 3vw, 34px);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  color: var(--muted);
  font-size: 17px;
}

.article-sidebar {
  display: grid;
  gap: 16px;
}

.smart-quote-panel {
  width: 100%;
}

.smart-quote-panel.quote-panel {
  padding: 0;
  overflow: hidden;
  max-height: 640px;
}

.smart-quote-panel.is-floating {
  position: fixed;
  top: 82px;
  bottom: 18px;
  right: clamp(12px, 2vw, 28px);
  z-index: 18;
  display: flex;
  flex-direction: column;
  width: min(410px, calc(100vw - 24px));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(31, 38, 34, 0.18);
}

.smart-quote-panel.is-floating .quote-compact {
  display: none;
}

.smart-quote-panel.is-floating .quote-panel-scroll,
.smart-quote-panel.is-floating .quote-sticky-actions {
  display: grid;
}

.smart-quote-panel.is-floating .quote-panel-scroll {
  display: block;
}

.variation-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(0, 0, 0, 0.56);
}

.variation-modal.is-open {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.variation-preview {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(18px, 5vw, 64px);
}

.variation-preview img {
  display: block;
  width: min(760px, 74vw);
  max-height: 78vh;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.variation-caption {
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.variation-drawer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--white);
  padding: 28px;
  overflow-y: auto;
}

.variation-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: #555;
  font-size: 36px;
  line-height: 1;
}

.variation-drawer h2 {
  font-size: 24px;
}

.variation-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 24px;
}

.variation-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.variation-media {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  text-align: left;
}

.variation-media span {
  font-size: 18px;
}

.variation-choice img {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 7px;
  object-fit: cover;
}

.variation-choice.is-selected img {
  border: 2px solid #222;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 46px 34px;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  overflow: hidden;
}

.qty-control input {
  width: 46px;
  height: 34px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-align: center;
  outline: none;
  appearance: textfield;
}

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

.qty-control button {
  display: grid;
  height: 34px;
  place-items: center;
  border: 0;
  background: #f1f3f5;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.qty-control button:hover {
  background: #e4e8ec;
}

.variation-footer {
  position: sticky;
  bottom: -28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: auto -28px -28px;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 18px 28px 26px;
}

.related-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
}

.related-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.related-box a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 720;
}

.related-box a:hover,
.page-nav a:hover {
  color: var(--clay);
}

.page-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(42px, 6vw, 82px);
}

.page-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 12px;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro-band,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .product-grid,
  .material-grid,
  .market-grid,
  .image-gallery,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 142px;
    height: 42px;
  }

  .why-section .section-heading h2 {
    white-space: normal;
  }

  .quote-btn {
    padding-inline: 12px;
  }

  .hero-media img {
    height: 340px;
  }

  .product-grid,
  .material-grid,
  .market-grid,
  .image-gallery,
  .advantage-grid,
  .contact-form,
  .modal-form,
  .process-list {
    grid-template-columns: 1fr;
  }

  .application-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-sticky-actions {
    grid-template-columns: 1fr;
    padding: 14px;
  }

}

@media (max-width: 860px) {
  .article-layout,
  .linked-article-hero,
  .page-nav {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .smart-quote-panel.is-floating {
    position: static;
    width: 100%;
  }

  .variation-modal.is-open {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .variation-preview {
    min-height: 46vh;
    padding: 18px;
  }

  .variation-preview img {
    width: min(100%, 560px);
    max-height: 44vh;
  }

  .variation-drawer {
    min-height: auto;
    padding: 20px;
  }

  .variation-footer {
    grid-template-columns: 1fr;
    margin: 18px -20px -20px;
    padding: 16px 20px 20px;
  }
}
