:root {
  --bg: #f9fffe;
  --surface: #ffffff;
  --soft: #e9faf7;
  --primary: #18c0b0;
  --primary-dark: #087a70;
  --primary-light: #9be7df;
  --text: #17332f;
  --muted: #617b77;
  --line: #d5eeea;
  --success: #25d366;
  --shadow: 0 24px 60px rgba(8, 91, 82, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 13px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

body.cart-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 255, 254, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(213, 238, 234, 0.9);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(24, 192, 176, 0.20);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1.15;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 25px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 13px 11px 17px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--text);
  font-size: 12px;
}

.hero {
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #baf4ed;
}

.hero h1,
.section-heading h2,
.custom-copy h2,
.about-copy h2,
.contact-main h2,
.cart-header h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.12;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(43px, 5.2vw, 72px);
}

.hero-copy > p {
  max-width: 620px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(24, 192, 176, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn.full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  font-size: 18px;
}

.hero-points span {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  padding: 13px;
  border-radius: 36px;
  background: linear-gradient(145deg, #ecfcf9, #9ee4dd);
  box-shadow: var(--shadow);
}

.hero-media > img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
}

.hero-price {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(8, 83, 75, 0.18);
}

.hero-price small,
.hero-price strong,
.hero-price span {
  display: block;
}

.hero-price small {
  color: var(--muted);
}

.hero-price strong {
  margin: 2px 0;
  font-size: 25px;
}

.hero-price span {
  color: var(--muted);
  font-size: 12px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-right: 1px solid var(--line);
}

.trust-grid span:last-child {
  border-right: 0;
}

.section {
  padding: 105px 0;
}

.soft-section {
  background: var(--soft);
}

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

.section-heading.center {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 50px;
  text-align: center;
}

.section-heading h2,
.custom-copy h2,
.about-copy h2,
.contact-main h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading > p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
}

.section-heading.center p {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--muted);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 110px;
}

.gallery-main {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.gallery-main span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(47, 41, 36, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.gallery-thumb {
  padding: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 15px;
  background: #fff;
}

.gallery-thumb.active {
  border-color: var(--primary);
}

.gallery-thumb img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: 10px;
}

.photo-note {
  margin: 13px 4px 0;
  color: var(--muted);
  font-size: 12px;
}

.product-list {
  display: grid;
  gap: 15px;
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 83, 75, 0.09);
}

.product-code {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 5px 0 6px;
  font-size: 22px;
}

.product-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-purchase {
  flex: 0 0 auto;
  min-width: 155px;
  text-align: right;
}

.product-purchase strong {
  display: block;
  margin-bottom: 12px;
  font-size: 19px;
}

.product-purchase .btn {
  min-height: 43px;
  padding: 9px 18px;
}

.catalog-note {
  display: grid;
  gap: 3px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--text);
  color: #fff;
}

.catalog-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.catalog-note a {
  margin-top: 8px;
  color: #aef0e8;
  font-weight: 700;
}

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

.benefit-grid article {
  min-height: 275px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.benefit-number {
  display: block;
  margin-bottom: 50px;
  color: var(--primary);
  font-weight: 700;
}

.benefit-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.custom-grid,
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.custom-copy p,
.about-copy p {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.custom-form {
  display: grid;
  gap: 17px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

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

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(24, 192, 176, 0.12);
}

textarea {
  resize: vertical;
}

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

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

.testimonial-card button {
  width: 100%;
  height: 385px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--soft);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.testimonial-card button:hover img {
  transform: scale(1.025);
}

.testimonial-card > div {
  display: grid;
  gap: 5px;
  padding: 20px;
}

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

.about-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-section {
  padding: 20px 0 90px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 34px;
  padding: 54px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), #18bbaa);
  color: #fff;
}

.contact-main p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.address-card {
  align-self: stretch;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.address-card span,
.address-card strong {
  display: block;
}

.address-card span {
  color: #baf4ed;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.address-card strong {
  margin-top: 5px;
  font-size: 21px;
}

.address-card p {
  color: rgba(255, 255, 255, 0.76);
}

.address-card a {
  color: #fff;
  font-weight: 700;
}

.site-footer {
  padding: 70px 0 24px;
  background: #102f2b;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 40px;
}

.footer-grid h4 {
  margin-top: 0;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-brand .brand-logo {
  background: var(--primary);
  box-shadow: none;
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.3);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  opacity: 0;
  background: rgba(7, 42, 38, 0.48);
  transition: 0.25s ease;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(440px, 100%);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  transform: translateX(100%);
  transition: 0.3s ease;
  box-shadow: -20px 0 50px rgba(8, 62, 56, 0.18);
}

.cart-open .cart-overlay {
  visibility: visible;
  opacity: 1;
}

.cart-open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 30px;
}

.close-cart {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
}

.cart-content {
  overflow: auto;
  padding: 24px;
}

.empty-cart {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-item strong {
  display: block;
  margin-top: 7px;
}

.remove-item {
  align-self: start;
  border: 0;
  background: transparent;
  color: #a14c3e;
  font-size: 12px;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-footer small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 39, 35, 0.92);
  transition: 0.22s ease;
}

.lightbox-open .lightbox {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 16px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 20px);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 14px;
  transition: 0.25s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1050px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .custom-grid,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .gallery-main img {
    height: 650px;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    gap: 11px;
  }

  .brand-copy small {
    display: none;
  }

  .cart-label {
    display: none;
  }

  .cart-button {
    padding: 10px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-media {
    padding: 9px;
  }

  .hero-media > img {
    height: 570px;
  }

  .hero-price {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .hero-points,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid span:nth-child(2) {
    border-right: 0;
  }

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

  .section {
    padding: 76px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 16px;
  }

  .gallery-main img {
    height: 500px;
  }

  .product-card {
    display: block;
  }

  .product-purchase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    margin-top: 18px;
    text-align: left;
  }

  .product-purchase strong {
    margin-bottom: 0;
  }

  .benefit-grid,
  .testimonial-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card button {
    height: 430px;
  }

  .custom-grid,
  .about-grid {
    gap: 38px;
  }

  .about-photo img {
    height: 520px;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .copyright {
    display: block;
  }
}


/* Aksen tambahan tema hijau-putih */
::selection {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.main-nav a,
.text-link,
.address-card a,
.catalog-note a,
.footer-grid a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-grid a:hover {
  color: var(--primary-light);
}

.gallery-thumb:hover {
  border-color: var(--primary-light);
}

.product-card:hover {
  border-color: rgba(24, 192, 176, 0.42);
}

.custom-form,
.product-card,
.testimonial-card {
  box-shadow: 0 14px 40px rgba(8, 91, 82, 0.06);
}

.cart-button:hover {
  background: var(--primary-dark);
}

.hero-price {
  border: 1px solid rgba(24, 192, 176, 0.20);
}

.trust-strip {
  background: rgba(255, 255, 255, 0.92);
}


/* =========================================================
   HERO FULLSCREEN — VERSI 4
   ========================================================= */

.hero.hero-fullscreen {
  position: relative;
  height: calc(100svh - 82px);
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--text);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 43, 38, 0.72) 0%,
      rgba(8, 43, 38, 0.42) 37%,
      rgba(8, 43, 38, 0.06) 67%,
      rgba(8, 43, 38, 0.02) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 31, 28, 0.52) 0%,
      rgba(5, 31, 28, 0.02) 48%
    );
}

.hero-fullscreen-content {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 54px;
}

.hero-intro {
  max-width: 650px;
  color: #fff;
}

