:root {
  --ink: #111313;
  --muted: #626866;
  --line: #e4e7e3;
  --paper: #f7f8f5;
  --white: #ffffff;
  --accent: #24483f;
  --accent-2: #c5a46f;
  --soft: #ebefe9;
  --flow-arrow: #9aa69d;
  --shadow: 0 24px 60px rgba(17, 19, 19, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img[hidden] {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(228, 231, 227, 0.82);
  background: rgba(247, 248, 245, 0.88);
  backdrop-filter: blur(18px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links,
.header-actions,
.language,
.hero-actions,
.footer-links,
.footer-contact {
  display: flex;
  align-items: center;
}

.brand {
  font-weight: 900;
}

.nav-links {
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer-links a:hover {
  color: var(--ink);
}

.header-actions {
  gap: 14px;
}

.language {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.language .active {
  color: var(--white);
  background: var(--ink);
}

.quote-btn,
.primary-btn,
.secondary-btn,
.cart-link,
.cart-btn,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.quote-btn,
.primary-btn,
.inquiry-form button {
  color: var(--white);
  background: var(--accent);
}

.quote-btn {
  padding: 0 20px;
  font-size: 14px;
}

.cart-link {
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
}

.cart-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-size: 12px;
}

.primary-btn,
.secondary-btn {
  padding: 0 24px;
}

.primary-btn {
  border: 0;
  cursor: pointer;
}

.cart-btn {
  padding: 0 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: var(--white);
  cursor: pointer;
}

.secondary-btn {
  border: 1px solid rgba(17, 19, 19, 0.16);
  color: var(--ink);
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(720px, 1150px);
  align-items: stretch;
  justify-content: center;
  gap: 48px;
  min-height: min(760px, calc(100vh - 76px));
  padding: 56px 30px 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section,
.split-section,
.process-section,
.inquiry,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.96;
  font-weight: 700;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.04;
}

.hero-text {
  max-width: 630px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "•";
}

.hero-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1150px;
  min-height: 620px;
  height: 100%;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-fit: cover;
  transition: opacity 620ms ease;
}

.hero-media img.active,
.hero-media img:only-of-type {
  opacity: 1;
}

.hero-media::after {
  content: none;
}

.hero-media-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
}

.hero-media-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 19, 19, 0.28);
  cursor: pointer;
}

.hero-media-dots button.active {
  width: 26px;
  background: var(--ink);
}

.product-copy p,
.benefit-grid span,
.process-row span {
  display: block;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 92px 40px;
}

.product-section {
  padding-top: 56px;
}

.intro {
  max-width: 920px;
  text-align: center;
}

.poster-carousel {
  position: relative;
  width: min(1180px, calc(100% - 80px));
  height: min(620px, 72vh);
  min-height: 460px;
  margin: 28px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.poster-track,
.poster-slide {
  height: 100%;
}

.poster-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms ease;
  pointer-events: none;
}

.poster-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.poster-slide[data-url] {
  cursor: pointer;
}

.poster-image-link,
.poster-slide img {
  position: absolute;
  inset: 0;
}

.poster-image-link {
  z-index: 0;
  display: block;
}

.poster-slide img {
  filter: saturate(0.92);
}

.poster-slide::after {
  content: none;
}

.poster-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(650px, 100%);
  height: 100%;
  padding: 54px;
  color: var(--white);
}

.poster-copy .section-kicker {
  color: var(--accent-2);
}

.poster-copy h2 {
  font-size: clamp(36px, 5vw, 66px);
}

.poster-copy p:last-child {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.poster-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.poster-prev,
.poster-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 19, 19, 0.42);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.poster-dots {
  display: flex;
  gap: 8px;
}

.poster-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.poster-dots button.active {
  width: 26px;
  background: var(--white);
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 700;
}

.intro p:last-child,
.split-section p,
.inquiry p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.section-heading a {
  color: var(--accent);
  font-weight: 800;
}

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

.featured-heading {
  margin-bottom: 30px;
}

.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 84px;
}

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

.product-card img {
  height: 360px;
  background: var(--soft);
}

.product-copy {
  padding: 24px;
}

.product-copy h3,
.benefit-grid h3,
.process-row h3 {
  margin: 10px 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.product-copy span,
.benefit-grid p,
.process-row p,
.site-footer p,
.footer-contact {
  color: var(--muted);
  line-height: 1.55;
}

.product-copy .product-model {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 40px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 86px 40px 60px;
}

.catalog-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 72px);
}

