:root {
  --bg: #f4efe8;
  --bg-strong: #eadbca;
  --surface: rgba(255, 250, 245, 0.76);
  --surface-strong: rgba(255, 248, 242, 0.94);
  --text: #20160f;
  --muted: #66584d;
  --line: rgba(32, 22, 15, 0.1);
  --brand: #a50034;
  --brand-deep: #700125;
  --accent: #ffc27a;
  --accent-soft: #fff0df;
  --shadow: 0 28px 80px rgba(77, 45, 20, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans Thai", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 194, 122, 0.35), transparent 22%),
    radial-gradient(circle at 100% 12%, rgba(165, 0, 52, 0.12), transparent 20%),
    linear-gradient(180deg, #faf6f0 0%, #f4efe8 100%);
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-top-strip {
  position: relative;
  z-index: 1;
  padding: 0;
  border-bottom: 1px solid rgba(165, 0, 52, 0.1);
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.98), rgba(248, 240, 230, 0.92));
}

.site-top-strip-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
}

.brand-text {
  font-size: 1.05rem;
}

.header-category-panel {
  display: none;
}

.header-category-label {
  margin: 0;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-browser-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 104px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.category-browser-rail::-webkit-scrollbar {
  display: none;
}

.category-rail-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 112px;
  padding: 12px 10px;
  border: 1px solid rgba(32, 22, 15, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 237, 229, 0.94));
  color: #241b15;
  text-align: center;
  box-shadow: 0 14px 28px rgba(98, 67, 38, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.category-rail-card.is-active {
  background: linear-gradient(145deg, rgba(165, 0, 52, 0.97), rgba(104, 0, 33, 0.94));
  color: #fff;
  box-shadow: 0 18px 32px rgba(104, 0, 33, 0.2);
}

.site-header.is-scrolled .header-category-panel {
  gap: 6px;
}

.site-header.is-scrolled .header-category-label {
  font-size: 0.64rem;
  letter-spacing: 0.09em;
}

.site-header.is-scrolled .category-browser-rail {
  grid-auto-columns: 82px;
  gap: 7px;
}

.site-header.is-scrolled .category-rail-card {
  min-height: 88px;
  padding: 8px 7px;
  border-radius: 16px;
}

.site-header.is-scrolled .category-rail-icon {
  min-height: 36px;
}

.site-header.is-scrolled .category-rail-icon svg {
  width: 34px;
  height: 34px;
}

.site-header.is-scrolled .category-rail-title {
  font-size: 0.66rem;
}

.category-rail-icon {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 52px;
}

.category-rail-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-rail-title {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-categories-toggle:hover,
.site-nav-categories-toggle:focus-visible {
  color: var(--text);
}

.site-nav-item {
  position: relative;
}

.site-nav-categories-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-nav-categories-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 28;
  display: grid;
  gap: 12px;
  width: min(560px, 72vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: 0 24px 44px rgba(74, 44, 24, 0.16);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.site-header.is-categories-open .site-nav-categories-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.header-category-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(165, 0, 52, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  font: inherit;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(74, 44, 24, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-category-mobile-toggle:hover,
.header-category-mobile-toggle:focus-visible {
  color: var(--brand-deep);
  box-shadow: 0 16px 28px rgba(74, 44, 24, 0.12);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 16px 30px rgba(165, 0, 52, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

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

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 243, 230, 0.92), rgba(255, 249, 244, 0.84));
  box-shadow: var(--shadow);
}

.promo-bar p,
.promo-bar a {
  margin: 0;
}

.promo-bar a {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  color: var(--brand);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 44px 0 26px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.panel-kicker,
.mini-label,
.card-label,
.feature-chip {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.highlight-copy h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero-text,
.highlight-copy p,
.benefit-card p,
.feature-card p,
.panel-copy p,
.panel-copy li,
.compare-card li,
.step-card p,
.cta-banner p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

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

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-mini-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.68);
  box-shadow: 0 18px 32px rgba(77, 45, 20, 0.08);
}

.hero-mini-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.hero-mini-grid span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-kicker {
  letter-spacing: 0.12em;
}

.hero-banner {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 214, 165, 0.34), transparent 22%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.52), transparent 20%),
    linear-gradient(180deg, rgba(244, 230, 210, 0.92), rgba(237, 221, 198, 0.96));
  box-shadow: var(--shadow);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  pointer-events: none;
}

.hero-banner-halo {
  position: absolute;
  right: -10%;
  bottom: -14%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(198, 84, 67, 0.16) 0%, rgba(198, 84, 67, 0.08) 26%, transparent 68%);
  filter: blur(14px);
}

.hero-banner-roomline {
  position: absolute;
  top: 130px;
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-banner-roomline-left {
  left: 36px;
}

.hero-banner-roomline-right {
  right: 36px;
}

.hero-banner-copy {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 3;
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.hero-banner-copy strong {
  font-family: "Space Grotesk", sans-serif;
  display: block;
  max-width: 8ch;
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.hero-banner-copy p {
  margin: 0;
  color: rgba(102, 88, 77, 0.9);
  line-height: 1.75;
  max-width: 28ch;
}

.hero-banner-scene {
  position: absolute;
  inset: 0;
}

.hero-banner-house {
  position: absolute;
  right: 18%;
  bottom: 126px;
  width: 236px;
  height: 236px;
  border-top: 12px solid rgba(255, 255, 255, 0.52);
  border-left: 12px solid rgba(255, 255, 255, 0.52);
  border-radius: 20px 0 0 0;
  transform: rotate(45deg);
  box-shadow: -16px -16px 28px rgba(122, 93, 64, 0.08);
  opacity: 0.95;
}

.hero-banner-stage {
  position: absolute;
  right: 10%;
  bottom: 34px;
  left: 14%;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(90, 64, 41, 0.18), rgba(90, 64, 41, 0) 72%);
  filter: blur(6px);
}

.hero-banner-item {
  position: absolute;
  z-index: 2;
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 22px rgba(39, 28, 18, 0.14))
    drop-shadow(0 4px 10px rgba(39, 28, 18, 0.06));
}

.hero-banner-item-ac {
  top: 146px;
  right: 10%;
  width: 56%;
  max-width: 352px;
}

.hero-banner-item-refrigerator {
  left: 41%;
  bottom: 56px;
  height: 276px;
}

.hero-banner-item-washtower {
  left: 67%;
  bottom: 44px;
  height: 286px;
}

.hero-banner-item-water {
  left: 27%;
  bottom: 112px;
  height: 158px;
}

.hero-banner-item-tv {
  left: 12%;
  bottom: 56px;
  height: 110px;
}

.hero-banner-item-aircare {
  right: 3%;
  bottom: 62px;
  height: 162px;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 205, 145, 0.3), transparent 26%),
    radial-gradient(circle at 16% 18%, rgba(255, 223, 189, 0.22), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(255, 223, 189, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(248, 236, 218, 0.92), rgba(241, 228, 209, 0.96));
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-sun {
  position: absolute;
  border-radius: 50%;
  top: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.06);
}

.hero-sun::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(255, 255, 255, 0.44) 0deg 8deg, transparent 8deg 20deg);
  -webkit-mask: radial-gradient(circle, transparent 56%, #000 58%);
  mask: radial-gradient(circle, transparent 56%, #000 58%);
}

.hero-cloud,
.hero-room-line {
  position: absolute;
  opacity: 0.4;
}

.hero-cloud {
  width: 92px;
  height: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.66);
}

.hero-cloud::before,
.hero-cloud::after {
  content: "";
  position: absolute;
  bottom: 100%;
  border-radius: 999px 999px 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.66);
}

.hero-cloud::before {
  left: 10px;
  width: 28px;
  height: 14px;
}

.hero-cloud::after {
  left: 34px;
  width: 38px;
  height: 18px;
}

.hero-cloud-left {
  top: 150px;
  left: 72px;
}

.hero-cloud-right {
  top: 110px;
  right: 88px;
}

.hero-room-line {
  width: 132px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-room-line-left {
  top: 188px;
  left: 42px;
}

.hero-room-line-right {
  top: 204px;
  right: 36px;
}

.hero-showroom {
  position: relative;
  height: 100%;
  min-height: 680px;
  padding: 48px 34px 26px;
}

.hero-house {
  position: relative;
  width: min(100%, 430px);
  height: 410px;
  margin: 138px auto 0;
  overflow: visible;
  border-radius: 30px 30px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 28px 44px rgba(123, 90, 61, 0.1);
}

.hero-house::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 272px;
  height: 272px;
  border-top: 10px solid rgba(255, 255, 255, 0.58);
  border-left: 10px solid rgba(255, 255, 255, 0.58);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 16px 0 0 0;
  box-shadow: -18px -18px 32px rgba(111, 85, 60, 0.08);
}

.hero-stage {
  position: absolute;
  inset: 28px 22px 18px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 211, 160, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.95), rgba(244, 234, 217, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    inset 0 -18px 40px rgba(204, 170, 130, 0.08);
}

.hero-stage-item {
  position: absolute;
  z-index: 2;
  opacity: 0;
  animation: hero-rise-in 920ms cubic-bezier(0.2, 0.82, 0.2, 1) forwards;
  will-change: transform, opacity;
}

@keyframes hero-rise-in {
  from {
    opacity: 0;
    transform: translate3d(var(--hero-shift-x, 0), 68px, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(var(--hero-shift-x, 0), 0, 0) scale(1);
  }
}

.hero-ac {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 62%;
  max-width: 332px;
  --hero-shift-x: -50%;
  animation-delay: 0.1s;
  filter:
    drop-shadow(0 16px 28px rgba(34, 27, 21, 0.12))
    drop-shadow(0 3px 8px rgba(34, 27, 21, 0.05));
}

.hero-product {
  display: block;
  position: absolute;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 22px rgba(39, 28, 18, 0.12))
    drop-shadow(0 4px 10px rgba(39, 28, 18, 0.05));
}