.hero-intro h1 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(48px, 6.3vw, 86px);
  text-shadow: 0 8px 36px rgba(5, 35, 31, 0.28);
}

.hero-intro > p {
  max-width: 540px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero-fullscreen .btn-outline-light {
  background: rgba(8, 67, 60, 0.20);
  backdrop-filter: blur(9px);
}

.hero-fullscreen .btn-outline-light:hover {
  background: rgba(8, 67, 60, 0.42);
}

.scroll-indicator {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(7, 48, 43, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.scroll-arrow {
  font-size: 17px;
  animation: hero-bounce 1.6s ease-in-out infinite;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

@media (max-width: 900px) {
  .hero.hero-fullscreen {
    height: calc(100svh - 82px);
    min-height: 620px;
  }

  .hero-background {
    object-position: 57% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8, 43, 38, 0.69) 0%,
        rgba(8, 43, 38, 0.31) 58%,
        rgba(8, 43, 38, 0.06) 100%
      ),
      linear-gradient(
        0deg,
        rgba(5, 31, 28, 0.62) 0%,
        rgba(5, 31, 28, 0.02) 60%
      );
  }

  .hero-fullscreen-content {
    align-items: flex-end;
    padding-bottom: 38px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero.hero-fullscreen {
    height: calc(100svh - 82px);
    min-height: 580px;
  }

  .hero-background {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(5, 34, 30, 0.83) 0%,
        rgba(5, 34, 30, 0.25) 58%,
        rgba(5, 34, 30, 0.06) 100%
      );
  }

  .hero-fullscreen-content {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .hero-intro h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-intro > p {
    margin-top: 15px;
    margin-bottom: 22px;
    font-size: 15px;
  }

  .hero-fullscreen .hero-actions {
    gap: 9px;
  }

  .hero-fullscreen .btn {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 13px;
  }
}


/* =========================================================
   HERO SLIDER OTOMATIS — VERSI 5
   ========================================================= */

.hero-slider {
  position: relative;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: var(--text);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition:
    opacity 1s ease,
    visibility 1s ease,
    transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.hero-slider-button {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(6, 55, 49, 0.22);
  color: #fff;
  font-size: 33px;
  line-height: 1;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero-slider-button:hover {
  background: rgba(6, 73, 65, 0.62);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev {
  left: 24px;
}

.hero-slider-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 27px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition:
    width 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.hero-dot.is-active {
  width: 31px;
  background: #fff;
  border-color: #fff;
}

.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--primary);
}

.hero-progress span.is-running {
  animation: hero-progress-run 5s linear forwards;
}

@keyframes hero-progress-run {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 900px) {
  .hero-slide img {
    object-position: 58% center;
  }

  .hero-slider-button {
    width: 42px;
    height: 42px;
    font-size: 29px;
  }

  .hero-slider-prev {
    left: 14px;
  }

  .hero-slider-next {
    right: 14px;
  }
}

@media (max-width: 600px) {
  .hero-slide img {
    object-position: 61% center;
  }

  .hero-slider-button {
    top: auto;
    bottom: 25px;
    width: 38px;
    height: 38px;
    font-size: 25px;
    transform: none;
  }

  .hero-slider-button:hover {
    transform: scale(1.04);
  }

  .hero-slider-prev {
    left: 14px;
  }

  .hero-slider-next {
    right: 14px;
  }

  .hero-dots {
    bottom: 39px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.2s linear;
    transform: none;
  }

  .hero-progress {
    display: none;
  }
}


/* =========================================================
   KONFIGURATOR PRODUK — VERSI 6
   ========================================================= */

.product-config-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(24, 192, 176, 0.08), transparent 28%),
    var(--bg);
}

.configurator-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.configurator-preview {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.config-preview-image {
  position: relative;
  width: 100%;
  height: 520px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.config-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.config-preview-image:hover img {
  transform: scale(1.018);
}

.config-preview-image > span {
  position: absolute;
  right: 17px;
  bottom: 17px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(16, 47, 43, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.config-preview-note {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.config-preview-badge {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.config-preview-note h3 {
  margin: 6px 0 7px;
  font-size: 22px;
}

.config-preview-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.config-summary-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 40px rgba(8, 91, 82, 0.06);
}

.config-summary-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.config-summary-heading span,
.config-summary-heading strong {
  display: block;
}

.config-summary-heading > div > span {
  color: var(--muted);
  font-size: 12px;
}

.config-summary-heading > div > strong {
  margin-top: 2px;
  font-size: 15px;
}

.config-status {
  align-self: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.config-status.is-complete {
  background: var(--primary);
  color: #fff;
}

.config-summary-list {
  margin: 0;
  padding: 8px 22px;
}

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

.config-summary-list > div:last-child {
  border-bottom: 0;
}

.config-summary-list dt {
  color: var(--muted);
  font-size: 13px;
}

.config-summary-list dd {
  margin: 0;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
}

.config-summary-list dd.is-empty {
  color: #9aaba8;
  font-weight: 500;
}

.config-price {
  display: grid;
  gap: 7px;
  padding: 19px 22px 22px;
  border-top: 1px solid var(--line);
}

.config-price span,
.config-price strong {
  display: block;
}

.config-price span {
  color: var(--muted);
  font-size: 12px;
}

.config-price strong {
  font-size: 24px;
}

.config-price small {
  color: var(--muted);
}

.product-configurator {
  display: grid;
  gap: 18px;
}

.config-step {
  min-width: 0;
  margin: 0;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 40px rgba(8, 91, 82, 0.055);
}

.config-step legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 0 20px;
}

.config-step legend strong,
.config-step legend small {
  display: block;
}

.config-step legend strong {
  font-size: 18px;
}

.config-step legend small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.step-number {
  flex: 0 0 auto;
  min-width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  padding-inline: 9px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
}

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

.visual-option,
.simple-option {
  position: relative;
  cursor: pointer;
}

.visual-option input,
.simple-option input,
.size-option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.visual-option {
  display: block;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.visual-option:hover,
.simple-option:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.visual-option:has(input:focus-visible),
.simple-option:has(input:focus-visible),
.size-option-grid label:has(input:focus-visible) {
  outline: 3px solid rgba(24, 192, 176, 0.22);
  outline-offset: 3px;
}

.visual-option:has(input:checked),
.simple-option:has(input:checked) {
  border-color: var(--primary);
  box-shadow: 0 12px 26px rgba(24, 192, 176, 0.13);
}

.visual-option-media {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.visual-option-media svg {
  display: block;
  width: 100%;
  height: auto;
}

.visual-option-copy {
  display: grid;
  gap: 4px;
  padding: 16px 17px 18px;
}

.visual-option-copy strong {
  font-size: 16px;
}

.visual-option-copy small {
  min-height: 40px;
  color: var(--muted);
  font-size: 12px;
}

.option-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(16, 47, 43, 0.30);
  color: #fff;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.visual-option:has(input:checked) .option-check,
.simple-option:has(input:checked) .option-check {
  opacity: 1;
  transform: scale(1);
  background: var(--primary);
}

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

.simple-option {
  min-height: 114px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.simple-option-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--soft);
  color: var(--primary-dark);
}

.simple-option-icon svg {
  width: 36px;
  height: 36px;
}

.simple-option strong,
.simple-option small {
  display: block;
}

.simple-option strong {
  font-size: 15px;
}

.simple-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.simple-option .option-check {
  top: 9px;
  right: 9px;
  width: 24px;
  height: 24px;
  font-size: 12px;
}

.conditional-step {
  border-color: rgba(24, 192, 176, 0.36);
  background:
    linear-gradient(135deg, rgba(233, 250, 247, 0.78), #fff 50%);
  animation: conditional-reveal 0.28s ease both;
}

@keyframes conditional-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.size-option-grid label {
  cursor: pointer;
}

.size-option-grid span {
  min-height: 47px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 2px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--text);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.size-option-grid label:hover span {
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

.size-option-grid input:checked + span {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 9px 20px rgba(24, 192, 176, 0.16);
}

.configurator-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 27px;
  border-radius: var(--radius-md);
  background: var(--text);
  color: #fff;
}

.configurator-submit span,
.configurator-submit strong,
.configurator-submit small {
  display: block;
}

.configurator-submit span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.configurator-submit strong {
  margin: 2px 0;
  font-size: 24px;
}

.configurator-submit small {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.66);
}

.config-add-cart {
  flex: 0 0 auto;
}

.config-add-cart:disabled {
  cursor: not-allowed;
  transform: none;
  background: #71938e;
  box-shadow: none;
  opacity: 0.62;
}

.cart-item-details {
  display: grid;
  gap: 2px;
  margin-top: 4px;
}

.cart-item-details span {
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 1050px) {
  .configurator-layout {
    grid-template-columns: 1fr;
  }

  .configurator-preview {
    position: static;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .config-preview-image {
    grid-row: span 2;
    height: 600px;
  }

  .size-option-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .configurator-preview {
    grid-template-columns: 1fr;
  }

  .config-preview-image {
    grid-row: auto;
    height: 500px;
  }

  .visual-option-grid,
  .simple-option-grid {
    grid-template-columns: 1fr;
  }

  .visual-option-copy small {
    min-height: 0;
  }

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

  .config-step {
    padding: 21px 17px;
  }

  .configurator-submit {
    display: grid;
    padding: 23px 20px;
  }

  .config-add-cart {
    width: 100%;
  }
}


/* =========================================================
   KONFIGURATOR COMPACT — VERSI 7
   Dioptimalkan agar muat dalam satu layar laptop
   ========================================================= */

@media (min-width: 1060px) {
  .product-config-section {
    min-height: calc(100vh - 82px);
    padding: 28px 0 34px;
  }

  .product-config-section .section-heading {
    align-items: center;
    margin-bottom: 18px;
  }

  .product-config-section .section-heading h2 {
    font-size: clamp(30px, 3vw, 42px);
  }

  .product-config-section .section-heading .eyebrow {
    margin-bottom: 6px;
  }

  .product-config-section .section-heading > p {
    max-width: 430px;
    font-size: 13px;
    line-height: 1.5;
  }

  .configurator-layout {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    gap: 20px;
  }

  .configurator-preview {
    top: 96px;
    gap: 10px;
  }

  .config-preview-image {
    height: 330px;
    border-radius: 22px;
  }

  .config-preview-note {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .config-preview-badge {
    font-size: 9px;
  }

  .config-preview-note h3 {
    margin: 4px 0;
    font-size: 17px;
  }

  .config-preview-note p {
    font-size: 11px;
    line-height: 1.4;
  }

  .config-summary-card {
    border-radius: 16px;
  }

  .config-summary-heading {
    padding: 11px 14px;
  }

  .config-summary-heading > div > span {
    font-size: 10px;
  }

  .config-summary-heading > div > strong {
    font-size: 12px;
  }

  .config-status {
    padding: 4px 7px;
    font-size: 9px;
  }

  .config-summary-list {
    padding: 2px 14px;
  }

  .config-summary-list > div {
    padding: 5px 0;
  }

  .config-summary-list dt,
  .config-summary-list dd {
    font-size: 10px;
  }

  .config-price {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px 14px;
    padding: 10px 14px 12px;
  }

  .config-price div {
    grid-row: 1 / span 2;
  }

  .config-price span {
    font-size: 9px;
  }

  .config-price strong {
    font-size: 18px;
  }

  .config-price small {
    max-width: 165px;
    text-align: right;
    font-size: 9px;
    line-height: 1.35;
  }

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

  .config-step {
    padding: 14px;
    border-radius: 16px;
  }

  .config-step legend {
    gap: 8px;
    padding-bottom: 9px;
  }

  .config-step legend strong {
    font-size: 14px;
  }

  .config-step legend small {
    font-size: 9px;
    line-height: 1.3;
  }

  .step-number {
    min-width: 29px;
    height: 29px;
    padding-inline: 7px;
    border-radius: 9px;
    font-size: 9px;
  }

  .config-step[data-step="1"] {
    grid-column: 1;
  }

  .config-step[data-step="2"] {
    grid-column: 2;
  }

  .conditional-step {
    grid-column: 1 / -1;
  }

  .config-step[data-step="3"] {
    grid-column: 1 / -1;
  }

  .visual-option-grid,
  .simple-option-grid {
    gap: 8px;
  }

  .visual-option {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    min-height: 88px;
    border-radius: 13px;
  }

  .visual-option-media {
    height: 100%;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .visual-option-media svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .visual-option-copy {
    gap: 2px;
    padding: 10px 12px;
  }

  .visual-option-copy strong {
    font-size: 12px;
  }

  .visual-option-copy small {
    min-height: 0;
    font-size: 9px;
    line-height: 1.35;
  }

  .visual-option .option-check {
    top: 7px;
    right: 7px;
    width: 21px;
    height: 21px;
    font-size: 10px;
  }

  .simple-option {
    min-height: 72px;
    grid-template-columns: 38px 1fr;
    gap: 9px;
    padding: 10px;
    border-radius: 13px;
  }

  .simple-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .simple-option-icon svg {
    width: 26px;
    height: 26px;
  }

  .simple-option strong {
    font-size: 12px;
  }

  .simple-option small {
    font-size: 9px;
    line-height: 1.25;
  }

  .simple-option .option-check {
    top: 6px;
    right: 6px;
    width: 19px;
    height: 19px;
    font-size: 9px;
  }

  .size-option-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  .size-option-grid span {
    min-height: 36px;
    padding: 5px 6px;
    border-radius: 9px;
    font-size: 10px;
  }

  .configurator-submit {
    grid-column: 1 / -1;
    min-height: 68px;
    padding: 12px 16px;
    border-radius: 15px;
  }

  .configurator-submit span {
    font-size: 9px;
  }

  .configurator-submit strong {
    margin: 0;
    font-size: 18px;
  }

  .configurator-submit small {
    font-size: 9px;
    line-height: 1.3;
  }

  .configurator-submit .btn {
    min-height: 42px;
    padding: 9px 16px;
    font-size: 12px;
  }
}

/* Laptop dengan tinggi layar lebih pendek */
@media (min-width: 1060px) and (max-height: 820px) {
  .product-config-section {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .product-config-section .section-heading {
    margin-bottom: 12px;
  }

  .product-config-section .section-heading h2 {
    font-size: 32px;
  }

  .config-preview-image {
    height: 275px;
  }

  .config-preview-note {
    display: none;
  }

  .config-summary-heading {
    padding: 8px 12px;
  }

  .config-summary-list > div {
    padding: 4px 0;
  }

  .config-price {
    padding: 8px 12px 9px;
  }

  .config-step {
    padding: 11px 12px;
  }

  .config-step legend {
    padding-bottom: 7px;
  }

  .visual-option {
    min-height: 76px;
    grid-template-columns: 78px 1fr;
  }

  .simple-option {
    min-height: 62px;
    padding: 8px;
  }

  .size-option-grid span {
    min-height: 31px;
    font-size: 9px;
  }

  .configurator-submit {
    min-height: 58px;
    padding: 9px 14px;
  }
}


/* =========================================================
   HALAMAN JASA RENOVASI — VERSI 8
   ========================================================= */

.main-nav a.active {
  color: var(--primary-dark);
  font-weight: 800;
}

.renovation-nav-cta {
  justify-content: center;
  min-width: 108px;
}

.renovation-hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--text);
}

.renovation-hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.renovation-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 48, 43, .84), rgba(5, 48, 43, .43) 50%, rgba(5, 48, 43, .10)),
    linear-gradient(0deg, rgba(5, 37, 33, .65), transparent 60%);
}

.renovation-hero-content {
  max-width: 1160px;
  padding-top: 100px;
  padding-bottom: 72px;
  color: #fff;
}

.renovation-hero-content h1 {
  max-width: 790px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 1.04;
}

.renovation-hero-content > p {
  max-width: 680px;
  margin: 22px 0 28px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
}

.renovation-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.renovation-hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(8, 78, 70, .28);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.renovation-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.renovation-intro h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
}

.renovation-intro p {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
}

.renovation-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.renovation-service-grid article {
  min-height: 255px;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.78);
  transition: transform .2s ease, box-shadow .2s ease;
}

.renovation-service-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(8, 91, 82, .09);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 13px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.renovation-service-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.renovation-service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.renovation-showcase-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 15px 42px rgba(8, 91, 82, .07);
}

.renovation-showcase-grid img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  background: var(--soft);
}

.renovation-showcase-grid article > div {
  padding: 22px;
}

.renovation-showcase-grid span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.renovation-showcase-grid h3 {
  margin: 6px 0 7px;
  font-size: 21px;
}

.renovation-showcase-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.renovation-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.renovation-process-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px;
  background: rgba(255,255,255,.75);
}

.renovation-process-grid article > span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--primary);
  font-weight: 800;
}

