:root {
  color-scheme: light;
  --ink: #073f47;
  --text: #273b40;
  --muted: #66777b;
  --line: #dde6e3;
  --paper: #fbfcfa;
  --soft: #eef7f4;
  --mint: #cfe8dd;
  --blue: #dcecf5;
  --coral: #c75c52;
  --yellow: #f4c967;
  --deep: #003e49;
  --shadow: 0 18px 50px rgba(16, 50, 54, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.section-shell {
  width: min(1340px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(221, 230, 227, 0.8);
  backdrop-filter: blur(18px);
}

.trade-strip {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 10px 48px 6px;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 18px 48px;
}

.brand {
  display: grid;
  gap: 3px;
  color: var(--ink);
  min-width: max-content;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  color: #25464d;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 58px;
  padding: 0 14px;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  font-weight: 850;
}

.lang-toggle:hover {
  border-color: var(--deep);
}

.nav-links a,
.footer-links a,
.text-button,
.line-link {
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.text-button:hover,
.line-link:hover {
  color: var(--coral);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--deep);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--deep);
}

.button.primary:hover,
.nav-cta:hover {
  background: #052f37;
}

.button.secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.7);
}

.button.whatsapp {
  color: #0f4c3a;
  background: #e6f7ee;
  border-color: #6dc892;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 105px);
  padding: 54px 0 42px;
}

.hero-copy {
  padding: 18px 0 28px;
}

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

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

h1,
h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
}

h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  color: #3d565b;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.line-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.86fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 570px;
}

.hero-card {
  margin: 0;
  overflow: hidden;
  background: #f1f4f2;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main {
  grid-row: span 2;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(25, 54, 55, 0.08);
}

.facts div {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.facts div:last-child {
  border-right: 0;
}

.fact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.facts strong {
  color: var(--ink);
  font-size: 17px;
}

.lookbook,
.collections,
.category-section,
.catalog,
.why,
.about,
.quality,
.buyer-flow,
.inquiry {
  padding: 78px 0 0;
}

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

.category-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 52, 58, 0.06);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  background: #f5f6f4;
}

.category-card strong,
.category-card span {
  display: block;
  padding-left: 14px;
  padding-right: 14px;
}

.category-card strong {
  padding-top: 15px;
  color: var(--ink);
  font-size: 17px;
}

.category-card span {
  min-height: 58px;
  padding-top: 7px;
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.why {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 36px;
  align-items: start;
}

.why-copy p:not(.eyebrow),
.about p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.soft-note {
  margin-top: 24px;
  padding: 18px;
  color: #31565d;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 6px;
  line-height: 1.55;
}

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

.why-list div {
  min-height: 138px;
  padding: 22px;
  background: linear-gradient(135deg, #fff 0%, var(--soft) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.why-list div:last-child {
  grid-column: 1 / -1;
}

.why-list strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 18px;
}

.why-list span {
  color: var(--muted);
  line-height: 1.52;
}

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

.section-heading p:not(.eyebrow),
.quality-copy p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.86fr 0.86fr;
  gap: 20px;
}

.lookbook-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.lookbook-panel.large {
  min-height: 460px;
}

.lookbook-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-panel div {
  position: absolute;
  inset: auto 22px 22px;
  padding: 18px;
  color: #fff;
  background: rgba(0, 62, 73, 0.82);
  border-radius: 6px;
}

.lookbook-panel.red div {
  background: rgba(150, 48, 45, 0.85);
}

.lookbook-panel span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lookbook-panel strong {
  display: block;
  max-width: 330px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.05;
}

.section-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.text-button {
  color: var(--ink);
  font-weight: 900;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.series-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 52, 58, 0.08);
}

.series-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  background: #f6f7f5;
}

.series-card div {
  align-self: center;
  padding: 30px;
}

.series-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.08;
}

.series-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

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

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f6f4;
}

.product-card h3,
.product-card p,
.product-meta {
  padding-left: 18px;
  padding-right: 18px;
}

.product-card h3 {
  margin: 18px 0 8px;
}