.catalog-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 19, 19, 0.07);
}

.catalog-panel span,
.catalog-card p {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-panel strong {
  font-size: 25px;
  line-height: 1.18;
}

.catalog-panel a,
.catalog-image-link,
.catalog-card a {
  color: var(--accent);
  font-weight: 800;
}

.catalog-image-link {
  display: block;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 40px 92px;
}

.filter-panel {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.filter-panel h2 {
  font-size: 34px;
}

.filter-group {
  display: grid;
  gap: 12px;
}

.filter-group h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.filter-group input {
  width: 16px;
  height: 16px;
  min-height: 0;
  accent-color: var(--accent);
}

.catalog-results {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.catalog-toolbar h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.catalog-toolbar select {
  width: min(250px, 100%);
  background: var(--white);
}

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

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

.catalog-card img {
  height: 260px;
  background: var(--soft);
}

.catalog-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.catalog-card h3 {
  margin: 0;
  min-height: 56px;
  font-size: 22px;
  line-height: 1.25;
}

.catalog-card span {
  color: var(--muted);
  font-size: 14px;
}

.catalog-card .catalog-model {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 92px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.catalog-cta .section-kicker {
  color: var(--accent-2);
}

.catalog-cta h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
}

.catalog-cta .primary-btn {
  color: var(--ink);
  background: var(--white);
}

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

.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 28px 40px 34px;
  text-transform: uppercase;
}

.shop-tabs button {
  position: relative;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.shop-tabs button.active {
  color: var(--ink);
}

.shop-tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: #1d5fd0;
}


.shop-poster {
  position: relative;
  width: 100%;
  height: 465px;
  margin: 0 0 26px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.shop-poster-track,
.shop-poster-track img,
.shop-poster > img {
  position: absolute;
  inset: 0;
}

.shop-poster-track img,
.shop-poster > img {
  opacity: 0;
  filter: saturate(0.95);
  transition: opacity 620ms ease;
}

.shop-poster-track img.active,
.shop-poster > img {
  opacity: 1;
}

.shop-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(17, 19, 19, 0.42);
}

.shop-poster-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(760px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 42px 24px;
  text-align: center;
}

.shop-poster .section-kicker {
  color: var(--accent-2);
}

.shop-poster h1 {
  font-size: clamp(30px, 3.2vw, 46px);
  margin: 0;
}

.shop-poster a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.shop-poster-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  height: auto;
  margin: 0;
  padding: 0 24px;
}

.shop-poster-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.shop-poster-dots button.active {
  width: 26px;
  background: var(--white);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 54px;
  row-gap: 56px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 40px 82px;
}

.shop-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.shop-card img {
  width: 100%;
  max-width: 178px;
  height: 205px;
  object-fit: contain;
  margin-bottom: 8px;
}

.shop-card h2 {
  margin: 0;
  min-height: 40px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.shop-card p {
  margin: 7px 0 0;
  color: #9a9fa5;
  font-size: 14px;
  line-height: 1.4;
}

.shop-price {
  display: block;
  margin-top: 9px;
  color: #1d5fd0;
  font-size: 15px;
  font-weight: 800;
}

.shop-badge {
  position: absolute;
  top: -4px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: var(--white);
  background: #e92f35;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.blog-hero img {
  position: absolute;
  inset: 0;
  filter: grayscale(0.2);
}

.blog-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(17, 19, 19, 0.58);
}

.blog-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(56px, 8vw, 92px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 56px 40px 92px;
  background: var(--white);
}

.blog-main {
  display: grid;
  gap: 34px;
}

.breadcrumb {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.blog-post {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.blog-post img {
  height: 132px;
  border-radius: 4px;
}

.blog-post h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.blog-post time {
  display: block;
  margin-top: 8px;
  color: #9a9fa5;
  font-size: 13px;
}

.blog-post p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-post a {
  display: inline-flex;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 800;
}

.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 26px;
}

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

.article-hero,
.article-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 72px 40px 0;
}

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

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 74px);
}

.article-hero time {
  color: var(--muted);
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  padding-bottom: 92px;
}

.article-content {
  min-width: 0;
}

.article-content > img {
  height: min(520px, 58vh);
  min-height: 360px;
  border-radius: 8px;
  background: var(--soft);
}

.article-body {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.78;
}

.article-body p {
  margin: 0;
}