.renovation-process-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.renovation-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.consultation-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 65px;
  align-items: center;
}

.consultation-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
}

.consultation-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.consultation-address {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.consultation-address span {
  color: var(--muted);
  font-size: 13px;
}

.renovation-form {
  display: grid;
  gap: 16px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.renovation-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--text);
}

.renovation-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(24, 192, 176, .12);
}

.renovation-form > small {
  color: var(--muted);
}

.renovation-contact {
  padding-top: 0;
}

@media (max-width: 1050px) {
  .renovation-intro-grid,
  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

@media (max-width: 760px) {
  .renovation-nav-cta {
    min-width: 0;
    padding: 10px 12px;
    font-size: 11px;
  }

  .renovation-hero {
    min-height: calc(100svh - 82px);
  }

  .renovation-hero > img {
    object-position: 60% center;
  }

  .renovation-hero-overlay {
    background: linear-gradient(0deg, rgba(5, 45, 40, .91), rgba(5, 45, 40, .20) 78%);
  }

  .renovation-hero-content {
    padding-top: 80px;
    padding-bottom: 38px;
  }

  .renovation-hero-content h1 {
    font-size: 45px;
  }

  .renovation-hero-content > p {
    font-size: 15px;
  }

  .renovation-service-grid,
  .renovation-showcase-grid,
  .renovation-process-grid {
    grid-template-columns: 1fr;
  }

  .renovation-service-grid article,
  .renovation-process-grid article {
    min-height: 0;
  }

  .service-icon,
  .renovation-process-grid article > span {
    margin-bottom: 26px;
  }

  .renovation-form {
    padding: 23px 18px;
  }
}


/* =========================================================
   KONFIGURATOR MOBILE SATU LAYAR — VERSI 9
   ========================================================= */

@media (max-width: 760px) {
  .product-config-section {
    min-height: calc(100svh - 82px);
    height: auto;
    padding: 8px 0 10px;
    overflow: visible;
  }

  .product-config-section .container {
    width: min(100% - 14px, 1160px);
  }

  .product-config-section .section-heading {
    margin-bottom: 6px;
  }

  .product-config-section .section-heading .eyebrow,
  .product-config-section .section-heading > p {
    display: none;
  }

  .product-config-section .section-heading h2 {
    font-size: 22px;
    line-height: 1.05;
  }

  .configurator-layout {
    display: block;
  }

  .configurator-preview {
    display: none;
  }

  .product-configurator {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .config-step {
    padding: 7px;
    border-radius: 11px;
    box-shadow: none;
  }

  .config-step legend {
    gap: 6px;
    padding-bottom: 5px;
  }

  .config-step legend strong {
    font-size: 11px;
    line-height: 1.1;
  }

  .config-step legend small {
    display: none;
  }

  .step-number {
    min-width: 23px;
    height: 23px;
    padding-inline: 5px;
    border-radius: 7px;
    font-size: 8px;
  }

  .visual-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .visual-option {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 58px;
    border-radius: 9px;
  }

  .visual-option-media {
    height: 58px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .visual-option-media svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .visual-option-copy {
    align-content: center;
    padding: 5px 6px;
  }

  .visual-option-copy strong {
    font-size: 9px;
    line-height: 1.15;
  }

  .visual-option-copy small {
    display: none;
  }

  .visual-option .option-check {
    top: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    border-width: 1px;
    font-size: 8px;
  }

  .simple-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .simple-option {
    min-height: 45px;
    grid-template-columns: 28px 1fr;
    gap: 5px;
    padding: 5px;
    border-radius: 9px;
  }

  .simple-option-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .simple-option-icon svg {
    width: 20px;
    height: 20px;
  }

  .simple-option strong {
    font-size: 9px;
    line-height: 1.1;
  }

  .simple-option small {
    display: none;
  }

  .simple-option .option-check {
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    font-size: 7px;
  }

  .conditional-step {
    animation-duration: 0.15s;
  }

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

  .size-option-grid span {
    min-height: 25px;
    padding: 3px 2px;
    border-radius: 7px;
    font-size: 7.5px;
    line-height: 1;
  }

  .configurator-submit {
    position: sticky;
    bottom: 4px;
    z-index: 20;
    min-height: 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 7px;
    padding: 6px 7px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(8, 47, 43, 0.22);
  }

  .configurator-submit span,
  .configurator-submit small {
    display: none;
  }

  .configurator-submit strong {
    margin: 0;
    font-size: 14px;
  }

  .configurator-submit .btn {
    width: auto;
    min-height: 34px;
    padding: 6px 9px;
    font-size: 9px;
    white-space: nowrap;
  }

  .config-add-cart:disabled {
    opacity: 0.58;
  }
}

@media (max-width: 760px) and (max-height: 720px) {
  .product-config-section {
    padding-top: 4px;
    padding-bottom: 6px;
  }

  .product-config-section .section-heading {
    margin-bottom: 3px;
  }

  .product-config-section .section-heading h2 {
    font-size: 18px;
  }

  .product-configurator {
    gap: 3px;
  }

  .config-step {
    padding: 5px;
  }

  .config-step legend {
    padding-bottom: 3px;
  }

  .visual-option {
    min-height: 50px;
    grid-template-columns: 52px 1fr;
  }

  .visual-option-media {
    height: 50px;
  }

  .simple-option {
    min-height: 39px;
  }

  .size-option-grid span {
    min-height: 22px;
    font-size: 7px;
  }

  .configurator-submit {
    min-height: 39px;
    padding: 4px 6px;
  }

  .configurator-submit strong {
    font-size: 12px;
  }

  .configurator-submit .btn {
    min-height: 31px;
    font-size: 8px;
  }
}


/* =========================================================
   MOBILE MARKETPLACE PRODUCT LAYOUT — VERSI 10
   Foto produk di atas, opsi konfigurasi di bawah
   ========================================================= */

.mobile-product-gallery-thumbs {
  display: none;
}

@media (max-width: 760px) {
  .product-config-section {
    min-height: auto;
    padding: 8px 0 12px;
  }

  .product-config-section .section-heading {
    margin-bottom: 7px;
  }

  .product-config-section .section-heading h2 {
    font-size: 21px;
  }

  .configurator-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  /* Tampilkan kembali foto produk, tetapi tetap ringkas. */
  .configurator-preview {
    position: static;
    display: block;
    margin: 0;
  }

  .config-preview-image {
    width: 100%;
    height: clamp(190px, 54vw, 245px);
    border-radius: 12px;
    box-shadow: none;
    background: var(--soft);
  }

  .config-preview-image img {
    object-fit: cover;
    object-position: center;
  }

  .config-preview-image > span {
    right: 9px;
    bottom: 9px;
    padding: 6px 9px;
    font-size: 9px;
  }

  /* Info dan ringkasan besar tetap disembunyikan supaya tidak terlalu panjang. */
  .config-preview-note,
  .config-summary-card {
    display: none;
  }

  .mobile-product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 58px);
    gap: 6px;
    margin-top: 6px;
  }

  .mobile-gallery-thumb {
    width: 58px;
    height: 43px;
    padding: 2px;
    overflow: hidden;
    border: 2px solid var(--line);
    border-radius: 8px;
    background: #fff;
    transition:
      border-color 0.18s ease,
      transform 0.18s ease;
  }

  .mobile-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .mobile-gallery-thumb.is-active {
    border-color: var(--primary);
  }

  .mobile-gallery-thumb:active {
    transform: scale(0.96);
  }

  .product-configurator {
    margin-top: 1px;
  }

  .configurator-submit {
    bottom: 4px;
  }
}

@media (max-width: 760px) and (max-height: 720px) {
  .config-preview-image {
    height: 165px;
  }

  .mobile-product-gallery-thumbs {
    grid-template-columns: repeat(3, 50px);
    gap: 5px;
    margin-top: 4px;
  }

  .mobile-gallery-thumb {
    width: 50px;
    height: 37px;
  }

  .product-config-section .section-heading h2 {
    font-size: 18px;
  }
}


/* =========================================================
   EDITORIAL FURNITURE MARKETPLACE — VERSI 11
   ========================================================= */

:root {
  --bg: #f3eee6;
  --surface: #fffdf9;
  --soft: #ece5db;
  --primary: #18bcae;
  --primary-dark: #0a746c;
  --primary-light: #a9e7df;
  --text: #202b28;
  --muted: #6d716d;
  --line: #ddd5ca;
  --shadow: 0 24px 55px rgba(55, 44, 33, 0.13);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body {
  background: var(--bg);
}

.section {
  padding: 92px 0;
}

.soft-section {
  background: #ebe4da;
}

/* Announcement bar */
.announcement-bar {
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(91, 75, 57, 0.10);
  background: #e9e1d6;
}

.announcement-grid {
  min-height: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.announcement-item {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 12px;
  padding: 9px 26px;
  border-right: 1px solid rgba(91, 75, 57, 0.14);
}

.announcement-item:first-child {
  padding-left: 0;
}

.announcement-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.announcement-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #756b60;
}

.announcement-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.announcement-item strong,
.announcement-item small {
  display: block;
}

.announcement-item strong {
  color: #383c39;
  font-size: 12px;
}

.announcement-item small {
  margin-top: 1px;
  color: #77746f;
  font-size: 10px;
}

/* Header seperti editorial marketplace */
.site-header.editorial-header {
  position: sticky;
  top: 0;
  z-index: 55;
  border-bottom: 1px solid rgba(93, 80, 67, 0.12);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}

.editorial-nav {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-left {
  min-width: 0;
  display: flex;
  align-items: center;
}

.editorial-main-nav {
  gap: 23px;
}

.editorial-main-nav a {
  color: #444a47;
  font-size: 13px;
  font-weight: 600;
}

.editorial-brand {
  justify-self: center;
  margin: 0;
  gap: 10px;
  text-align: center;
}

.editorial-brand .brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: none;
}

.editorial-brand .brand-copy strong {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  letter-spacing: 0.05em;
}

.editorial-brand .brand-copy small {
  font-size: 9px;
  letter-spacing: 0.04em;
}

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

.nav-icon-action {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #353a37;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-icon-action:hover {
  background: #eee7dd;
  transform: translateY(-1px);
}

.nav-icon-action svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editorial-cart-button {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 18px;
  background: #242724;
}

.editorial-cart-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editorial-cart-button .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 21px;
  height: 21px;
  border: 2px solid #fffdf9;
  background: #fff;
  color: #282b28;
  font-size: 10px;
}

.editorial-menu-toggle {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.editorial-menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
}

.editorial-renovation-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 999px;
  background: #242724;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* Hero */
.nordic-hero {
  min-height: 655px;
  height: calc(100svh - 154px);
  max-height: 820px;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
}

.nordic-hero .hero-overlay {
  background:
    linear-gradient(0deg, rgba(24, 21, 18, 0.50), rgba(24, 21, 18, 0.06) 66%),
    linear-gradient(90deg, rgba(23, 20, 17, 0.16), transparent 58%);
}

.nordic-hero-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 94px;
  text-align: center;
  color: #fff;
}