.hero-product-tv {
  left: 7%;
  bottom: 18px;
  height: 92px;
  animation-delay: 0.48s;
}

.hero-product-dishwasher {
  left: 17%;
  bottom: 22px;
  height: 176px;
  animation-delay: 0.34s;
}

.hero-product-water {
  left: 36%;
  bottom: 64px;
  height: 176px;
  animation-delay: 0.4s;
}

.hero-product-refrigerator {
  left: 28%;
  bottom: 18px;
  height: 246px;
  animation-delay: 0.22s;
}

.hero-product-washtower {
  left: 49%;
  bottom: 14px;
  height: 282px;
  animation-delay: 0.3s;
}

.hero-product-vacuum {
  left: 69%;
  bottom: 22px;
  height: 212px;
  animation-delay: 0.44s;
}

.hero-product-air {
  left: 81%;
  bottom: 54px;
  height: 184px;
  animation-delay: 0.52s;
}

.hero-product-monitor {
  right: 6%;
  bottom: 24px;
  height: 112px;
  animation-delay: 0.6s;
}

.hero-floor {
  position: absolute;
  right: 10%;
  bottom: 8px;
  left: 10%;
  z-index: 1;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(103, 76, 50, 0.22), rgba(103, 76, 50, 0) 70%);
  filter: blur(5px);
}

.hero-mark {
  position: absolute;
  left: 11%;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff4c2e, #d61d13);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(214, 29, 19, 0.22);
}

.feature-chip {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(165, 0, 52, 0.08);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
}

section {
  margin-top: 28px;
}

.highlight,
.benefits,
.offers,
.full-catalog,
.subscribe-form,
.plans,
.compare,
.steps {
  padding: 40px 0 8px;
}

.highlight-copy,
.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.highlight-copy h2,
.section-heading h2,
.cta-banner h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 4rem);
}

.feature-grid,
.benefit-grid,
.offer-grid,
.catalog-groups,
.subscribe-layout,
.compare-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.feature-card,
.benefit-card,
.plan-panel,
.compare-card,
.step-card,
.cta-banner,
.stats-strip {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.feature-card,
.benefit-card,
.compare-card,
.step-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 239, 231, 0.94));
}

.feature-card.large {
  min-height: 260px;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 122, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 242, 234, 0.98));
}

.feature-card.dark {
  color: #fff;
  background: linear-gradient(135deg, rgba(165, 0, 52, 0.95), rgba(111, 0, 36, 0.9));
}

.feature-card.dark p {
  color: rgba(255, 255, 255, 0.84);
}

.feature-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.stats-strip div {
  display: grid;
  gap: 8px;
}

.stats-strip strong,
.benefit-card span,
.step-card strong,
.price-box strong {
  font-family: "Space Grotesk", sans-serif;
}

.stats-strip strong {
  font-size: 1.8rem;
}

.stats-strip span,
.price-box span {
  color: var(--muted);
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.offer-head {
  padding: 10px 8px 16px;
}

.offer-media {
  display: grid;
  place-items: center;
  min-height: 232px;
  margin-bottom: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.92), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(255, 220, 182, 0.16), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(255, 226, 197, 0.15), transparent 26%),
    linear-gradient(180deg, #fffaf5, #f0e3d4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 24px rgba(98, 67, 38, 0.06);
  overflow: hidden;
}

.offer-media img {
  width: auto;
  max-width: 74%;
  max-height: 184px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 22px rgba(48, 35, 24, 0.08))
    drop-shadow(0 4px 8px rgba(48, 35, 24, 0.04));
}

.offer-media img[data-premium-blend="soft"] {
  mix-blend-mode: multiply;
  opacity: 0.995;
  filter:
    contrast(1.04)
    saturate(1.02)
    drop-shadow(0 18px 22px rgba(48, 35, 24, 0.08))
    drop-shadow(0 4px 8px rgba(48, 35, 24, 0.04));
}

.offer-head h3 {
  margin: 10px 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.offer-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.offer-model-code {
  margin: 0 0 12px !important;
  color: var(--brand) !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.offer-feature-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(64, 51, 41, 0.88);
}

.offer-feature-list li {
  line-height: 1.5;
}

.offer-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(165, 0, 52, 0.08);
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-box {
  padding: 22px;
  border: 1px solid rgba(32, 22, 15, 0.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(165, 0, 52, 0.02);
}

.rental-label {
  margin: 0 0 16px;
  color: #7f8798;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-line {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.rental-line span {
  color: #7f8798;
  line-height: 1.5;
}

.rental-line strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.promo-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff3f3, #fff8f8);
  flex-wrap: wrap;
}

.promo-line strong {
  color: #d9473b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.old-price {
  color: #8a91a0;
  text-decoration: line-through;
}

.promo-line em {
  margin-left: auto;
  padding: 6px 11px;
  border-radius: 999px;
  background: #e1483c;
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.offer-actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.offer-actions .button {
  width: 100%;
  min-height: 56px;
  border: 0;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.offer-primary {
  background: linear-gradient(135deg, #f23320, #9f160f);
  color: #fff;
}

.offer-whatsapp,
.offer-line {
  background: linear-gradient(135deg, #65cf6b, #3e8e84);
  color: #fff;
}

.offer-outline {
  border: 1.5px solid #f06a5f;
  background: transparent;
  color: #e05548;
}

.catalog-note {
  max-width: 76ch;
  color: var(--muted);
  line-height: 1.8;
}

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

.answer-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 240, 233, 0.96));
  box-shadow: var(--shadow);
}

.answer-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
}

.answer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.intent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.intent-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(165, 0, 52, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.seo-page {
  padding-top: 26px;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
  padding: 18px 0 12px;
}

.seo-copy h1 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-breadcrumb strong {
  color: var(--text);
}

.seo-visual {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 122, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(248, 241, 234, 0.96));
  box-shadow: var(--shadow);
}

.seo-visual-frame {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 231, 198, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(251, 243, 234, 0.98), rgba(241, 229, 214, 0.96));
}

.seo-visual-frame img {
  width: auto;
  max-width: 82%;
  max-height: 300px;
  object-fit: contain;
  filter:
    drop-shadow(0 22px 30px rgba(28, 20, 12, 0.1))
    drop-shadow(0 4px 8px rgba(28, 20, 12, 0.04));
}

.seo-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.seo-pill {
  padding: 16px 18px;
  border: 1px solid rgba(232, 232, 232, 0.95);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(29, 19, 10, 0.04);
}

.seo-pill strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}

.seo-pill span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.seo-sections {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}

.seo-link-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.seo-link-list a {
  color: var(--brand);
  font-weight: 700;
}

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

.resource-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.resource-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.catalog-groups {
  gap: 24px;
}

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

.category-browser-card {
  display: grid;
  justify-items: center;
  align-content: space-between;
  gap: 18px;
  min-height: 248px;
  padding: 28px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 240, 233, 0.94));
  box-shadow: var(--shadow);
  color: #19130f;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.category-browser-card:hover,
.category-browser-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(165, 0, 52, 0.16);
  box-shadow: 0 22px 42px rgba(98, 67, 38, 0.12);
  outline: none;
}

.category-browser-card.is-active {
  background: linear-gradient(145deg, rgba(165, 0, 52, 0.97), rgba(104, 0, 33, 0.94));
  color: #fff;
  box-shadow: 0 24px 44px rgba(104, 0, 33, 0.24);
}

.category-browser-title {
  font-size: clamp(1.1rem, 1.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.category-browser-icon {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 112px;
  color: currentColor;
}

.category-browser-icon svg {
  width: 108px;
  height: 108px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-browser-card small {
  color: rgba(69, 54, 45, 0.72);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.category-browser-card.is-active small {
  color: rgba(255, 255, 255, 0.82);
}

.catalog-group {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

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

.catalog-group-header h3,
.catalog-model h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.catalog-group-header p,
.catalog-model p,
.catalog-plan span,
.catalog-plan small {
  color: var(--muted);
}

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

.catalog-model {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto auto 1fr auto auto;
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(248, 240, 233, 0.92));
  box-shadow: 0 18px 36px rgba(98, 67, 38, 0.08);
  cursor: default;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.catalog-model:hover,
.catalog-model:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(165, 0, 52, 0.16);
  box-shadow: 0 22px 42px rgba(98, 67, 38, 0.1);
  outline: none;
}

.catalog-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 232px;
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 231, 198, 0.28), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(255, 220, 182, 0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 226, 197, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf2e7, #efe1d0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 24px rgba(98, 67, 38, 0.05);
}

.catalog-media-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a50034, #d14a68);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(165, 0, 52, 0.16);
}

.catalog-visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 188px;
  color: #b48d61;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  overflow: hidden;
}

.catalog-visual img {
  width: auto;
  max-width: 74%;
  max-height: 184px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 18px 22px rgba(48, 35, 24, 0.08))
    drop-shadow(0 4px 8px rgba(48, 35, 24, 0.04));
}

.catalog-visual img[data-premium-blend="soft"] {
  mix-blend-mode: multiply;
  opacity: 0.995;
  filter:
    contrast(1.04)
    saturate(1.02)
    drop-shadow(0 18px 22px rgba(48, 35, 24, 0.08))
    drop-shadow(0 4px 8px rgba(48, 35, 24, 0.04));
}