.related-articles {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.related-articles h2 {
  font-size: 24px;
}

.related-article-link {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.related-article-link span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.related-article-link strong {
  line-height: 1.35;
}

.blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
}

.blog-search input {
  min-height: 44px;
  border-radius: 0;
  background: #eef0f2;
}

.blog-search button {
  border: 0;
  color: var(--white);
  background: #78818a;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
}

.social-row {
  display: flex;
  gap: 9px;
  padding: 26px 0;
  border-top: 1px solid #cfd4d8;
  border-bottom: 1px solid #cfd4d8;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--white);
  background: #1d5fd0;
  font-size: 14px;
  font-weight: 900;
}

.social-row a:nth-child(2) {
  background: #22a7e8;
}

.social-row a:nth-child(3) {
  background: #d92525;
}

.hot-product {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hot-product h2 {
  justify-self: start;
  margin: 0 0 18px;
  font-size: 24px;
}

.hot-product img {
  width: 220px;
  height: 260px;
  object-fit: contain;
}

.hot-product h3 {
  margin: 16px 0 6px;
  font-size: 17px;
}

.hot-product p {
  margin: 0;
  color: #9a9fa5;
}

.hot-product strong {
  margin-top: 8px;
  color: #1d5fd0;
}

.hot-product a {
  margin-top: 14px;
  color: var(--accent);
  font-weight: 800;
}

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.about-hero img {
  position: absolute;
  inset: 0;
  filter: saturate(0.9);
}

.about-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(17, 19, 19, 0.58);
}

.about-hero div {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: 72px 40px;
  text-align: center;
}

.about-hero .section-kicker {
  color: var(--accent-2);
}

.about-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
}

.about-hero p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.about-stats,
.about-video-section,
.capability-section,
.custom-service-section,
.process-capability,
.faq-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 82px 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.about-stats div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.about-stats strong {
  display: block;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.about-video-section {
  padding-top: 0;
  padding-bottom: 30px;
}

.about-video-section video {
  display: block;
  width: min(860px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: var(--ink);
  object-fit: cover;
}

.about-video-section + .capability-section {
  padding-top: 38px;
}

.capability-section {
  padding-bottom: 32px;
}

.capability-section + .custom-service-section {
  padding-top: 32px;
}

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

.capability-grid article,
.process-capability-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.capability-grid h3,
.process-capability-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.capability-grid p,
.process-capability-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.custom-service-section {
  display: grid;
  gap: 24px;
}

.custom-service-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.custom-service-card.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.custom-service-card.reverse img {
  order: 2;
}

.custom-service-card img {
  height: 360px;
  border-radius: 8px;
  background: var(--soft);
}

.custom-service-card p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.process-capability {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--line);
}

.process-capability > div:first-child {
  max-width: 760px;
  margin-bottom: 32px;
}

.process-capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-capability-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  gap: 44px;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 72px 40px 82px;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-main-image {
  overflow: hidden;
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.detail-main-image img {
  transition: transform 0.18s ease;
  will-change: transform;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-thumb {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.detail-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(36, 72, 63, 0.12);
}

.detail-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.detail-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
}

.detail-summary h1 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.04;
}

.detail-summary .hero-text {
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.55;
}

.sku-selector {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.selector-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.selector-heading h2 {
  font-size: 20px;
}

.selector-heading .section-kicker {
  margin-bottom: 8px;
}

.selector-heading > span,
.selector-meta span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.selector-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  min-width: 112px;
}

.selector-meta strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

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

.color-sku {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  text-align: left;
}

.color-sku img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}

.color-sku span {
  min-height: 30px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.color-sku.active {
  border-color: var(--accent);
  color: var(--ink);
  background: #f2f6f0;
  box-shadow: 0 0 0 2px rgba(36, 72, 63, 0.12);
}

.model-selector {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.selector-heading.compact {
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.selector-heading.compact h2 {
  font-size: 18px;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.model-list button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.model-list button.active {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 14px 34px rgba(17, 19, 19, 0.2);
  transition: transform 0.18s ease;
}

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

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

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-message {
  min-height: 22px;
  margin: -8px 0 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.related-products {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 40px 40px 82px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  padding: 92px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.benefit-grid div,
.process-row div {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-section {
  padding: 92px 40px 44px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.process-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  letter-spacing: 0;
}

.factory-flow {
  margin-top: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.factory-flow > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.factory-flow > h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0 0 28px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 19, 19, 0.16);
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
}

.factory-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 44px;
}

.factory-flow-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
}

.factory-flow-grid article:not(:nth-child(5)):not(:last-child)::after {
  position: absolute;
  top: 42px;
  right: -34px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--flow-arrow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.factory-flow-grid article:nth-child(5)::after {
  position: absolute;
  right: 50%;
  bottom: -30px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--flow-arrow);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(50%);
}

.factory-flow-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 4px;
  background: var(--soft);
  object-fit: cover;
}

.factory-flow-grid strong {
  color: var(--ink);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.1;
  text-transform: uppercase;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 44px;
  padding: 44px 40px 92px;
}

.inquiry-contact-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.inquiry-contact-list div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--accent);
}

.contact-icon-location::before {
  position: absolute;
  inset: 2px 4px 5px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-45deg);
}