.nordic-hero-content h1 {
  max-width: none;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(72px, 9.2vw, 132px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-shadow: 0 5px 35px rgba(26, 20, 14, 0.18);
}

.nordic-hero-content > p {
  max-width: 625px;
  margin: 22px auto 28px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 18px;
  line-height: 1.5;
}

.nordic-hero-actions {
  justify-content: center;
}

.btn-dark {
  min-width: 245px;
  background: #252825;
  color: #fff;
}

.btn-glass {
  min-width: 245px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  backdrop-filter: blur(10px);
}

.nordic-hero .hero-slider-button {
  width: 46px;
  height: 46px;
  border-color: rgba(255,255,255,.50);
  background: rgba(25, 23, 20, .20);
}

.nordic-hero .hero-dots {
  bottom: 32px;
}

/* Kartu produk overlap hero */
.featured-products-shell {
  position: relative;
  z-index: 10;
  margin-top: -86px;
}

.featured-products-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(91, 78, 64, 0.10);
  border-radius: 25px;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 24px 55px rgba(52, 42, 32, 0.13);
  backdrop-filter: blur(18px);
}

.featured-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid #ebe3d9;
  border-radius: 15px;
  background: #fffdf9;
  color: var(--text);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.featured-product-card:hover {
  transform: translateY(-4px);
  border-color: #d6cbc0;
  box-shadow: 0 17px 30px rgba(52, 42, 32, 0.10);
}