.catalog-visual span {
  display: inline-flex;
}

.catalog-model-code {
  display: inline-flex;
  width: fit-content;
  margin-top: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(165, 0, 52, 0.08);
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.catalog-model-subcode {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.catalog-model h4 {
  margin-top: 12px;
  min-height: 2.7em;
  font-size: 1.12rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
}

.catalog-model > p {
  margin: 10px 0 0;
  min-height: 4.8em;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(64, 51, 41, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-color-row {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  position: relative;
  z-index: 3;
}

.catalog-color-row > span {
  color: #a0a7b3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-color-swatches {
  position: relative;
  z-index: 3;
}

.catalog-color-dot {
  position: relative;
  z-index: 4;
  width: 28px;
  height: 28px;
}

.catalog-color-dot.is-active {
  border-color: rgba(165, 0, 52, 0.82);
  box-shadow:
    0 0 0 4px rgba(165, 0, 52, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.catalog-color-name {
  margin-top: 0;
  font-size: 0.98rem;
}

.catalog-rental-card {
  margin-top: 16px;
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(214, 180, 150, 0.18);
}

.catalog-rental-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #7d8797;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-plans {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.catalog-feature-list {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 1.05rem;
  color: rgba(64, 51, 41, 0.82);
}

.catalog-feature-list li {
  font-size: 0.93rem;
  line-height: 1.45;
}

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

.catalog-plan {
  display: grid;
  gap: 8px;
  padding: 0;
}

.catalog-plan span {
  font-size: 0.92rem;
}

.catalog-plan strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.05;
  color: #1a1a1a;
}

.catalog-plan-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 20px;
  border: 1px solid rgba(173, 34, 22, 0.06);
  background: linear-gradient(180deg, rgba(255, 248, 246, 0.98), rgba(255, 244, 241, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.catalog-plan-price-stack {
  display: grid;
  gap: 9px;
}

.catalog-special-payment {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(165, 0, 52, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 248, 0.96), rgba(249, 242, 237, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.catalog-special-payment span {
  color: rgba(122, 80, 85, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-special-payment strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(165, 0, 52, 0.08);
  background: rgba(255, 250, 248, 0.92);
  color: #7a5055;
  box-shadow: 0 10px 24px rgba(118, 61, 52, 0.05);
}

.promo-banner strong {
  color: inherit;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.promo-banner-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f48b79, #d64c38);
  box-shadow: 0 0 0 4px rgba(241, 90, 72, 0.09);
}

.catalog-plan-prices small {
  font-size: 0.86rem;
  color: rgba(86, 76, 74, 0.75);
}

.catalog-plan-prices-highlight b {
  color: #e05548;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.catalog-plan-prices-highlight em {
  margin-left: auto;
  min-width: 82px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e96a55, #c64737);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(201, 71, 55, 0.18);
}

.catalog-plan-prices-standard {
  border-color: rgba(67, 54, 47, 0.05);
  background: linear-gradient(180deg, rgba(250, 246, 241, 0.98), rgba(248, 242, 236, 0.94));
}

.catalog-plan-prices-standard .standard-note {
  color: rgba(97, 84, 77, 0.72);
  font-size: 0.82rem;
  text-decoration: none;
}

.catalog-plan-prices-standard em {
  margin-left: auto;
  min-width: 82px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b7aa9d, #8f8378);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 22px rgba(120, 104, 89, 0.14);
}

.catalog-cta-group {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.catalog-cta-group .button {
  width: 100%;
  min-height: 50px;
  border: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: none;
}

.catalog-cta-main {
  background: linear-gradient(135deg, #f23320, #9f160f);
  color: #fff;
}

.catalog-cta-whatsapp {
  background: linear-gradient(135deg, #65cf6b, #3e8e84);
  color: #fff;
}

.catalog-cta-outline {
  border: 1.5px solid #f06a5f;
  background: transparent;
  color: #e05548;
}

.form-intro h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.form-intro p:last-child {
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.8;
}

.subscribe-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.selected-products,
.enquiry-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.selected-header,
.form-heading {
  margin-bottom: 18px;
}

.selected-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.selected-header h3,
.form-heading h3,
.selected-card h4 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
}

.add-product {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(240, 106, 95, 0.45);
  border-radius: 999px;
  background: #fff;
  color: #e05548;
  cursor: pointer;
}

.selected-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(32, 22, 15, 0.06);
  border-radius: 22px;
  background: #fff;
}

.selected-card + .selected-card {
  margin-top: 14px;
}

.empty-products {
  display: grid;
  place-items: center;
  min-height: 140px;
  border: 1px dashed rgba(32, 22, 15, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  color: #97a0ae;
}

.selected-list:empty {
  display: none;
}

.selected-card-media {
  display: flex;
  align-items: center;
  gap: 16px;
}

.selected-thumb {
  width: 78px;
  height: 92px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 231, 198, 0.22), transparent 36%),
    radial-gradient(circle at 18% 14%, rgba(255, 220, 182, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 226, 197, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf2e7, #efe1d0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 0 0 1px rgba(32, 22, 15, 0.06);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  color: #b48d61;
  overflow: hidden;
}

.selected-thumb img {
  width: auto;
  max-width: 76%;
  max-height: 78px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 18px rgba(39, 28, 18, 0.08));
}

.selected-thumb img[data-premium-blend="soft"] {
  mix-blend-mode: multiply;
  opacity: 0.995;
  filter: contrast(1.04) saturate(1.02) drop-shadow(0 10px 18px rgba(39, 28, 18, 0.08));
}

.selected-thumb span {
  display: inline-flex;
}

.selected-meta {
  display: grid;
  gap: 6px;
}

.selected-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  color: #e05548;
}

.selected-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.selected-footer {
  display: grid;
  place-items: center;
  margin-top: 18px;
}

.add-product-large {
  min-width: 180px;
  min-height: 48px;
}

.selected-card p,
.form-heading p,
.enquiry-form label span,
.screening-copy,
.screening-card small {
  color: var(--muted);
}

.selected-card p {
  margin: 8px 0 0;
}

.selected-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  white-space: nowrap;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  position: relative;
}

.screening-panel,
.enquiry-fields {
  display: grid;
  gap: 16px;
}

.screening-group {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(32, 22, 15, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(165, 0, 52, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.98), rgba(248, 242, 235, 0.98));
}

.screening-group legend {
  padding: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.screening-copy {
  margin: 10px 0 0;
  line-height: 1.6;
}

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

.screening-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(32, 22, 15, 0.1);
  border-radius: 18px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.screening-card:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 0, 52, 0.22);
  box-shadow: 0 16px 28px rgba(62, 27, 18, 0.06);
}

.screening-card input {
  margin: 0;
  accent-color: var(--brand);
}

.screening-card span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.screening-card small {
  line-height: 1.6;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-fields.is-disabled {
  opacity: 0.45;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(32, 22, 15, 0.1);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: 2px solid rgba(165, 0, 52, 0.16);
  border-color: rgba(165, 0, 52, 0.25);
}

.submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.form-status {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.success {
  color: #2a7c53;
}

.form-status.error {
  color: #b03b32;
}

.form-lock {
  display: none;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff3f3, #fff8f8);
  color: #9d5d58;
}

.enquiry-form.is-locked .form-lock {
  display: grid;
}

@media (max-width: 720px) {
  .screening-options {
    grid-template-columns: 1fr;
  }
}

.product-modal[hidden] {
  display: none;
}

.page-shell-detail {
  padding-bottom: 80px;
}

.detail-page {
  padding-top: 24px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  gap: 28px;
  align-items: start;
  padding: 26px 0 20px;
}

.detail-copy h1 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.detail-model-code {
  margin: 10px 0 0;
  color: rgba(61, 50, 43, 0.72);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-feature-panel {
  margin-top: 32px;
}

.detail-feature-panel h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.detail-feature-bullets {
  margin: 0;
  padding-left: 22px;
}

.detail-feature-bullets li {
  margin-bottom: 8px;
  color: #1c1c1c;
  font-size: 1.05rem;
  line-height: 1.55;
}

.detail-color-panel {
  margin-top: 28px;
}

.detail-color-panel h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.detail-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.detail-color-swatch {
  display: inline-block;
  width: 36px;
  height: 36px;
  padding: 0;
  appearance: none;
  border: 2px solid rgba(210, 214, 220, 0.9);
  border-radius: 50%;
  background: var(--swatch, #fff);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.detail-color-swatch[data-swatch-tone="light"] {
  border-color: rgba(176, 183, 192, 0.98);
  box-shadow:
    inset 0 0 0 2px rgba(214, 220, 228, 0.98),
    0 2px 6px rgba(29, 19, 10, 0.04);
}

.detail-color-swatch:hover {
  transform: translateY(-1px);
}

.detail-color-swatch.is-active {
  border-color: #2f6adf;
  box-shadow:
    0 0 0 4px rgba(47, 106, 223, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.detail-color-swatch[data-swatch-tone="light"].is-active {
  box-shadow:
    0 0 0 4px rgba(47, 106, 223, 0.12),
    inset 0 0 0 2px rgba(214, 220, 228, 0.98);
}

.detail-color-name {
  margin: 12px 0 0;
  font-size: 1.02rem;
  color: #232323;
}

.detail-rental-panel {
  margin-top: 34px;
}

.detail-rental-card {
  padding: 22px;
  border: 1px solid rgba(177, 143, 121, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(146, 24, 59, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 235, 0.98));
  box-shadow:
    0 20px 44px rgba(54, 32, 20, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.detail-plan-builder {
  display: grid;
  gap: 18px;
}

.detail-plan-selector-group {
  display: grid;
  gap: 12px;
}

.detail-plan-selector-label {
  margin: 0;
  color: #8e1b3c;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-plan-selector-grid {
  display: grid;
  gap: 12px;
}

.detail-plan-selector-grid-service {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.detail-plan-selector-grid-duration {
  grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
}

.detail-plan-option {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 18px 18px 17px;
  border: 1px solid rgba(168, 131, 105, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(148, 27, 62, 0.05), transparent 36%),
    linear-gradient(180deg, rgba(249, 244, 238, 0.96), rgba(241, 233, 223, 0.96));
  color: #372922;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.detail-plan-option:hover {
  transform: translateY(-1px);
  border-color: rgba(145, 32, 62, 0.16);
  box-shadow: 0 14px 26px rgba(70, 34, 23, 0.08);
}

.detail-plan-option strong {
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 1.14rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.detail-plan-option span {
  color: rgba(73, 61, 54, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.detail-plan-option.is-active {
  border-color: rgba(131, 17, 47, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.11), transparent 46%),
    linear-gradient(135deg, #9f173a, #74122d);
  color: #fff;
  box-shadow:
    0 18px 32px rgba(116, 18, 45, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.detail-plan-option.is-active span {
  color: rgba(255, 255, 255, 0.82);
}

.detail-plan-option-duration {
  min-height: 92px;
}

.detail-plan-summary-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(165, 130, 110, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 0%, rgba(151, 27, 62, 0.08), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(255, 220, 193, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.98), rgba(249, 243, 236, 0.98));
  box-shadow:
    0 18px 36px rgba(62, 27, 18, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.detail-plan-summary-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.detail-plan-summary-label,
.detail-plan-promo-label {
  display: inline-flex;
  margin: 0 0 10px;
  color: #8e1b3c;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-plan-summary-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 1.4rem;
  line-height: 1.15;
}

.detail-plan-summary-copy,
.detail-plan-promo-note {
  margin: 6px 0 0;
  color: #6d645f;
  line-height: 1.7;
  font-size: 0.98rem;
}

.detail-plan-price-box {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 4px;
  text-align: right;
}

.detail-plan-price-box strong {
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #8b1837;
}

.detail-plan-price-box span {
  color: #6e6661;
  font-size: 0.96rem;
  font-weight: 600;
}

.detail-plan-promo-summary {
  display: grid;
  gap: 12px;
}

.detail-plan-promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(216, 187, 171, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(159, 23, 58, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 248, 245, 0.98), rgba(255, 241, 236, 0.98));
}

.detail-plan-promo-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.detail-plan-promo-price strong {
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #c94f3b;
}

.detail-plan-promo-price span {
  color: #6e6661;
  font-size: 0.96rem;
  font-weight: 600;
}

.detail-plan-discount-pill {
  display: grid;
  gap: 2px;
  min-width: 118px;
  padding: 16px 14px 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(135deg, #9f173a, #76132e);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 28px rgba(118, 19, 46, 0.16);
}

.detail-plan-discount-pill strong {
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
}

.detail-plan-discount-pill span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  line-height: 1.35;
}

.detail-plan-standard-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(249, 245, 240, 0.98), rgba(243, 236, 228, 0.98));
  border: 1px solid rgba(171, 152, 136, 0.18);
}

.detail-plan-standard-note span {
  color: #6e6661;
  font-size: 0.95rem;
}

.detail-plan-standard-note strong {
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 1.1rem;
}

.detail-plan-summary-card .old-price {
  color: rgba(120, 109, 104, 0.86);
  font-size: 1rem;
}

.detail-plan-summary-card .old-price::after {
  top: 52%;
}

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

.detail-gallery-frame {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 231, 198, 0.24), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(255, 220, 182, 0.14), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(255, 226, 197, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(251, 243, 234, 0.98), rgba(241, 229, 214, 0.96));
  box-shadow:
    0 20px 46px rgba(29, 19, 10, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.detail-gallery-frame[data-variant-tone="white"] {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.52), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(245, 247, 250, 0.3), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(243, 245, 248, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(252, 252, 251, 0.99), rgba(244, 245, 246, 0.98));
}

.detail-gallery-frame[data-variant-tone="white"] .detail-gallery-main {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(251, 251, 251, 0.99), rgba(243, 244, 245, 0.98));
}

.detail-gallery-frame[data-variant-tone="beige"] {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 236, 214, 0.38), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(244, 223, 196, 0.24), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(241, 218, 191, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(251, 243, 234, 0.995), rgba(238, 228, 215, 0.975));
}

.detail-gallery-frame[data-variant-tone="beige"] .detail-gallery-main {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 244, 231, 0.42), rgba(255, 244, 231, 0) 42%),
    linear-gradient(180deg, rgba(250, 242, 232, 0.99), rgba(239, 228, 214, 0.98));
}

.detail-gallery-frame[data-variant-tone="gray"] {
  background:
    radial-gradient(circle at 50% 12%, rgba(244, 244, 246, 0.34), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(235, 236, 238, 0.2), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(233, 234, 236, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(247, 246, 243, 0.98), rgba(234, 233, 230, 0.96));
}

.detail-gallery-frame[data-variant-tone="gray"] .detail-gallery-main {
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 245, 246, 0.38), rgba(245, 245, 246, 0) 42%),
    linear-gradient(180deg, rgba(246, 244, 241, 0.98), rgba(235, 232, 228, 0.96));
}

.detail-gallery-frame[data-variant-tone="navy"] {
  background:
    radial-gradient(circle at 50% 12%, rgba(233, 232, 237, 0.28), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(223, 220, 231, 0.18), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(223, 220, 231, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(247, 242, 236, 0.98), rgba(236, 229, 221, 0.96));
}

.detail-gallery-frame[data-variant-tone="navy"] .detail-gallery-main {
  background:
    radial-gradient(circle at 50% 18%, rgba(239, 236, 242, 0.34), rgba(239, 236, 242, 0) 42%),
    linear-gradient(180deg, rgba(247, 241, 235, 0.98), rgba(237, 229, 221, 0.96));
}

.detail-gallery-frame[data-variant-tone="green"] {
  background:
    radial-gradient(circle at 50% 12%, rgba(229, 236, 229, 0.22), transparent 34%),
    radial-gradient(circle at 18% 14%, rgba(214, 226, 216, 0.16), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(214, 226, 216, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(248, 243, 235, 0.98), rgba(236, 228, 220, 0.96));
}

.detail-gallery-frame[data-variant-tone="green"] .detail-gallery-main {
  background:
    radial-gradient(circle at 50% 18%, rgba(230, 237, 230, 0.28), rgba(230, 237, 230, 0) 42%),
    linear-gradient(180deg, rgba(247, 241, 234, 0.98), rgba(236, 228, 220, 0.96));
}

.detail-gallery-main {
  display: grid;
  place-items: center;
  min-height: 500px;
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 233, 204, 0.42), rgba(255, 233, 204, 0) 42%),
    linear-gradient(180deg, rgba(250, 241, 232, 0.98), rgba(240, 228, 213, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.detail-gallery-main img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 84%;
  max-height: 410px;
  height: auto;
  object-fit: contain;
  transition: transform 200ms ease;
  filter:
    drop-shadow(0 22px 30px rgba(28, 20, 12, 0.1))
    drop-shadow(0 4px 8px rgba(28, 20, 12, 0.04));
}

.detail-gallery-main img[data-premium-blend="soft"] {
  mix-blend-mode: multiply;
  opacity: 0.995;
  filter:
    contrast(1.04)
    saturate(1.02)
    drop-shadow(0 22px 30px rgba(28, 20, 12, 0.1))
    drop-shadow(0 4px 8px rgba(28, 20, 12, 0.04));
}

.detail-gallery-main img.is-front,
.detail-thumb img.is-front {
  transform: scale(1);
}

.detail-gallery-main img.is-clean,
.detail-thumb img.is-clean {
  transform: scale(0.96);
}

.detail-gallery-main img.is-focus,
.detail-thumb img.is-focus {
  transform: scale(1.08);
}

.detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"],
.detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"],
.detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"],
.detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"],
.detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"],
.detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"],
.detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"],
.detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"],
.detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"],
.detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] {
  position: relative;
  overflow: hidden;
  padding: 26px 26px 20px;
  border: 0;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 248, 238, 0.98), rgba(255, 248, 238, 0) 24%),
    radial-gradient(circle at 14% 18%, rgba(247, 214, 174, 0.2), rgba(247, 214, 174, 0) 34%),
    radial-gradient(circle at 86% 16%, rgba(246, 214, 180, 0.18), rgba(246, 214, 180, 0) 32%),
    linear-gradient(180deg, rgba(245, 238, 230, 0.985), rgba(237, 228, 216, 0.97));
  box-shadow:
    0 22px 48px rgba(122, 90, 49, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"]::before,
.detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"]::before,
.detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"]::before,
.detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"]::before,
.detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"]::before,
.detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"]::before,
.detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"]::before,
.detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"]::before,
.detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"]::before,
.detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"]::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"]::after,
.detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"]::after,
.detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"]::after,
.detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"]::after,
.detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"]::after,
.detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"]::after,
.detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"]::after,
.detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"]::after,
.detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"]::after,
.detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"]::after {
  content: "";
  position: absolute;
  inset: 44px 28px 34px;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] .detail-gallery-main {
  min-height: 540px;
  padding: 28px 24px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"] .detail-gallery-main::before,
.detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] .detail-gallery-main::before {
  display: none;
}

.detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] .detail-gallery-main img {
  width: min(82%, 720px);
  max-width: none;
  max-height: 470px;
  filter:
    drop-shadow(0 26px 34px rgba(29, 22, 16, 0.1))
    drop-shadow(0 8px 14px rgba(29, 22, 16, 0.04));
}

.detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main {
  min-height: 620px;
}

.detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main img {
  width: min(94%, 840px);
  max-height: 565px;
}

.detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main {
  min-height: 660px;
}

.detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main img {
  width: min(90%, 640px);
  max-height: 640px;
}

.detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main img {
  width: min(98%, 900px);
  max-height: 610px;
}

.detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main {
  min-height: 620px;
}

.detail-gallery-frame[data-product-code="SIQ11B"],
.detail-gallery-frame[data-product-code="SIQ13B"],
.detail-gallery-frame[data-product-code="SIQ18B"],
.detail-gallery-frame[data-product-code="SIQ24B"] {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 18px;
  border: 0;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 247, 236, 0.9), rgba(255, 247, 236, 0) 24%),
    radial-gradient(circle at 16% 18%, rgba(248, 220, 187, 0.14), rgba(248, 220, 187, 0) 30%),
    radial-gradient(circle at 84% 18%, rgba(246, 214, 180, 0.14), rgba(246, 214, 180, 0) 30%),
    linear-gradient(180deg, rgba(245, 238, 230, 0.995), rgba(245, 238, 230, 0.985));
  box-shadow: 0 20px 40px rgba(122, 90, 49, 0.08);
}

.detail-gallery-frame[data-product-code="SIQ11B"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="SIQ13B"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="SIQ18B"] .detail-gallery-main,
.detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main {
  min-height: 420px;
  padding: 18px 16px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-gallery-frame[data-product-code="SIQ11B"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="SIQ13B"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="SIQ18B"] .detail-gallery-main img,
.detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main img {
  width: min(96%, 920px);
  max-width: none;
  max-height: 308px;
  filter:
    contrast(1.03)
    saturate(1.01)
    drop-shadow(0 18px 24px rgba(29, 22, 16, 0.08))
    drop-shadow(0 6px 12px rgba(29, 22, 16, 0.04));
}

.detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main img {
  width: min(100%, 980px);
  max-height: 332px;
}

.detail-gallery-main img.is-finish,
.detail-thumb img.is-finish {
  transform: scale(0.92);
}

.detail-gallery-main img.is-hero,
.detail-thumb img.is-hero {
  transform: scale(1.02);
}

.detail-gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.detail-thumb {
  display: grid;
  place-items: center;
  height: 82px;
  padding: 6px;
  border: 1px solid rgba(228, 228, 228, 0.95);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(251, 243, 234, 0.98), rgba(241, 229, 214, 0.98));
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.detail-thumb:hover,
.detail-thumb.is-active {
  border-color: rgba(32, 32, 32, 0.55);
  box-shadow: 0 8px 16px rgba(29, 19, 10, 0.06);
}

.detail-thumb img {
  width: auto;
  max-width: 88%;
  max-height: 76px;
  object-fit: contain;
}

.detail-thumb img[data-premium-blend="soft"] {
  mix-blend-mode: multiply;
  opacity: 0.995;
  filter: contrast(1.04) saturate(1.02);
}

.detail-spec-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2px;
}

.detail-spec-quick div {
  padding: 16px 18px;
  border: 1px solid rgba(232, 232, 232, 0.95);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(29, 19, 10, 0.04);
}

.detail-spec-quick strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.detail-spec-quick span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.95rem;
}

.detail-copy .hero-text {
  max-width: 34ch;
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.75;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.detail-section + .detail-section {
  margin-top: 24px;
}

.detail-content-card,
.story-card,
.spec-table,
.detail-sticky-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

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

.story-card {
  padding: 24px;
}

.story-card h3,
.detail-content-card h3,
.detail-sticky-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.story-card p,
.detail-content-card p,
.detail-list li {
  color: var(--muted);
  line-height: 1.8;
}

.detail-content-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding: 24px;
}

.detail-list {
  padding-left: 18px;
}

.spec-pill-grid {
  display: grid;
  gap: 14px;
}

.spec-pill {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(32, 22, 15, 0.06);
}

.spec-pill strong,
.spec-table strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}

.spec-pill span,
.spec-table span {
  color: var(--muted);
}

.spec-table {
  display: grid;
  overflow: hidden;
}

.spec-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(32, 22, 15, 0.06);
}

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

.detail-sticky-card {
  position: sticky;
  top: 110px;
  padding: 28px;
}

.sidebar-package + .sidebar-package {
  margin-top: 16px;
}

.sidebar-package {
  padding: 0 0 16px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sidebar-package + .sidebar-package {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(32, 22, 15, 0.07);
}

.sidebar-package .rental-line {
  display: grid;
  gap: 4px;
}

.sidebar-package .rental-line span {
  color: #7d8797;
  font-size: 0.95rem;
}

.sidebar-package .rental-line strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.sidebar-package .promo-line {
  align-items: center;
  margin-top: 10px;
  padding: 12px 15px;
  border-radius: 20px;
  border: 1px solid rgba(173, 34, 22, 0.06);
  background: linear-gradient(180deg, rgba(255, 248, 246, 0.98), rgba(255, 244, 241, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.sidebar-package .promo-stack {
  display: grid;
  gap: 9px;
}

.sidebar-package .promo-line em {
  margin-left: auto;
  min-width: 88px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e96a55, #c64737);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(201, 71, 55, 0.18);
}

.sidebar-package .promo-line-standard {
  border-color: rgba(67, 54, 47, 0.05);
  background: linear-gradient(180deg, rgba(250, 246, 241, 0.98), rgba(248, 242, 236, 0.94));
}

.sidebar-package .promo-line-standard .standard-note {
  color: rgba(97, 84, 77, 0.72);
  font-size: 0.84rem;
}

.sidebar-package .promo-line-standard em {
  background: linear-gradient(135deg, #b7aa9d, #8f8378);
  box-shadow: 0 12px 24px rgba(120, 104, 89, 0.14);
}

.detail-cta-stack {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.detail-cta-stack .button {
  width: 100%;
  min-height: 56px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.detail-hero-subscribe {
  background: linear-gradient(135deg, #f23320, #9f160f);
  color: #fff;
}

.detail-hero-whatsapp,
.detail-hero-line {
  background: linear-gradient(135deg, #65cf6b, #3e8e84);
  color: #fff;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-tags span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(165, 0, 52, 0.08);
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
}

.detail-fallback-visual {
  display: grid;
  place-items: center;
  width: 220px;
  height: 280px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f5e8da, #ead9c8);
  color: #b48d61;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.detail-fallback-visual[hidden] {
  display: none !important;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.home-promo-popup[hidden] {
  display: none !important;
}

.home-promo-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.home-promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 14, 12, 0.56);
  backdrop-filter: blur(7px);
}

.home-promo-popup__dialog {
  position: relative;
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  margin: 14px auto;
  overflow: auto;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(255, 248, 243, 0.98), rgba(249, 239, 228, 0.98));
  box-shadow:
    0 40px 100px rgba(15, 9, 7, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-promo-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(120, 23, 52, 0.92);
  color: #fff;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(120, 23, 52, 0.22);
}

.home-promo-popup__close:hover {
  background: #8e1b3c;
}

.home-promo-popup__eyebrow {
  position: absolute;
  left: 22px;
  top: 22px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #8e1b3c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(44, 20, 15, 0.1);
}

.home-promo-popup__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 17, 15, 0.5);
  backdrop-filter: blur(4px);
}

.product-modal-dialog {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(177, 143, 121, 0.14);
  background:
    radial-gradient(circle at top right, rgba(146, 24, 59, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(248, 242, 235, 0.985));
  box-shadow:
    0 32px 90px rgba(17, 12, 9, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-modal-header,
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(165, 130, 110, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12));
}

.modal-footer {
  justify-content: center;
  border-top: 1px solid rgba(165, 130, 110, 0.14);
  border-bottom: 0;
}

.product-modal-header h2 {
  margin: 0;
  color: #8e1b3c;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
}

.modal-close {
  border: 0;
  background: transparent;
  color: #7f6c62;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 20px 24px 0;
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b1aaa4;
  font-size: 0.95rem;
}

.stepper-item::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(171, 152, 136, 0.26);
}

.stepper-item:last-child::after {
  display: none;
}

.stepper-item.is-active,
.stepper-item.is-complete {
  color: #8e1b3c;
}

.stepper-badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(244, 237, 229, 0.98), rgba(234, 225, 214, 0.98));
  color: #8f8378;
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.stepper-item.is-active .stepper-badge {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.11), transparent 46%),
    linear-gradient(135deg, #9f173a, #74122d);
  color: #fff;
  box-shadow:
    0 14px 26px rgba(116, 18, 45, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stepper-item.is-complete .stepper-badge {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 46%),
    linear-gradient(135deg, #8f1736, #681127);
  color: #fff;
}

.modal-body {
  padding: 18px 24px 24px;
  max-height: min(62vh, 720px);
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(148, 27, 62, 0.035), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.modal-step {
  display: none;
}

.modal-step.is-active {
  display: block;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

[data-modal-step="1"] .modal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.choice-card,
.package-card {
  padding: 18px;
  border: 1px solid rgba(168, 131, 105, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(148, 27, 62, 0.05), transparent 36%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.98), rgba(248, 242, 235, 0.98));
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow:
    0 14px 30px rgba(62, 27, 18, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.choice-card:hover,
.package-card:hover {
  transform: translateY(-2px);
  border-color: rgba(145, 32, 62, 0.16);
  box-shadow:
    0 18px 34px rgba(62, 27, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.choice-card.is-selected,
.package-card.is-selected {
  border-color: rgba(131, 17, 47, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.11), transparent 46%),
    linear-gradient(135deg, rgba(159, 23, 58, 0.08), rgba(116, 18, 45, 0.02)),
    linear-gradient(180deg, rgba(255, 253, 251, 0.98), rgba(248, 242, 235, 0.98));
  box-shadow:
    0 18px 32px rgba(116, 18, 45, 0.14),
    inset 0 0 0 1px rgba(131, 17, 47, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.choice-thumb {
  width: 100%;
  height: 188px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 231, 198, 0.24), transparent 36%),
    radial-gradient(circle at 18% 14%, rgba(255, 220, 182, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 226, 197, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf2e7, #efe1d0);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: #b79063;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.choice-thumb img {
  width: auto;
  max-width: 74%;
  max-height: 164px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 18px 22px rgba(39, 28, 18, 0.08))
    drop-shadow(0 4px 8px rgba(39, 28, 18, 0.04));
}

.choice-thumb img[data-premium-blend="soft"] {
  mix-blend-mode: multiply;
  opacity: 0.995;
  filter:
    contrast(1.04)
    saturate(1.02)
    drop-shadow(0 18px 22px rgba(39, 28, 18, 0.08))
    drop-shadow(0 4px 8px rgba(39, 28, 18, 0.04));
}

.choice-thumb span {
  display: inline-flex;
}

.choice-card h4,
.package-card h4,
.plan-summary h4 {
  margin: 14px 0 6px;
  font-family: "Space Grotesk", sans-serif;
}

.choice-card--category,
.choice-card--model {
  min-height: 0;
  display: grid;
  align-content: start;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(148, 27, 62, 0.05), transparent 36%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.98), rgba(248, 242, 235, 0.98));
}

.choice-card--category h4,
.choice-card--model h4 {
  margin: 14px 0 0;
}

.choice-card--category p,
.choice-card--model p {
  display: none;
}

.choice-card--category h4 {
  font-size: 1.08rem;
}

.choice-card--model h4 {
  font-size: 1.16rem;
  letter-spacing: 0.03em;
}

.choice-card--category .choice-thumb,
.choice-card--model .choice-thumb {
  height: 150px;
}

.choice-card--category .choice-thumb img,
.choice-card--model .choice-thumb img {
  max-width: 72%;
  max-height: 128px;
}

.choice-card p,
.package-card p,
.plan-summary p,
.plan-summary li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.package-card p {
  color: rgba(69, 55, 45, 0.84);
}

.plan-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
}

.plan-summary-visual {
  min-height: 320px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 231, 198, 0.24), transparent 36%),
    radial-gradient(circle at 18% 14%, rgba(255, 220, 182, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 226, 197, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf2e7, #efe1d0);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: #b48d61;
  overflow: hidden;
}

.plan-summary-visual img {
  width: auto;
  max-width: 74%;
  max-height: 250px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 18px 22px rgba(39, 28, 18, 0.08))
    drop-shadow(0 4px 8px rgba(39, 28, 18, 0.04));
}

.plan-summary-visual img[data-premium-blend="soft"] {
  mix-blend-mode: multiply;
  opacity: 0.995;
  filter:
    contrast(1.04)
    saturate(1.02)
    drop-shadow(0 18px 22px rgba(39, 28, 18, 0.08))
    drop-shadow(0 4px 8px rgba(39, 28, 18, 0.04));
}

.plan-summary-visual span {
  display: inline-flex;
}

.plan-summary ul {
  margin: 16px 0 0;
}

.modal-color-row {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.modal-color-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(102, 88, 77, 0.82);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  text-transform: uppercase;
}

.modal-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-color-swatch {
  cursor: pointer;
}

.modal-color-name {
  font-weight: 600;
  color: var(--text);
}

.modal-usp-list {
  margin-top: 16px;
}

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

.package-card {
  padding: 24px;
  background:
    radial-gradient(circle at 84% 0%, rgba(151, 27, 62, 0.08), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(255, 220, 193, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.98), rgba(249, 243, 236, 0.98));
}

.package-copy {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.package-service-label {
  color: rgba(102, 88, 77, 0.82);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-copy h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.32;
}

.package-detail-meta {
  color: rgba(102, 88, 77, 0.78);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

.package-service-description {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.package-special-payment {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(171, 152, 136, 0.18);
  background: linear-gradient(180deg, rgba(249, 245, 240, 0.98), rgba(243, 236, 228, 0.98));
}

.package-special-payment span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.package-special-payment strong {
  color: var(--text);
  font-family: "Space Grotesk", "Noto Sans Thai", sans-serif;
  font-size: 1rem;
}

.package-card .promo-line {
  margin-bottom: 0;
  margin-top: 16px;
}

.package-card .promo-banner {
  margin-bottom: 14px;
}

.package-card .promo-banner strong {
  color: rgba(88, 63, 53, 0.94);
}

.package-card .rental-line strong {
  font-size: 1.85rem;
  color: var(--text);
}

.package-card .rental-line span {
  color: var(--muted);
  line-height: 1.55;
}

.modal-button {
  min-width: 140px;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
}

.modal-primary {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.11), transparent 46%),
    linear-gradient(135deg, #9f173a, #74122d);
  color: #fff;
  box-shadow: 0 16px 28px rgba(116, 18, 45, 0.18);
}

.modal-secondary {
  border: 1px solid rgba(168, 131, 105, 0.16);
  background:
    radial-gradient(circle at top right, rgba(148, 27, 62, 0.05), transparent 36%),
    linear-gradient(180deg, rgba(249, 244, 238, 0.96), rgba(241, 233, 223, 0.96));
  color: #372922;
  box-shadow:
    0 14px 24px rgba(62, 27, 18, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.modal-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.benefit-card span,
.step-card strong {
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 700;
}

.benefit-card.accent {
  color: #fff;
  background: linear-gradient(135deg, rgba(165, 0, 52, 0.95), rgba(111, 0, 36, 0.88));
}

.benefit-card.accent span,
.benefit-card.accent p {
  color: rgba(255, 255, 255, 0.88);
}

.plan-tabs {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.tab {
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.tab.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
}

.plan-panel {
  display: none;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: stretch;
  padding: 26px;
  border-radius: var(--radius-xl);
}

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

.panel-copy ul,
.compare-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.panel-copy li,
.compare-card li {
  margin: 0 0 14px;
}

.panel-copy li::before,
.compare-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  vertical-align: middle;
}

.price-box {
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 194, 122, 0.35), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 237, 228, 0.96));
  text-align: center;
}

.price-box strong {
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1;
}

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

.compare-card.strong {
  background: linear-gradient(135deg, rgba(255, 250, 245, 0.94), rgba(255, 234, 220, 0.94));
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-top: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 122, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(247, 239, 233, 0.96));
}

.contact-banner {
  align-items: stretch;
}

.contact-banner > div:first-child {
  display: grid;
  gap: 18px;
  flex: 1 1 0;
}

.contact-banner .eyebrow {
  margin: 0;
}

.contact-banner h2 {
  margin: 0;
  max-width: 14ch;
}

.contact-banner p {
  margin: 0;
}

.contact-copy {
  display: grid;
  gap: 18px;
  flex: 1 1 0;
}

.contact-copy > p {
  margin: 0;
}

.contact-actions {
  display: grid;
  gap: 16px;
  min-width: min(100%, 340px);
  align-content: center;
}

.contact-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(82, 42, 24, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.contact-pill:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 40px rgba(82, 42, 24, 0.16);
}

.contact-pill:active {
  transform: translateY(0);
}

.contact-pill-call {
  background: linear-gradient(135deg, #c21d12, #8f1020 85%);
  color: #fff;
}

.contact-pill-line {
  border-color: rgba(165, 0, 52, 0.16);
  background: rgba(255, 252, 248, 0.88);
  color: var(--brand);
}

.contact-pill span {
  pointer-events: none;
}

.contact-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(165, 0, 52, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-inline-link:hover {
  opacity: 0.82;
}

.contact-knowledge-panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(165, 0, 52, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 242, 0.9)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 20px 40px rgba(126, 90, 65, 0.06);
}

.contact-knowledge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-knowledge-header h3 {
  margin: 6px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.contact-resource-stack,
.contact-resource-grid {
  display: grid;
  gap: 16px;
}

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

.contact-resource-intro {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-resource-group {
  padding: 18px 0 0;
  border-top: 1px solid rgba(165, 0, 52, 0.1);
}

.contact-resource-group .eyebrow {
  margin: 0 0 12px;
}

.contact-link-list {
  display: grid;
  gap: 10px;
}

.contact-link-list-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(61, 33, 26, 0.96);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}

.contact-text-link::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  background: rgba(165, 0, 52, 0.08);
  box-shadow: inset 0 0 0 5px rgba(165, 0, 52, 0.06);
}

.contact-text-link:hover {
  color: var(--brand);
}

.contact-card {
  display: grid;
  gap: 10px;
  min-height: 156px;
  padding: 26px 24px;
  border-radius: 32px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  align-content: center;
}

.contact-card strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.06;
}

.contact-card small {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-call {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 20px 38px rgba(165, 0, 52, 0.22);
}

.contact-card-call small,
.contact-card-call .contact-card-label {
  color: rgba(255, 255, 255, 0.8);
}

.contact-card-line {
  min-height: 132px;
  border: 1px solid rgba(79, 149, 137, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 250, 247, 0.94));
  color: #1f352f;
  box-shadow: 0 18px 34px rgba(79, 149, 137, 0.08);
}

.button-line,
.contact-card-call,
.contact-card-line {
  position: relative;
  overflow: hidden;
}

.contact-card-line.button-line::before {
  display: none;
}

.button-line::before,
.contact-card-line::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3C6.477 3 2 6.86 2 11.625c0 2.67 1.38 5.057 3.544 6.62L4.6 21l3.63-1.615c1.138.313 2.37.48 3.77.48 5.523 0 10-3.86 10-8.625S17.523 3 12 3Z' fill='white'/%3E%3Cpath d='M8.2 12.2h7.6' stroke='%233e8e84' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M9.5 9.7h5' stroke='%233e8e84' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
      center / contain no-repeat;
}

.contact-card-label::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.contact-card-call .contact-card-label::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.7 4.5h2.6c.34 0 .65.2.79.5l1.23 2.96a.9.9 0 0 1-.2.98l-1.38 1.38a13.1 13.1 0 0 0 5.92 5.92l1.38-1.38a.9.9 0 0 1 .98-.2l2.96 1.23c.31.13.5.44.5.79v2.6c0 .5-.4.9-.9.9C11.06 21.23 2.77 12.94 2.77 5.4c0-.5.4-.9.9-.9Z' fill='white'/%3E%3C/svg%3E")
      center / contain no-repeat;
}

.contact-card-line .contact-card-label::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3C6.477 3 2 6.86 2 11.625c0 2.67 1.38 5.057 3.544 6.62L4.6 21l3.63-1.615c1.138.313 2.37.48 3.77.48 5.523 0 10-3.86 10-8.625S17.523 3 12 3Z' fill='white'/%3E%3Cpath d='M8.2 12.2h7.6' stroke='%234f9589' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M9.5 9.7h5' stroke='%234f9589' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
      center / contain no-repeat;
}

.contact-card-line small,
.contact-card-line .contact-card-label {
  color: rgba(31, 53, 47, 0.72);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .site-header,
  .promo-bar,
  .hero,
  .detail-hero,
  .detail-layout,
  .detail-content-card,
  .feature-story-grid,
  .feature-grid,
  .benefit-grid,
  .offer-grid,
  .answer-grid,
  .resource-grid,
  .catalog-model-grid,
  .subscribe-layout,
  .modal-grid,
  .plan-summary,
  .plan-options,
  .plan-panel,
  .compare-grid,
  .step-grid,
  .stats-strip,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  [data-modal-step="1"] .modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header,
  .promo-bar,
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    gap: 14px;
    align-items: stretch;
    border-radius: 28px;
    padding: 18px;
  }

  .brand {
    width: 100%;
  }

  .header-category-mobile-toggle {
    display: inline-flex;
    width: 100%;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta,
  .promo-bar a {
    width: 100%;
    justify-content: center;
  }

  .promo-bar {
    gap: 12px;
    padding: 18px;
  }

  .plans .section-heading,
  .plans .category-browser-grid {
    display: none;
  }

  .plans {
    margin-top: 0;
    padding: 0;
  }

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

  .intent-links {
    margin-top: 16px;
  }

  .hero {
    padding-top: 34px;
  }

  .seo-hero {
    grid-template-columns: 1fr;
  }

  .seo-pill-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-knowledge-header {
    display: grid;
  }

  .contact-resource-grid {
    grid-template-columns: 1fr;
  }

  .contact-link-list-compact {
    grid-template-columns: 1fr;
  }

  .contact-inline-link,
  .contact-actions {
    width: 100%;
  }

  .contact-card {
    width: 100%;
    min-height: 156px;
  }

  .button {
    width: 100%;
  }

  .hero h1,
  .detail-copy h1,
  .highlight-copy h2,
  .section-heading h2,
  .cta-banner h2 {
    max-width: none;
  }

  .hero-banner {
    min-height: 560px;
  }

  .hero-banner-copy {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
    padding: 28px 24px 0;
  }

  .hero-banner-copy strong {
    max-width: 9ch;
    font-size: clamp(2.6rem, 8vw, 4.1rem);
  }

  .hero-banner-roomline {
    display: none;
  }

  .hero-banner-house {
    right: 20%;
    bottom: 106px;
    width: 200px;
    height: 200px;
  }

  .hero-banner-item-ac {
    top: 156px;
    right: 10%;
    width: 58%;
  }

  .hero-banner-item-tv {
    left: 9%;
    bottom: 50px;
    height: 72px;
  }

  .hero-banner-item-water {
    left: 28%;
    bottom: 104px;
    height: 124px;
  }

  .hero-banner-item-refrigerator {
    left: 42%;
    bottom: 48px;
    height: 198px;
  }

  .hero-banner-item-washtower {
    left: 68%;
    bottom: 42px;
    height: 208px;
  }

  .hero-banner-item-aircare {
    right: 3%;
    bottom: 56px;
    height: 132px;
  }

  .detail-hero {
    gap: 22px;
  }

  .detail-gallery-main {
    min-height: 360px;
  }

  .contact-actions {
    width: 100%;
  }

  .catalog-group-header,
  .selected-header,
  .selected-card,
  .selected-card-media,
  .promo-line,
  .catalog-plan-prices,
  .detail-plan-standard-note,
  .product-modal-header,
  .modal-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-model > p {
    min-height: 0;
  }

  .selected-actions {
    flex-wrap: wrap;
  }

  .selected-card strong,
  .promo-line em,
  .catalog-plan-prices-highlight em,
  .catalog-plan-prices-standard em,
  .sidebar-package .promo-line em {
    margin-left: 0;
  }

  .catalog-group,
  .selected-products,
  .enquiry-form,
  .detail-rental-card,
  .detail-plan-summary-card {
    padding: 20px;
  }

  .home-promo-popup__dialog {
    width: min(96vw, 760px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 24px;
  }

  .home-promo-popup__image {
    border-radius: 24px;
  }

  .catalog-media,
  .offer-media {
    min-height: 200px;
  }

  .detail-gallery-frame {
    padding: 18px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"],
  .detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"],
  .detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"],
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"],
  .detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] {
    padding: 20px 20px 14px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] .detail-gallery-main {
    min-height: 450px;
    padding: 24px 18px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main {
    min-height: 520px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] .detail-gallery-main img {
    width: min(84%, 620px);
    max-width: none;
    max-height: 392px;
  }

  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main img {
    width: min(96%, 760px);
    max-height: 500px;
  }

  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main {
    min-height: 500px;
  }

  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main {
    min-height: 560px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main img {
    width: min(92%, 760px);
    max-height: 472px;
  }

  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main img {
    width: min(92%, 520px);
    max-height: 520px;
  }

  .detail-gallery-frame[data-product-code="SIQ11B"],
  .detail-gallery-frame[data-product-code="SIQ13B"],
  .detail-gallery-frame[data-product-code="SIQ18B"],
  .detail-gallery-frame[data-product-code="SIQ24B"] {
    padding: 18px 18px 14px;
  }

  .detail-gallery-frame[data-product-code="SIQ11B"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="SIQ13B"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="SIQ18B"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main {
    min-height: 360px;
    padding: 16px 10px;
  }

  .detail-gallery-frame[data-product-code="SIQ11B"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="SIQ13B"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="SIQ18B"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main img {
    width: min(98%, 760px);
    max-height: 252px;
  }

  .detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main img {
    width: min(100%, 820px);
    max-height: 268px;
  }

  .detail-gallery-strip {
    grid-template-columns: repeat(5, minmax(64px, 1fr));
  }

  .detail-spec-quick {
    grid-template-columns: 1fr;
  }

  .detail-plan-selector-grid-service,
  .detail-plan-selector-grid-duration,
  .detail-plan-summary-top,
  .detail-plan-promo-card {
    grid-template-columns: 1fr;
  }

  .detail-plan-price-box,
  .detail-plan-discount-pill {
    justify-items: start;
    text-align: left;
  }

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

  .tall {
    min-height: 240px;
  }

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

  .stepper-item {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .stepper-item::after {
    display: none;
  }

  .detail-sticky-card {
    position: static;
  }

  [data-modal-step="1"] .modal-grid,
  [data-modal-step="2"] .modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .choice-card--category .choice-thumb,
  .choice-card--model .choice-thumb {
    height: 132px;
  }

  .choice-card--category .choice-thumb img,
  .choice-card--model .choice-thumb img {
    max-width: 78%;
    max-height: 116px;
  }

  .choice-card--category h4,
  .choice-card--model h4 {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  [data-modal-step="1"] .modal-grid,
  [data-modal-step="2"] .modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-shell {
    width: min(100% - 20px, 100%);
  }

  .site-top-strip {
    padding: 0;
  }

  .site-top-strip-inner {
    min-height: 42px;
    padding: 0 2px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .site-header {
    top: 10px;
    padding: 14px;
    border-radius: 24px;
  }

  .header-category-panel {
    gap: 8px;
  }

  .site-nav-categories-dropdown {
    top: calc(100% + 12px);
    width: calc(100% - 28px);
    max-width: none;
    padding: 14px;
    border-radius: 22px;
  }

  .header-category-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .category-browser-rail {
    grid-auto-columns: 90px;
    gap: 8px;
  }

  .category-rail-card {
    min-height: 96px;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .category-rail-icon {
    min-height: 42px;
  }

  .category-rail-icon svg {
    width: 40px;
    height: 40px;
  }

  .category-rail-title {
    font-size: 0.72rem;
  }

  .site-header.is-scrolled {
    padding: 12px;
    border-radius: 22px;
  }

  .site-header.is-scrolled .header-category-label {
    font-size: 0.62rem;
  }

  .site-header.is-scrolled .category-browser-rail {
    grid-auto-columns: 78px;
    gap: 6px;
  }

  .site-header.is-scrolled .category-rail-card {
    min-height: 84px;
    padding: 8px 6px;
    border-radius: 16px;
  }

  .site-header.is-scrolled .category-rail-icon {
    min-height: 34px;
  }

  .site-header.is-scrolled .category-rail-icon svg {
    width: 32px;
    height: 32px;
  }

  .site-header.is-scrolled .category-rail-title {
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

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

  .category-browser-card {
    min-height: 182px;
    padding: 18px 14px 16px;
    border-radius: 24px;
    gap: 12px;
  }

  .category-browser-title {
    font-size: 1rem;
  }

  .category-browser-icon {
    min-height: 72px;
  }

  .category-browser-icon svg {
    width: 72px;
    height: 72px;
  }

  .category-browser-card small {
    font-size: 0.72rem;
  }

  .answer-card {
    padding: 18px;
    border-radius: 22px;
  }

  .resource-card {
    padding: 18px;
    border-radius: 22px;
  }

  .answer-card h3 {
    font-size: 1.08rem;
  }

  .resource-card h3 {
    font-size: 1.06rem;
  }

  .intent-link {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .detail-feature-panel,
  .detail-color-panel,
  .detail-rental-panel {
    margin-top: 20px;
  }

  .seo-visual {
    padding: 16px;
    border-radius: 24px;
  }

  .seo-visual-frame {
    min-height: 240px;
    padding: 18px;
    border-radius: 18px;
  }

  .seo-visual-frame img {
    max-width: 86%;
    max-height: 210px;
  }

  .detail-copy .detail-gallery-panel {
    margin-top: 18px;
  }

  .detail-gallery-panel .detail-color-panel {
    margin-top: 14px;
  }

  .detail-feature-panel h2,
  .detail-color-panel h2 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .detail-feature-bullets {
    display: grid;
    gap: 8px;
    padding-left: 0;
    list-style: none;
  }

  .detail-feature-bullets li {
    margin-bottom: 0;
    padding: 11px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(32, 22, 15, 0.06);
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .detail-color-swatches {
    gap: 10px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .plan-tabs {
    width: 100%;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .tab {
    flex: 1 1 calc(50% - 10px);
  }

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

  .hero {
    gap: 20px;
    padding-top: 26px;
  }

  .hero-banner-copy {
    padding: 22px 18px 0;
    gap: 8px;
  }

  .hero-banner-copy strong {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.3rem);
  }

  .hero-banner-copy p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-mini-grid article,
  .feature-card,
  .benefit-card,
  .compare-card,
  .step-card,
  .plan-panel,
  .cta-banner,
  .stats-strip,
  .catalog-group,
  .selected-products,
  .enquiry-form {
    padding: 18px;
  }

  .hero-banner-house {
    right: 22%;
    bottom: 92px;
    width: 154px;
    height: 154px;
    border-width: 8px;
  }

  .hero-banner-stage {
    right: 8%;
    bottom: 34px;
    left: 8%;
  }

  .hero-banner-item-ac {
    top: 150px;
    right: 9%;
    width: 66%;
  }

  .hero-banner-item-tv {
    left: 8%;
    bottom: 36px;
    height: 46px;
  }

  .hero-banner-item-water {
    left: 26%;
    bottom: 80px;
    height: 82px;
  }

  .hero-banner-item-refrigerator {
    left: 42%;
    bottom: 36px;
    height: 136px;
  }

  .hero-banner-item-washtower {
    left: 68%;
    bottom: 32px;
    height: 146px;
  }

  .hero-banner-item-aircare {
    right: 2%;
    bottom: 44px;
    height: 92px;
  }

  .product-card,
  .feature-card,
  .benefit-card,
  .compare-card,
  .step-card,
  .plan-panel,
  .cta-banner,
  .stats-strip {
    border-radius: 22px;
  }

  .product-modal-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 24px;
  }

  .home-promo-popup__dialog {
    width: min(100% - 20px, 520px);
    border-radius: 22px;
  }

  .home-promo-popup__image {
    border-radius: 22px;
  }

  .home-promo-popup__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.65rem;
  }

  .home-promo-popup__eyebrow {
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .product-modal-header,
  .modal-footer,
  .modal-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .detail-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 0.96;
  }

  .detail-model-code {
    margin-top: 8px;
    font-size: 0.92rem;
  }

  .detail-feature-bullets li {
    font-size: 1rem;
  }

  .detail-rental-card {
    padding: 16px;
    border-radius: 22px;
  }

  .detail-plan-builder {
    gap: 14px;
  }

  .detail-plan-selector-group {
    gap: 10px;
  }

  .detail-plan-selector-label {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .detail-plan-selector-grid-service,
  .detail-plan-selector-grid-duration {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .detail-plan-option {
    min-height: 0;
    padding: 14px 12px;
    border-radius: 18px;
    text-align: left;
  }

  .detail-plan-option-duration {
    min-height: 0;
  }

  .detail-plan-option strong {
    font-size: 0.98rem;
  }

  .detail-plan-option span {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .detail-plan-summary-card {
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  .detail-plan-summary-card h3 {
    font-size: 1.05rem;
  }

  .detail-plan-summary-copy,
  .detail-plan-promo-note {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .detail-plan-price-box strong {
    font-size: 1.9rem;
  }

  .detail-plan-promo-price {
    align-items: flex-start;
  }

  .detail-plan-promo-price strong,
  .detail-plan-discount-pill strong {
    font-size: 1.7rem;
  }

  .detail-plan-discount-pill {
    min-width: 0;
    width: 100%;
    padding: 14px 12px 12px;
    border-radius: 18px;
  }

  .detail-gallery-frame {
    padding: 14px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"],
  .detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"],
  .detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"],
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"],
  .detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"],
  .detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] {
    padding: 16px 16px 12px;
  }

  .detail-gallery-main {
    min-height: 300px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] .detail-gallery-main {
    min-height: 350px;
    padding: 22px 12px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main {
    min-height: 420px;
  }

  .detail-gallery-main img {
    max-width: 86%;
    max-height: 250px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-G24FFQKB.AEEPLM1"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-J257SQZW.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-L257KQKW.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-X257CMEW.ATEPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GC-L24FFCBB.AEVPLM1"] .detail-gallery-main img {
    width: min(88%, 420px);
    max-width: none;
    max-height: 286px;
  }

  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main img {
    width: min(96%, 520px);
    max-height: 360px;
  }

  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main {
    min-height: 440px;
  }

  .detail-gallery-frame[data-product-code="GN-F392PQAK.AEPPLM1"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-F452PQAK.AEPPLMT"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="GN-V389FQEF.AEPPLMT"] .detail-gallery-main img {
    width: min(92%, 420px);
    max-height: 390px;
  }

  .detail-gallery-frame[data-product-code="SIQ11B"],
  .detail-gallery-frame[data-product-code="SIQ13B"],
  .detail-gallery-frame[data-product-code="SIQ18B"],
  .detail-gallery-frame[data-product-code="SIQ24B"] {
    padding: 14px 14px 10px;
  }

  .detail-gallery-frame[data-product-code="SIQ11B"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="SIQ13B"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="SIQ18B"] .detail-gallery-main,
  .detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main {
    min-height: 290px;
    padding: 12px 8px;
  }

  .detail-gallery-frame[data-product-code="SIQ11B"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="SIQ13B"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="SIQ18B"] .detail-gallery-main img,
  .detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main img {
    width: min(98%, 440px);
    max-height: 214px;
  }

  .detail-gallery-frame[data-product-code="SIQ24B"] .detail-gallery-main img {
    width: min(100%, 470px);
    max-height: 226px;
  }

  .detail-gallery-frame[data-product-code="GC-V22FFQMB.AEPPLMT"] .detail-gallery-main {
    min-height: 390px;
  }

  .detail-gallery-frame[data-product-code="GC-X24FFCRB.AEVPLM1"] .detail-gallery-main img {
    width: min(94%, 480px);
    max-height: 368px;
  }

  .detail-gallery-main {
    touch-action: pan-y;
  }

  .detail-gallery-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 64px;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .detail-gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .detail-thumb {
    height: 64px;
    scroll-snap-align: start;
  }

  .detail-spec-quick,
  .spec-table div {
    grid-template-columns: 1fr;
  }

  .detail-spec-quick div {
    padding: 14px;
    border-radius: 16px;
  }

  .spec-table div {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-model {
    padding: 16px;
    border-radius: 26px;
  }

  .catalog-media {
    min-height: 180px;
    padding: 16px;
    border-radius: 24px;
  }

  .catalog-visual {
    min-height: 148px;
  }

  .catalog-visual img {
    max-width: 80%;
    max-height: 148px;
  }

  .selected-card {
    padding: 14px;
  }

  .selected-thumb {
    width: 64px;
    height: 76px;
  }

  .choice-card,
  .package-card {
    padding: 16px;
  }

  .choice-card--category h4,
  .choice-card--model h4 {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .choice-thumb {
    height: 160px;
  }

  .plan-summary-visual {
    min-height: 220px;
  }

  .cta-banner {
    gap: 16px;
  }

  .contact-pill {
    width: 100%;
  }

  .stepper {
    gap: 12px;
    padding-top: 14px;
  }
}