.contact-icon-location::after {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.contact-icon-phone::before {
  position: absolute;
  inset: 3px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-38deg);
}

.contact-icon-clock {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.contact-icon-clock::before,
.contact-icon-clock::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 2px;
  background: currentColor;
  content: "";
  transform-origin: top center;
}

.contact-icon-clock::before {
  height: 6px;
  transform: rotate(180deg);
}

.contact-icon-clock::after {
  height: 5px;
  transform: rotate(125deg);
}

.inquiry-contact-list strong {
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 19, 19, 0.07);
}

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

.form-row-priority {
  margin-bottom: 2px;
}

.form-optional-fields {
  display: grid;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.form-optional-fields summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.form-optional-fields[open] summary {
  margin-bottom: 12px;
}

.form-reassurance {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

.inquiry-form button {
  width: 100%;
  min-height: 52px;
  border: 0;
  cursor: pointer;
}

.checkout-page {
  background: var(--paper);
}

.checkout-hero,
.checkout-layout,
.checkout-form-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 72px 40px 0;
}

.checkout-hero {
  display: grid;
  gap: 18px;
}

.checkout-hero h1 {
  max-width: 860px;
  font-size: clamp(40px, 5vw, 72px);
}

.checkout-hero p:last-child,
.checkout-form-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.cart-panel,
.checkout-summary,
.payment-next-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cart-panel,
.checkout-summary {
  padding: 24px;
}

.checkout-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.checkout-section-head h2,
.checkout-summary h2,
.checkout-form-section h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.text-button {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 132px 110px auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cart-item img {
  aspect-ratio: 1;
  height: auto;
  border-radius: 8px;
  background: var(--soft);
}

.cart-item h3 {
  margin: 0;
  font-size: 18px;
}

.cart-item p,
.cart-item span {
  display: block;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px minmax(48px, 1fr) 34px;
  gap: 6px;
  align-items: center;
}

.quantity-control button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.quantity-control input {
  min-height: 36px;
  padding: 0 6px;
  text-align: center;
}

.checkout-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.checkout-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.checkout-summary dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.checkout-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 44px;
  padding-bottom: 92px;
}

.checkout-result {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-weight: 900;
}

.payment-next-step {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #f2f6f0;
}

.payment-next-step[hidden] {
  display: none;
}

.payment-next-step p {
  margin: 0;
  font-size: 15px;
}

.paypal-payment-form {
  display: inline-grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  width: min(100%, 360px);
}

.paypal-hosted-button {
  width: 100%;
  min-height: 44px;
  padding: 0 32px;
  border: 0;
  border-radius: 8px;
  background: #ffd140;
  color: #000;
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.paypal-hosted-button:hover {
  background: #f2c300;
}

.paypal-cards {
  max-width: 180px;
  height: auto;
}

.paypal-payment-form p {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.paypal-wordmark {
  height: 14px;
  width: auto;
  margin-left: 3px;
  vertical-align: middle;
}

.empty-cart {
  display: grid;
  gap: 12px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}

.empty-cart h3,
.empty-cart p {
  margin: 0;
}

.empty-cart p {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, auto) minmax(220px, auto);
  grid-template-areas:
    "brand social contact"
    "brand links contact";
  column-gap: 52px;
  row-gap: 18px;
  align-items: start;
  padding: 42px 40px 54px;
  border-top: 1px solid var(--line);
}

.site-footer > div:first-child {
  grid-area: brand;
}

.footer-links {
  grid-area: links;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
}

.footer-social {
  grid-area: social;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-contact {
  grid-area: contact;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  font-size: 14px;
  text-align: right;
}

@media (max-width: 1180px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 38px;
  }

  .shop-poster {
    width: 100%;
  }
}

@media (max-width: 1760px) {
  .hero {
    grid-template-columns: minmax(340px, 480px) minmax(600px, 1fr);
  }
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
    min-height: auto;
    padding: 18px 24px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    order: 4;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    padding: 18px 0 4px;
    border-top: 1px solid var(--line);
    overflow: visible;
  }

  .site-header[data-nav-open="true"] .nav-links {
    display: flex;
  }

  .header-actions {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }

  .hero,
  .detail-hero,
  .article-layout,
  .checkout-layout,
  .checkout-form-section,
  .blog-layout,
  .custom-service-card,
  .custom-service-card.reverse,
  .faq-section,
  .split-section,
  .inquiry,
  .catalog-hero,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 46px 24px 20px;
  }

  .hero-media {
    aspect-ratio: 1150 / 620;
    min-height: 0;
    height: auto;
  }

  .poster-carousel {
    width: calc(100% - 48px);
  }

  .product-grid,
  .featured-product-grid,
  .about-stats,
  .capability-grid,
  .process-capability-grid,
  .process-row,
  .factory-flow-grid,
  .catalog-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-flow-grid article::after {
    display: none;
  }

  .filter-panel {
    position: static;
  }

  .detail-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    font-size: 19px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .quote-btn {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 43px;
  }

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

  .hero-points {
    font-size: 14px;
  }

  .poster-carousel {
    width: calc(100% - 40px);
    height: 560px;
    min-height: 520px;
    margin-top: 28px;
  }

  .poster-copy {
    justify-content: flex-end;
    padding: 28px 22px 92px;
  }

  .poster-copy h2 {
    font-size: 34px;
  }

  .poster-copy p:last-child {
    font-size: 16px;
  }

  .poster-controls {
    right: 18px;
    bottom: 22px;
    left: 18px;
    justify-content: space-between;
  }

  .section,
  .detail-hero,
  .related-products,
  .article-hero,
  .article-layout,
  .checkout-hero,
  .checkout-layout,
  .checkout-form-section,
  .blog-layout,
  .about-stats,
  .about-video-section,
  .capability-section,
  .custom-service-section,
  .process-capability,
  .faq-section,
  .split-section,
  .process-section,
  .inquiry,
  .catalog-hero,
  .catalog-layout,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "social"
      "links"
      "contact";
    row-gap: 18px;
  }

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

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

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

  .product-grid,
  .featured-product-grid,
  .benefit-grid,
  .about-stats,
  .capability-grid,
  .process-capability-grid,
  .process-row,
  .factory-flow-grid,
  .catalog-grid,
  .shop-grid,
  .blog-post,
  .form-row,
  .cart-item,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .cart-item {
    align-items: start;
  }

  .cart-item img {
    width: 112px;
  }

  .shop-tabs {
    gap: 24px;
    padding: 24px 20px 28px;
  }

  .shop-poster {
    width: 100%;
    height: 430px;
    margin-bottom: 24px;
  }

  .shop-poster::after {
    background: rgba(17, 19, 19, 0.48);
  }

  .shop-poster-copy {
    justify-content: center;
    padding: 24px;
  }

  .shop-poster h1 {
    font-size: 30px;
  }

  .shop-grid {
    row-gap: 42px;
    padding: 10px 20px 64px;
  }

  .shop-card img {
    max-width: 190px;
    height: 240px;
  }

  .blog-hero {
    height: 280px;
  }

  .blog-layout {
    gap: 42px;
    padding-top: 38px;
  }

  .blog-post img {
    height: 210px;
  }

  .article-content > img {
    height: 330px;
    min-height: 280px;
  }

  .article-body {
    font-size: 17px;
  }

  .about-hero {
    min-height: 460px;
  }

  .about-hero div {
    padding: 56px 20px;
  }

  .custom-service-card.reverse img {
    order: 0;
  }

  .custom-service-card img {
    height: 280px;
  }

  .sku-selector {
    padding: 16px;
  }

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

  .catalog-toolbar,
  .selector-heading,
  .catalog-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-cta {
    width: calc(100% - 40px);
    padding: 24px;
  }

  .product-card img {
    height: 320px;
  }

  .inquiry-form {
    padding: 20px;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 76px;
    width: 50px;
    height: 50px;
  }
}