.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: #242724;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .03em;
}

.featured-heart {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  color: #585d58;
  font-size: 22px;
}

.featured-image-wrap {
  height: 145px;
  display: block;
  overflow: hidden;
  background: #eee9e1;
}

.featured-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.featured-product-card:hover .featured-image-wrap img {
  transform: scale(1.035);
}

.featured-card-copy {
  display: grid;
  padding: 13px 13px 15px;
}

.featured-card-copy strong {
  font-size: 13px;
}

.featured-card-copy small {
  margin: 3px 0 9px;
  color: var(--muted);
  font-size: 10px;
}

.featured-card-copy b {
  font-size: 12px;
}

/* Strip material */
.material-logo-strip {
  padding: 38px 0 34px;
  border-bottom: 1px solid rgba(91,78,64,.12);
}

.material-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 18px;
}

.material-logo-grid span {
  text-align: center;
  color: #565852;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  letter-spacing: .06em;
}

/* Editorial split section */
.design-story {
  padding-top: 28px;
}

.design-story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid #ded5ca;
  border-radius: 24px;
  background: #fffdf9;
}

.design-story-image {
  min-height: 610px;
}

.design-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px);
}

.design-story-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .98;
}

.design-story-copy > p {
  max-width: 500px;
  margin: 22px 0 30px;
  color: var(--muted);
}