.product-card p {
  min-height: 66px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-meta {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  color: #31565d;
  font-size: 13px;
  font-weight: 750;
}

.zh-text,
.catalog-count-zh {
  display: none;
}

.is-zh .en-text,
.is-zh .catalog-count-en {
  display: none;
}

.is-zh .zh-text,
.is-zh .catalog-count-zh {
  display: inline;
}

.catalog-heading {
  align-items: start;
}

.catalog-intro {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.catalog-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 52, 58, 0.06);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.filter-group > span {
  flex: 0 0 auto;
  min-width: 70px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 15px;
  color: #31565d;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}

.catalog-status {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.catalog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 52, 58, 0.06);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-image-button {
  display: block;
  width: 100%;
  padding: 0;
  background: #f5f6f4;
  border: 0;
  cursor: pointer;
}

.catalog-image-button:focus-visible {
  outline: 3px solid rgba(0, 62, 73, 0.25);
  outline-offset: -3px;
}

.catalog-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f6f4;
}

.catalog-card-body {
  padding: 14px;
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.catalog-tags > span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  color: #31565d;
  background: var(--soft);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 850;
}

.catalog-card h3 {
  min-height: 44px;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.25;
}

.catalog-specs,
.detail-specs {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.catalog-specs div,
.detail-specs div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.catalog-specs dt,
.detail-specs dt {
  color: #31565d;
  font-weight: 900;
}

.catalog-specs dd,
.detail-specs dd {
  margin: 0;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.mini-button {
  min-height: 38px;
  padding: 0 10px;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-button.primary {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}

.variant-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
}

.variant-dot {
  width: 24px;
  height: 24px;
  padding: 0;
  background: var(--swatch);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c9d4d1;
  cursor: pointer;
}

.variant-dot.is-active {
  box-shadow: 0 0 0 2px var(--deep);
}

.quality {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

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

.quality-list div,
.flow-grid div {
  min-height: 160px;
  padding: 26px;
  background: linear-gradient(135deg, #fff 0%, var(--soft) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quality-list strong,
.flow-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
}

.quality-list span,
.flow-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.detail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 78px;
}

.detail-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.compact {
  margin-bottom: 24px;
}

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

.flow-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.about {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 42px;
  padding-bottom: 4px;
  border-top: 1px solid var(--line);
}

.inquiry {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

.inquiry-copy {
  position: sticky;
  top: 150px;
  padding: 36px;
  background: var(--deep);
  color: #fff;
  border-radius: 8px;
}

.inquiry-copy h2,
.inquiry-copy .eyebrow {
  color: #fff;
}

.inquiry-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card a {
  color: #fff;
  font-weight: 750;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cad8d4;
  border-radius: 4px;
  padding: 14px 13px;
  color: var(--text);
  background: #fbfcfb;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 3px rgba(0, 62, 73, 0.1);
}

textarea {
  resize: vertical;
}

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

.sent {
  background: #2d6b50 !important;
  border-color: #2d6b50 !important;
}

.footer {
  color: #d9e7e5;
  background: var(--deep);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px 0;
}

.footer .brand {
  color: #fff;
}

.footer .brand span,
.footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: #1f9d55;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(9, 68, 42, 0.28);
  font-weight: 900;
}

.product-dialog {
  width: min(960px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(0, 34, 40, 0.48);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 38px;
  height: 38px;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.dialog-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 28px;
  background: #fff;
}

.dialog-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f6f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dialog-images .variant-dots {
  margin-top: 14px;
}

.is-zh {
  font-family: Inter, "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}

.is-zh h1,
.is-zh h2,
.is-zh .lookbook-panel strong,
.is-zh .series-card h3 {
  font-family: "Microsoft YaHei", "PingFang SC", Inter, system-ui, sans-serif;
  font-weight: 800;
}

.is-zh .eyebrow,
.is-zh .button,
.is-zh .nav-cta,
.is-zh label {
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 1040px) {
  .trade-strip {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 10px 20px 6px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    padding: 16px 24px;
  }

  .nav-actions {
    gap: 8px;
  }

  .brand strong {
    font-size: 28px;
  }

  .menu-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 15px;
    color: var(--deep);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-weight: 800;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .why,
  .about,
  .quality,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-gallery {
    min-height: 500px;
  }

  .facts,
  .series-grid,
  .product-grid,
  .catalog-grid,
  .category-grid,
  .flow-grid,
  .detail-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .series-card {
    grid-template-columns: 1fr;
  }

  .facts div:nth-child(2) {
    border-right: 0;
  }

  .facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .inquiry-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 32px, 1340px);
  }

  .trade-strip span:nth-child(n + 3) {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .hero-card,
  .hero-main {
    grid-row: auto;
    aspect-ratio: 1 / 0.82;
  }

  .facts,
  .series-grid,
  .product-grid,
  .catalog-grid,
  .category-grid,
  .why-list,
  .quality-list,
  .flow-grid,
  .detail-strip,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .why-list div:last-child {
    grid-column: auto;
  }

  .catalog-specs div,
  .detail-specs div {
    grid-template-columns: 72px 1fr;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .dialog-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts div:last-child {
    border-bottom: 0;
  }

  .section-row {
    align-items: start;
    flex-direction: column;
  }

  .catalog-toolbar {
    margin-left: -4px;
    margin-right: -4px;
    padding: 14px 12px;
  }

  .filter-group {
    align-items: flex-start;
  }

  .filter-group > span {
    min-width: 58px;
    padding-top: 10px;
  }

  .lookbook-panel,
  .lookbook-panel.large {
    min-height: 340px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