.design-story-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.design-story-links a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding-left .2s ease;
}

.design-story-links a:hover {
  padding-left: 7px;
  color: var(--primary-dark);
}

.story-link-icon {
  font-size: 24px;
}

.design-story-links strong,
.design-story-links small {
  display: block;
}

.design-story-links strong {
  font-size: 14px;
}

.design-story-links small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

/* Section typography */
.section-heading h2,
.custom-copy h2,
.about-copy h2,
.contact-main h2,
.renovation-intro h2,
.consultation-copy h2 {
  letter-spacing: -0.025em;
}

.section-heading h2 {
  font-size: clamp(40px, 4.4vw, 60px);
}

.product-config-section {
  background: #f7f2eb;
}

.product-config-section .section-heading {
  margin-bottom: 30px;
}

.product-config-section .section-heading h2 {
  max-width: 720px;
}

.config-preview-image,
.config-summary-card,
.config-step,
.custom-form,
.testimonial-card,
.benefit-grid article {
  border-color: #ded5ca;
  background: #fffdf9;
}

.config-preview-image {
  box-shadow: 0 20px 45px rgba(55, 44, 33, 0.12);
}

.config-summary-heading,
.simple-option-icon,
.step-number {
  background: #eee8df;
}

.visual-option,
.simple-option,
.size-option-grid span {
  border-color: #ddd5ca;
  background: #fffdf9;
}

.visual-option:has(input:checked),
.simple-option:has(input:checked) {
  border-color: var(--primary);
}

.size-option-grid input:checked + span {
  border-color: #242724;
  background: #242724;
}

.configurator-submit {
  background: #242724;
}

.benefit-grid article {
  min-height: 275px;
  border-radius: 18px;
}

.benefit-number {
  color: #8e867d;
}

.custom-grid,
.about-grid {
  gap: 72px;
}

.testimonial-card {
  overflow: hidden;
  border-radius: 18px;
}

.about-section {
  background: #fffdf9;
}

.contact-section {
  background: #242724;
}

.contact-card {
  background: transparent;
}

.address-card {
  background: #eee7dd;
  color: var(--text);
}

.site-footer {
  background: #ebe4da;
}

/* Halaman renovasi ikut desain baru */
.renovation-page {
  background: var(--bg);
}

.renovation-hero {
  min-height: 680px;
  height: calc(100svh - 154px);
}

.renovation-hero-content h1 {
  max-width: 850px;
  font-size: clamp(58px, 7vw, 94px);
  letter-spacing: -.04em;
}

.renovation-service-grid article,
.renovation-process-grid article,
.renovation-form,
.renovation-showcase-grid article {
  border-color: #ded5ca;
  background: #fffdf9;
}

/* Desktop sedang */
@media (max-width: 1120px) {
  .editorial-main-nav {
    gap: 14px;
  }

  .editorial-main-nav a {
    font-size: 12px;
  }

  .featured-products-panel {
    grid-template-columns: repeat(5, 190px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .featured-products-panel::-webkit-scrollbar {
    display: none;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .announcement-grid {
    min-height: 45px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .announcement-grid::-webkit-scrollbar {
    display: none;
  }

  .announcement-item {
    flex: 0 0 78%;
    min-width: 250px;
    grid-template-columns: 24px 1fr;
    padding: 7px 14px;
  }

  .announcement-item:first-child {
    padding-left: 4px;
  }

  .announcement-icon {
    width: 22px;
    height: 22px;
  }

  .announcement-icon svg {
    width: 20px;
    height: 20px;
  }

  .announcement-item strong {
    font-size: 10px;
  }

  .announcement-item small {
    font-size: 8px;
  }

  .editorial-nav {
    min-height: 72px;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .header-left {
    justify-self: start;
  }

  .editorial-menu-toggle {
    display: flex;
    flex-direction: column;
  }

  .editorial-main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 10px;
    right: 10px;
    z-index: 70;
    display: none;
    padding: 12px;
    border: 1px solid #ded5ca;
    border-radius: 14px;
    background: #fffdf9;
    box-shadow: var(--shadow);
  }

  .editorial-main-nav.open {
    display: grid;
  }

  .editorial-main-nav a {
    padding: 10px 8px;
    border-bottom: 1px solid #ece5dc;
    font-size: 12px;
  }

  .editorial-main-nav a:last-child {
    border-bottom: 0;
  }

  .editorial-brand {
    gap: 7px;
  }

  .editorial-brand .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .editorial-brand .brand-copy strong {
    font-size: 14px;
  }

  .editorial-brand .brand-copy small {
    display: none;
  }

  .nav-actions {
    gap: 5px;
  }

  .nav-search-action,
  .nav-consult-action {
    display: none;
  }

  .editorial-cart-button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .editorial-cart-button svg {
    width: 20px;
    height: 20px;
  }

  .editorial-renovation-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 9px;
  }

  .nordic-hero {
    min-height: 560px;
    height: calc(100svh - 117px);
    max-height: 690px;
  }

  .nordic-hero .hero-slide img {
    object-position: 59% center;
  }

  .nordic-hero .hero-overlay {
    background:
      linear-gradient(0deg, rgba(25, 22, 18, .69), rgba(25, 22, 18, .05) 72%),
      linear-gradient(90deg, rgba(25, 22, 18, .18), transparent);
  }

  .nordic-hero-content {
    justify-content: flex-end;
    padding: 90px 18px 105px;
  }

  .nordic-hero-content h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .nordic-hero-content > p {
    margin: 14px auto 20px;
    font-size: 13px;
  }

  .nordic-hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .btn-dark,
  .btn-glass {
    min-width: 0;
    width: 100%;
    min-height: 43px;
    font-size: 11px;
  }

  .nordic-hero .hero-slider-button {
    display: none;
  }

  .featured-products-shell {
    margin-top: -73px;
  }

  .featured-products-shell .container {
    width: calc(100% - 14px);
  }

  .featured-products-panel {
    grid-template-columns: repeat(5, 158px);
    gap: 7px;
    padding: 8px;
    border-radius: 17px;
  }

  .featured-product-card {
    border-radius: 11px;
  }

  .featured-image-wrap {
    height: 104px;
  }

  .featured-badge {
    top: 6px;
    left: 6px;
    padding: 4px 7px;
    font-size: 7px;
  }

  .featured-heart {
    top: 4px;
    right: 6px;
    font-size: 17px;
  }

  .featured-card-copy {
    padding: 9px;
  }

  .featured-card-copy strong {
    font-size: 10px;
  }

  .featured-card-copy small {
    font-size: 8px;
  }

  .featured-card-copy b {
    font-size: 9px;
  }

  .material-logo-strip {
    padding: 27px 0 22px;
  }

  .material-logo-grid {
    display: flex;
    gap: 27px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .material-logo-grid::-webkit-scrollbar {
    display: none;
  }

  .material-logo-grid span {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .design-story {
    padding: 16px 0 38px;
  }

  .design-story-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 16px;
  }

  .design-story-image {
    min-height: 285px;
  }

  .design-story-copy {
    padding: 28px 20px;
  }

  .design-story-copy h2 {
    font-size: 45px;
  }

  .design-story-copy > p {
    margin: 14px 0 20px;
    font-size: 13px;
  }

  .design-story-links a {
    padding: 12px 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2 {
    font-size: 35px;
  }

  .product-config-section {
    padding-top: 22px;
  }

  /* Pertahankan pola marketplace mobile dari versi 10. */
  .configurator-preview {
    display: block;
  }

  .config-preview-image {
    height: clamp(200px, 57vw, 250px);
    border-radius: 13px;
  }

  .mobile-product-gallery-thumbs {
    margin-bottom: 4px;
  }

  .config-step {
    background: #fffdf9;
  }

  .configurator-submit {
    background: #242724;
  }

  .renovation-hero {
    min-height: 590px;
    height: calc(100svh - 117px);
  }
}


/* =========================================================
   SUPERDECOR.ID GREEN BRAND THEME — VERSI 12
   Palet hijau logo, putih, dan mint lembut
   ========================================================= */

:root {
  --bg: #f4fbf9;
  --surface: #ffffff;
  --soft: #e8f7f3;
  --primary: #18c0b0;
  --primary-dark: #08756c;
  --primary-deep: #123f3a;
  --primary-light: #b9ebe5;
  --text: #153b36;
  --muted: #5f7773;
  --line: #cfe8e3;
  --shadow: 0 24px 55px rgba(8, 86, 78, 0.12);
}

/* Latar utama */
body,
.renovation-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(24, 192, 176, 0.06), transparent 26%),
    var(--bg);
  color: var(--text);
}

.section {
  background-color: transparent;
}

.soft-section {
  background:
    linear-gradient(180deg, #eaf8f5 0%, #f4fbf9 100%);
}

/* Bar informasi atas */
.announcement-bar {
  border-bottom-color: rgba(8, 117, 108, 0.12);
  background: #dff4f0;
}

.announcement-item {
  border-right-color: rgba(8, 117, 108, 0.13);
}

.announcement-icon {
  color: var(--primary-dark);
}

.announcement-item strong {
  color: var(--primary-deep);
}

.announcement-item small {
  color: var(--muted);
}

/* Header */
.site-header.editorial-header {
  border-bottom-color: rgba(8, 117, 108, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.editorial-main-nav a,
.nav-icon-action {
  color: var(--primary-deep);
}

.editorial-main-nav a:hover,
.editorial-main-nav a.active {
  color: var(--primary);
}

.nav-icon-action:hover {
  background: var(--soft);
}

.editorial-cart-button,
.editorial-renovation-cta {
  background: var(--primary-deep);
}

.editorial-cart-button:hover,
.editorial-renovation-cta:hover {
  background: var(--primary-dark);
}

.editorial-cart-button .cart-count {
  border-color: #fff;
  color: var(--primary-deep);
}

/* Hero */
.nordic-hero .hero-overlay {
  background:
    linear-gradient(0deg, rgba(8, 52, 47, 0.60), rgba(8, 52, 47, 0.06) 67%),
    linear-gradient(90deg, rgba(8, 52, 47, 0.22), transparent 60%);
}

.btn-dark {
  background: var(--primary-deep);
}

.btn-dark:hover {
  background: var(--primary-dark);
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(8, 117, 108, 0.16);
}

.nordic-hero .hero-slider-button {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(8, 86, 78, 0.24);
}

.hero-dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-progress span {
  background: var(--primary);
}

/* Produk unggulan di bawah hero */
.featured-products-panel {
  border-color: rgba(8, 117, 108, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 55px rgba(8, 86, 78, 0.13);
}

.featured-product-card {
  border-color: var(--line);
  background: #fff;
}

.featured-product-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 17px 30px rgba(8, 86, 78, 0.11);
}

.featured-badge {
  background: var(--primary-deep);
}

.featured-heart {
  color: var(--primary-dark);
}

.featured-image-wrap {
  background: var(--soft);
}

.featured-card-copy b {
  color: var(--primary-dark);
}

/* Strip keunggulan */
.material-logo-strip {
  border-bottom-color: rgba(8, 117, 108, 0.13);
  background: #ffffff;
}

.material-logo-grid span {
  color: var(--primary-deep);
}

/* Section editorial */
.design-story-grid {
  border-color: var(--line);
  background: #fff;
}

.design-story-copy {
  background:
    linear-gradient(135deg, #ffffff 0%, #eef9f6 100%);
}

.design-story-links {
  border-top-color: var(--line);
}

.design-story-links a {
  border-bottom-color: var(--line);
}

.design-story-links a:hover {
  color: var(--primary-dark);
}

.story-link-icon {
  color: var(--primary);
}

/* Konfigurator produk */
.product-config-section {
  background:
    radial-gradient(circle at 7% 12%, rgba(24, 192, 176, 0.08), transparent 28%),
    #f6fcfa;
}

.config-preview-image,
.config-summary-card,
.config-step,
.custom-form,
.testimonial-card,
.benefit-grid article,
.renovation-service-grid article,
.renovation-process-grid article,
.renovation-form,
.renovation-showcase-grid article {
  border-color: var(--line);
  background: #ffffff;
}

.config-preview-image,
.config-summary-card,
.config-step,
.custom-form,
.renovation-form {
  box-shadow: 0 18px 42px rgba(8, 86, 78, 0.08);
}

.config-summary-heading,
.simple-option-icon,
.step-number {
  background: var(--soft);
}

.config-status.is-complete {
  background: var(--primary);
}

.config-summary-list > div,
.config-price,
.config-summary-heading {
  border-color: var(--line);
}

.visual-option,
.simple-option,
.size-option-grid span {
  border-color: var(--line);
  background: #ffffff;
}

.visual-option:hover,
.simple-option:hover,
.size-option-grid label:hover span {
  border-color: var(--primary-light);
}

.visual-option:has(input:checked),
.simple-option:has(input:checked) {
  border-color: var(--primary);
  box-shadow: 0 12px 26px rgba(24, 192, 176, 0.14);
}

.size-option-grid input:checked + span {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.conditional-step {
  border-color: rgba(24, 192, 176, 0.42);
  background:
    linear-gradient(135deg, rgba(232, 247, 243, 0.94), #ffffff 58%);
}

.configurator-submit {
  background:
    linear-gradient(135deg, var(--primary-deep), #0d5f57);
}

.config-add-cart:not(:disabled) {
  background: var(--primary);
}

.config-add-cart:not(:disabled):hover {
  background: #12a99b;
}

/* Keunggulan, custom, testimoni, tentang */
.benefit-grid article {
  background:
    linear-gradient(180deg, #ffffff 0%, #f0faf7 100%);
}

.benefit-number,
.service-icon,
.renovation-process-grid article > span {
  color: var(--primary-dark);
}

.service-icon {
  background: var(--primary);
  color: #fff;
}

.custom-section,
.testimonials-section {
  background:
    linear-gradient(180deg, #f4fbf9 0%, #eaf8f5 100%);
}

.custom-form input,
.custom-form textarea,
.custom-form select,
.renovation-form input,
.renovation-form textarea,
.renovation-form select {
  border-color: var(--line);
  background: #fff;
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus,
.renovation-form input:focus,
.renovation-form textarea:focus,
.renovation-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(24, 192, 176, 0.13);
}

.about-section {
  background: #ffffff;
}

/* Kontak dan footer */
.contact-section {
  background:
    linear-gradient(135deg, var(--primary-deep), #0a655d);
}

.address-card {
  background: #e7f7f3;
  color: var(--primary-deep);
}

.site-footer {
  background: #dff4f0;
  color: var(--primary-deep);
}

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

.floating-wa {
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(24, 192, 176, 0.34);
}

.floating-wa:hover {
  background: #12aa9d;
}

/* Drawer keranjang */
.cart-drawer {
  background: #ffffff;
}

.cart-drawer-header,
.cart-footer {
  border-color: var(--line);
}

.cart-item {
  border-color: var(--line);
  background: #f7fcfb;
}

.remove-item {
  color: var(--primary-dark);
}

.checkout-button {
  background: var(--primary);
}

.checkout-button:hover {
  background: #12aa9d;
}

/* Toast dan modal */
.toast {
  background: var(--primary-deep);
}

.lightbox-content {
  border-color: var(--line);
  background: #ffffff;
}

/* Halaman renovasi */
.renovation-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 63, 58, 0.86), rgba(8, 63, 58, 0.44) 52%, rgba(8, 63, 58, 0.10)),
    linear-gradient(0deg, rgba(8, 52, 47, 0.68), transparent 62%);
}

.renovation-intro,
.renovation-showcase,
.renovation-consultation {
  background: #f6fcfa;
}

.renovation-service-grid article,
.renovation-process-grid article {
  background:
    linear-gradient(180deg, #ffffff 0%, #eff9f6 100%);
}

.consultation-address {
  border-color: var(--line);
  background: var(--soft);
}

/* Mobile menu */
@media (max-width: 760px) {
  .editorial-main-nav {
    border-color: var(--line);
    background: #ffffff;
  }

  .editorial-main-nav a {
    border-bottom-color: var(--line);
  }

  .announcement-item {
    border-right-color: rgba(8, 117, 108, 0.13);
  }

  .featured-products-panel {
    background: rgba(255, 255, 255, 0.97);
  }

  .design-story-copy {
    background: #ffffff;
  }

  .config-step {
    background: #ffffff;
  }

  .configurator-submit {
    background:
      linear-gradient(135deg, var(--primary-deep), #0d5f57);
  }
}


/* =========================================================
   MOBILE ANNOUNCEMENT MARQUEE — VERSI 13
   Bergerak hanya pada smartphone, desktop tetap statis
   ========================================================= */

.announcement-item.announcement-clone {
  display: none;
}

@media (max-width: 760px) {
  .announcement-bar {
    overflow: hidden;
  }

  .announcement-bar .announcement-grid {
    width: max-content;
    max-width: none;
    min-height: 48px;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    animation: superdecor-announcement-marquee 28s linear infinite;
    will-change: transform;
  }

  .announcement-bar .announcement-item {
    flex: 0 0 295px;
    width: 295px;
    min-width: 295px;
    padding: 7px 18px;
    border-right: 1px solid rgba(8, 117, 108, 0.16);
  }

  .announcement-bar .announcement-item:first-child {
    padding-left: 18px;
  }

  .announcement-bar .announcement-item.announcement-clone {
    display: grid;
  }

  .announcement-bar .announcement-grid:active {
    animation-play-state: paused;
  }

  @keyframes superdecor-announcement-marquee {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-50%, 0, 0);
    }
  }
}

@media (max-width: 380px) {
  .announcement-bar .announcement-item {
    flex-basis: 270px;
    width: 270px;
    min-width: 270px;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .announcement-bar {
    overflow-x: auto;
  }

  .announcement-bar .announcement-grid {
    width: max-content;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .announcement-bar .announcement-item {
    scroll-snap-align: start;
  }

  .announcement-bar .announcement-item.announcement-clone {
    display: none;
  }
}


/* =========================================================
   PRODUCT CONFIGURATOR MODAL — VERSI 14
   Popup marketplace dengan halaman utama terlihat di belakang
   ========================================================= */

body.product-modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.product-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 48, 43, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 48px));
  max-height: calc(100svh - 48px);
  margin: 24px auto;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 28px;
  background: #f5fcfa;
  box-shadow: 0 34px 90px rgba(3, 42, 37, 0.30);
  transform: translateY(20px) scale(0.975);
  transition: transform 0.28s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) transparent;
}

.product-modal.is-open .product-modal-dialog {
  transform: translateY(0) scale(1);
}

.product-modal-topbar {
  position: sticky;
  top: 0;
  z-index: 35;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.product-modal-topbar > div {
  min-width: 0;
}

.product-modal-kicker,
.product-modal-topbar strong {
  display: block;
}

.product-modal-kicker {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-modal-topbar strong {
  overflow: hidden;
  color: var(--primary-deep);
  font-family: "Playfair Display", serif;
  font-size: 19px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-modal-close {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary-deep);
  font-size: 30px;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.product-modal-close:hover {
  background: var(--primary-deep);
  color: #fff;
  transform: rotate(5deg);
}

.product-config-modal-section {
  min-height: 0;
  padding: 25px 0 34px;
  background:
    radial-gradient(circle at 7% 12%, rgba(24, 192, 176, 0.08), transparent 28%),
    #f5fcfa;
}

.product-config-modal-section .container {
  width: min(1360px, calc(100% - 48px));
}

.product-config-modal-section .section-heading {
  margin-bottom: 20px;
}

.product-config-modal-section .section-heading h2 {
  font-size: clamp(32px, 3.6vw, 52px);
}

/* Popup tidak mengambil ruang di halaman utama. */
main > .product-config-section {
  display: none;
}

/* Desktop: konfigurator tetap ringkas dan nyaman. */
@media (min-width: 1060px) {
  .product-modal .product-config-section {
    min-height: 0;
  }

  .product-modal .configurator-layout {
    grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
  }

  .product-modal .configurator-preview {
    position: static;
  }

  .product-modal .config-preview-image {
    height: 345px;
  }
}

/* Tablet dan smartphone */
@media (max-width: 760px) {
  .product-modal-dialog {
    width: calc(100% - 12px);
    max-height: calc(100svh - 12px);
    margin: 6px auto;
    border-radius: 18px;
  }

  .product-modal-backdrop {
    background: rgba(5, 48, 43, 0.48);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .product-modal-topbar {
    min-height: 56px;
    padding: 7px 10px 7px 13px;
  }

  .product-modal-topbar strong {
    font-size: 15px;
  }

  .product-modal-close {
    width: 37px;
    height: 37px;
    font-size: 26px;
  }

  .product-config-modal-section {
    min-height: auto;
    padding: 8px 0 13px;
  }

  .product-config-modal-section .container {
    width: calc(100% - 12px);
  }

  .product-config-modal-section .section-heading {
    margin-bottom: 7px;
  }

  .product-config-modal-section .section-heading .eyebrow,
  .product-config-modal-section .section-heading > p {
    display: none;
  }

  .product-config-modal-section .section-heading h2 {
    font-size: 21px;
    line-height: 1.05;
  }

  .product-modal .configurator-preview {
    display: block;
  }

  .product-modal .config-preview-image {
    height: clamp(185px, 53vw, 235px);
  }

  .product-modal .configurator-submit {
    bottom: 3px;
  }
}

@media (max-width: 760px) and (max-height: 720px) {
  .product-modal-dialog {
    width: calc(100% - 8px);
    max-height: calc(100svh - 8px);
    margin: 4px auto;
    border-radius: 14px;
  }

  .product-modal-topbar {
    min-height: 48px;
  }

  .product-modal .config-preview-image {
    height: 155px;
  }

  .product-config-modal-section .section-heading h2 {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-modal,
  .product-modal-dialog {
    transition: none;
  }
}
