:root {
  --bg: #f4f1ec;
  --panel: #fffdf9;
  --text: #1f2024;
  --muted: #5f5d59;
  --line: rgba(37, 33, 28, 0.14);
  --dark: #2f2924;
  --soft: rgba(255, 255, 255, 0.74);
  --shadow: 0 24px 60px rgba(33, 29, 25, 0.12);
  --radius: 22px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 5%, rgba(255,255,255,1) 0, rgba(255,255,255,.76) 18%, transparent 38%),
    linear-gradient(180deg, #ebe7e0 0%, #f7f4ef 52%, #f2eee8 100%);
  line-height: 1.55;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

/* HEADER DESKTOP */
.site-header {
  width: calc(100% - 108px);
  max-width: 1280px;
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr 180px;
  align-items: center;
  gap: 24px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
}

.logo {
  width: fit-content;
  line-height: 1;
  color: #202126;
  font-weight: 700;
}

.logo span {
  display: block;
  font-size: 34px;
  letter-spacing: 13px;
}

.logo small {
  display: block;
  margin-top: 9px;
  font-size: 11px;
  letter-spacing: 11px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  font-size: 15px;
  font-weight: 500;
}

.nav-menu a {
  color: #242526;
  transition: opacity .2s ease;
}

.nav-menu a:hover {
  opacity: .62;
}

.header-wa {
  justify-self: end;
  min-height: 52px;
  padding: 0 22px;
  border: 1.5px solid #171717;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  background: rgba(255,255,255,.18);
}

.header-wa span,
.btn span {
  font-size: 18px;
}

.menu-toggle {
  display: none;
}

/* HERO DESKTOP */
.hero-section {
  width: 100%;
  min-height: 680px;
  margin: 0;
  padding: 0 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #e9e4dc;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(.92) contrast(.98);
  transition: opacity .75s ease, transform 6s ease;
}

.hero-image img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(68, 61, 54, .65) 0%,
      rgba(104, 96, 86, .42) 29%,
      rgba(235, 229, 219, .12) 58%,
      rgba(255, 255, 255, .05) 100%
    );
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 720px;
  height: 850px;
  z-index: 3;
  background:
    linear-gradient(
      112deg,
      transparent 0 23%,
      rgba(255,255,255,.74) 24% 37%,
      transparent 38% 50%,
      rgba(255,255,255,.52) 51% 64%,
      transparent 65% 100%
    );
  transform: rotate(8deg);
  filter: blur(2px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 520px;
  max-width: 520px;
  padding-top: 76px;
  margin-left: 0;
}

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  width: 100%;
  max-width: 560px;
  margin: 0;
  color: #101114;
  font-size: clamp(46px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -3.2px;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 500px;
  margin: 24px 0 28px;
  color: rgba(20, 20, 22, 0.78);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-copy h1.text-in,
.hero-copy p.text-in {
  animation: heroTextIn .62s ease both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 245px;
  height: 56px;
  border-radius: 18px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #151515;
  font-size: 16px;
  font-weight: 800;
}

.hero-link span {
  transition: transform .2s ease;
}

.hero-link:hover span {
  transform: translateX(4px);
}

.hero-slider-ui {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(20,20,20,.28);
  cursor: pointer;
  transition: .25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: #2f2722;
}

.hero-arrows {
  display: inline-flex;
  gap: 8px;
}

.hero-arrows button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(30,30,30,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  color: #181818;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
  backdrop-filter: blur(12px);
}

.hero-arrows button:hover {
  background: #2f2722;
  color: white;
  transform: translateY(-2px);
}

/* BUTTON */
.btn {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 800;
  border: 0;
  transition: transform .2s ease, opacity .2s ease;
}

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

.btn-dark {
  background: var(--dark);
  color: white;
  box-shadow: 0 18px 34px rgba(47,39,34,.18);
}

.btn-light {
  background: white;
  color: #2f2722;
}

/* FEATURE PANEL */
.feature-panel {
  width: min(100% - 108px, 1148px);
  margin: -54px auto 0;
  position: relative;
  z-index: 10;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(33,29,25,.12);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.feature-panel article {
  padding: 32px 24px 28px;
  text-align: center;
  min-height: 176px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
}

.feature-panel article:last-child {
  border-right: 0;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #5b4034;
  font-size: 38px;
  margin-bottom: 6px;
}

.feature-panel h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.feature-panel p {
  color: #4a4641;
  max-width: 190px;
  font-size: 14px;
  line-height: 1.55;
}

/* SECTION */
.section {
  width: min(100% - 108px, var(--container));
  margin: 0 auto;
  padding: 76px 0 0;
}

.section-head h2 {
  font-size: 35px;
  letter-spacing: -1.2px;
  line-height: 1.1;
}

.section-head p {
  color: #625c55;
  margin-top: 7px;
  font-size: 16px;
}

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

.section-head.inline a {
  color: #3a2f2a;
  font-weight: 700;
}

.section-head.center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}

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

.product-card,
.full-product-card,
.category-card,
.collection-card {
  overflow: hidden;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(39,35,29,.13);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(20,18,16,.05);
  transition: .22s ease;
}

.product-card:hover,
.full-product-card:hover,
.category-card:hover,
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(20,18,16,.10);
}

.product-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  background: #ddd7cf;
}

.product-card div {
  padding: 17px 20px 20px;
}

.product-card h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.product-card strong {
  display: block;
  color: #1e1a16;
  font-size: 15px;
  margin-bottom: 15px;
}

.product-card button,
.full-product-card button {
  border: 0;
  background: transparent;
  color: #2d2925;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
}

/* FULL PRODUCT */
.full-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.full-product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.full-product-card div {
  padding: 16px;
}

.full-product-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #7a6353;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.full-product-card h3 {
  font-size: 16px;
  line-height: 1.3;
}

.full-product-card p {
  margin: 7px 0 10px;
  color: #625c55;
  font-size: 13px;
  line-height: 1.55;
}

.full-product-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
}

/* CATEGORY */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.category-card div {
  padding: 22px;
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.category-card p {
  color: #625c55;
  font-size: 14px;
}

/* COLLECTION */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.collection-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.collection-card div {
  padding: 18px;
}

.collection-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.collection-card p {
  color: #625c55;
  font-size: 14px;
}

/* FABRIC */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.fabric-grid article {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 10px;
  text-align: center;
  overflow: hidden;
}

.fabric-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}

.fabric-grid span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  font-weight: 800;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 22px 55px rgba(20,18,16,.06);
}

.about-image {
  overflow: hidden;
  border-radius: 26px;
}

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

.mini-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #6a5648;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-copy h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.16;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.about-copy > p {
  color: #5e5851;
  font-size: 16px;
  line-height: 1.75;
}

.about-features {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.about-features article {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(39,35,29,.09);
}

.about-features span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0ebe4;
}

.about-features h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.about-features p {
  color: #625c55;
  font-size: 14px;
}

/* PROCESS */
.process-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr 90px 1fr;
  align-items: center;
}

.process-row article {
  position: relative;
  text-align: center;
}

.number {
  position: absolute;
  top: -16px;
  left: calc(50% + 8px);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #1d1d1f;
  color: white;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  z-index: 2;
}

.step-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid rgba(31,32,36,.22);
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #332b26;
  background: rgba(255,255,255,.38);
}

.process-row h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.process-row p {
  color: #4f4d49;
  font-size: 13px;
  line-height: 1.45;
  max-width: 160px;
  margin: 0 auto;
}

.line {
  height: 1px;
  background: rgba(31,32,36,.23);
}

/* PROMO */
.promo-card {
  padding: 44px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(47,39,34,.96), rgba(88,74,64,.92));
  color: white;
  box-shadow: 0 24px 56px rgba(47,39,34,.18);
}

.promo-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.promo-card h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.promo-card p {
  max-width: 720px;
  color: rgba(255,255,255,.74);
  margin-bottom: 24px;
}

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

.testimonial-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(39,35,29,.11);
}

.testimonial-card p {
  color: #48423c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.testimonial-card strong {
  font-size: 14px;
}

/* CTA */
.cta-card {
  width: min(100% - 108px, var(--container));
  margin: 50px auto 56px;
  padding: 30px 72px;
  min-height: 110px;
  background: rgba(255,255,255,.76);
  border-radius: 34px;
  box-shadow: 0 18px 38px rgba(20, 18, 16, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(14px);
}

.cta-card h2 {
  font-size: 22px;
  line-height: 1.35;
}

.cta-card p {
  max-width: 650px;
  font-size: 15px;
  font-weight: 500;
  color: #5e5851;
}

.site-footer {
  text-align: center;
  padding: 24px;
  color: #67635d;
  font-size: 14px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(17,16,15,.58);
  z-index: 100;
  padding: 20px;
}

.modal.active {
  display: grid;
}

.modal-box {
  width: min(100%, 480px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--panel);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eee8df;
  font-size: 24px;
}

.modal-image-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 18px;
  background: #eee8df;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-box h2 {
  margin-right: 36px;
  font-size: 28px;
}

#modalPrice {
  margin: 8px 0 10px;
  font-weight: 800;
}

#modalDesc {
  margin: 8px 0 18px;
  color: #5f5d59;
  font-weight: 400;
  line-height: 1.65;
}

.modal-box ul {
  margin: 0 0 22px 20px;
  color: #4f4d49;
}

/* TABLET */
@media (max-width: 1120px) {
  .full-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 36px);
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.65);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: #222;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  .header-wa {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero-section {
    min-height: 720px;
    padding: 130px 36px 0;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    max-width: 640px;
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 8vw, 64px);
    letter-spacing: -2.5px;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-image img {
    object-position: center bottom;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(232,227,220,.94) 0%,
        rgba(232,227,220,.80) 38%,
        rgba(255,255,255,.04) 78%
      );
  }

  .feature-panel,
  .product-grid,
  .category-grid,
  .collection-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-panel,
  .section,
  .cta-card {
    width: min(100% - 36px, var(--container));
  }

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

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

  .about-image img {
    height: 360px;
  }

  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }

  .line {
    display: none;
  }
}

/* MOBILE FINAL */
@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
    background: #f3eee8;
  }

  body {
    color: #171717;
  }

  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    min-height: 78px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
  }

  .logo span {
    font-size: 25px;
    line-height: 1;
    letter-spacing: 8px;
    font-weight: 800;
  }

  .logo small {
    margin-top: 7px;
    font-size: 8px;
    letter-spacing: 7px;
  }

  .header-wa {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 28px rgba(30, 24, 20, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: #171717;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 23, 23, 0.08);
    box-shadow: 0 24px 60px rgba(30, 24, 20, 0.14);
    backdrop-filter: blur(18px);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
  }

  .hero-section {
    width: 100%;
    min-height: 640px;
    margin: 0;
    padding: 88px 18px 24px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
    background: #e8e2d8;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    box-shadow: none;
    background: transparent;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: 58% center;
    opacity: 0;
    transform: scale(1.02);
    filter: saturate(0.92) contrast(0.98);
    transition: opacity 0.65s ease, transform 5s ease;
  }

  .hero-image img.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(235, 229, 220, 0.92) 0%,
        rgba(235, 229, 220, 0.76) 35%,
        rgba(235, 229, 220, 0.30) 68%,
        rgba(30, 24, 20, 0.12) 100%
      ),
      linear-gradient(
        90deg,
        rgba(70, 62, 54, 0.26) 0%,
        rgba(255, 255, 255, 0.04) 70%
      );
  }

  .hero-section::after {
    content: "";
    position: absolute;
    right: -230px;
    top: 150px;
    width: 520px;
    height: 620px;
    z-index: 3;
    opacity: 0.42;
    background:
      linear-gradient(
        112deg,
        transparent 0 25%,
        rgba(255,255,255,.70) 26% 39%,
        transparent 40% 52%,
        rgba(255,255,255,.46) 53% 66%,
        transparent 67%
      );
    transform: rotate(8deg);
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 340px;
    margin: 0;
    padding: 0;
    display: block;
  }

  .hero-eyebrow {
    width: fit-content;
    margin: 0 0 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: rgba(35, 31, 28, 0.78);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(43, 34, 29, 0.12);
    box-shadow: 0 10px 24px rgba(30, 24, 20, 0.06);
    font-size: 9.5px;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  .hero-copy h1 {
    max-width: 330px;
    margin: 0;
    color: #111214;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1.4px;
    font-weight: 900;
    text-shadow: 0 12px 28px rgba(255, 255, 255, 0.22);
  }

  .hero-copy h1 span {
    display: block;
    white-space: normal;
  }

  .hero-copy p {
    max-width: 315px;
    margin: 15px 0 17px;
    color: rgba(35, 31, 28, 0.78);
    font-size: 13.5px;
    line-height: 1.58;
    font-weight: 600;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
    max-width: 320px;
    margin: 0;
  }

  .hero-actions .btn {
    width: 100%;
    height: 47px;
    min-width: 0;
    border-radius: 15px;
    font-size: 13.5px;
  }

  .hero-link {
    width: 100%;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(43, 34, 29, 0.08);
    color: #201a16;
    font-size: 13.5px;
    font-weight: 800;
  }

  .hero-slider-ui {
    width: 100%;
    max-width: 320px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 6;
  }

  .hero-dots {
    display: inline-flex;
    gap: 7px;
  }

  .hero-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(47, 39, 34, 0.22);
  }

  .hero-dots button.active {
    width: 28px;
    background: #2f2924;
  }

  .hero-arrows {
    display: inline-flex;
    gap: 7px;
  }

  .hero-arrows button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    color: #211b17;
    border: 1px solid rgba(43, 34, 29, 0.10);
    box-shadow: 0 10px 24px rgba(30, 24, 20, 0.07);
    backdrop-filter: blur(12px);
    font-size: 22px;
  }

  .feature-panel {
    width: calc(100% - 24px);
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 50px rgba(30, 24, 20, 0.10);
    backdrop-filter: blur(18px);
  }

  .feature-panel article {
    min-height: 100px;
    padding: 12px 6px;
    text-align: center;
    border-right: 1px solid rgba(37, 33, 28, 0.10);
    border-bottom: 0;
  }

  .feature-panel article:last-child {
    border-right: 0;
  }

  .icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    margin: 0 auto 4px;
    font-size: 21px;
    color: #5a4135;
  }

  .feature-panel h3 {
    font-size: 10.5px;
    line-height: 1.2;
    margin-bottom: 3px;
  }

  .feature-panel p {
    max-width: 78px;
    margin: 0 auto;
    font-size: 9.5px;
    line-height: 1.25;
    color: #5b534c;
  }

  .section {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding-top: 38px;
  }

  .section-head {
    margin-bottom: 14px;
  }

  .section-head.inline,
  .section-head.center {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    max-width: 100%;
  }

  .section-head h2 {
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.7px;
  }

  .section-head p {
    max-width: 330px;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6a625a;
  }

  .section-head.inline a {
    font-size: 13px;
    font-weight: 800;
  }

  .product-grid,
  .full-product-grid,
  .category-grid,
  .collection-grid,
  .fabric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .product-card,
  .full-product-card,
  .category-card,
  .collection-card {
    display: block;
    border-radius: 13px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(43, 34, 29, 0.09);
    box-shadow: 0 12px 28px rgba(30, 24, 20, 0.05);
    transform: none;
  }

  .product-card:hover,
  .full-product-card:hover,
  .category-card:hover,
  .collection-card:hover {
    transform: none;
  }

  .product-card img,
  .full-product-card img,
  .category-card img,
  .collection-card img {
    width: 100%;
    height: 74px;
    min-height: 0;
    object-fit: cover;
  }

  .product-card div,
  .full-product-card div,
  .category-card div,
  .collection-card div {
    padding: 8px 7px 9px;
  }

  .product-card h3,
  .full-product-card h3,
  .category-card h3,
  .collection-card h3 {
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .product-card strong,
  .full-product-card strong {
    display: block;
    font-size: 9px;
    line-height: 1.2;
    margin: 0 0 6px;
  }

  .product-card button,
  .full-product-card button {
    border: 0;
    background: transparent;
    padding: 0;
    color: #2d2925;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 800;
  }

  .full-product-card span,
  .full-product-card p,
  .category-card p,
  .collection-card p {
    display: none;
  }

  .fabric-grid article {
    border-radius: 13px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(43, 34, 29, 0.09);
  }

  .fabric-grid img {
    width: 100%;
    height: 66px;
    object-fit: cover;
    border-radius: 10px;
  }

  .fabric-grid span {
    display: block;
    margin-top: 5px;
    font-size: 9.5px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(43, 34, 29, 0.08);
    box-shadow: 0 12px 28px rgba(30, 24, 20, 0.05);
  }

  .about-image {
    border-radius: 16px;
    overflow: hidden;
  }

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

  .mini-label {
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: #7a6252;
  }

  .about-copy h2 {
    font-size: 22px;
    line-height: 1.14;
    letter-spacing: -0.7px;
  }

  .about-copy > p {
    font-size: 13px;
    line-height: 1.55;
    color: #625a52;
  }

  .about-features {
    display: grid;
    gap: 9px;
  }

  .about-features article {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
  }

  .about-features span {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f1ede7;
  }

  .about-features h3 {
    font-size: 13px;
  }

  .about-features p {
    font-size: 12px;
    line-height: 1.4;
  }

  .process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-items: stretch;
  }

  .process-row article {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-height: 150px;
    padding: 14px 6px 10px;
    text-align: center;
    border-radius: 14px;
    overflow: visible;

    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(43, 34, 29, 0.09);
    box-shadow: 0 12px 28px rgba(30, 24, 20, 0.05);
  }

  .process-row .step-icon {
    position: relative;
    width: 46px;
    height: 46px;
    min-width: 46px;
    margin: 0 auto 9px;
    display: grid;
    place-items: center;
    font-size: 20px;
    border-radius: 50%;
    background: #f1ede7;
  }

  .process-row .number {
    position: absolute;
    top: 8px;
    right: 12px;
    left: auto;
    transform: none;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #171717;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    z-index: 4;
  }

  .process-row h3 {
    width: 100%;
    min-height: 26px;
    margin: 0 0 5px;
    font-size: 10.5px;
    line-height: 1.2;
    text-align: center;
  }

  .process-row p {
    width: 100%;
    max-width: 72px;
    margin: 0 auto;
    font-size: 9px;
    line-height: 1.25;
    text-align: center;
    color: #5f574f;
    word-break: normal;
  }

  .process-row .line {
    display: none;
  }

  .promo-card {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2f2924, #5b4a3f);
    box-shadow: 0 18px 42px rgba(47, 39, 34, 0.16);
  }

  .promo-card span {
    font-size: 9.5px;
  }

  .promo-card h2 {
    font-size: 23px;
    line-height: 1.12;
    letter-spacing: -0.7px;
  }

  .promo-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .promo-card .btn {
    width: 100%;
    height: 46px;
    border-radius: 14px;
    font-size: 13px;
  }

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

  .testimonial-card {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(43, 34, 29, 0.09);
  }

  .testimonial-card p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .testimonial-card strong {
    font-size: 10.5px;
  }

  .cta-card {
    width: calc(100% - 24px);
    margin: 34px auto 42px;
    padding: 18px;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(43, 34, 29, 0.08);
    box-shadow: 0 12px 28px rgba(30, 24, 20, 0.05);
  }

  .cta-card h2 {
    font-size: 19px;
    line-height: 1.25;
  }

  .cta-card p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
  }

  .cta-card .btn {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    font-size: 13.5px;
  }

  .site-footer {
    padding: 22px 18px;
    font-size: 12.5px;
  }

  .modal {
    padding: 14px;
  }

  .modal-box {
    width: 100%;
    max-height: 92vh;
    padding: 20px;
    border-radius: 22px;
  }

  .modal-image-wrap {
    height: 210px;
    border-radius: 16px;
  }

  .modal-box h2 {
    font-size: 23px;
    line-height: 1.2;
  }

  #modalDesc {
    font-size: 13.5px;
  }
}
/* =========================================================
   FIX FINAL - HOME MOBILE SAJA
   Merapikan hero mobile tanpa mengubah section lain
   ========================================================= */

@media (max-width: 640px) {
  /* HERO WRAPPER */
  .hero-section {
    min-height: 610px !important;
    padding: 86px 18px 22px !important;
    align-items: flex-start !important;
    background: #e8e1d7 !important;
  }

  /* GAMBAR BACKGROUND */
  .hero-image img {
    object-fit: cover !important;
    object-position: 63% center !important;
    filter: saturate(0.9) contrast(0.96) brightness(0.98) !important;
  }

  /* OVERLAY BIAR TEXT TERBACA TAPI TETAP MENYATU */
  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(235, 229, 220, 0.96) 0%,
        rgba(235, 229, 220, 0.82) 36%,
        rgba(235, 229, 220, 0.34) 66%,
        rgba(38, 30, 24, 0.16) 100%
      ),
      linear-gradient(
        90deg,
        rgba(80, 68, 57, 0.20) 0%,
        rgba(255, 255, 255, 0.02) 72%
      ) !important;
  }

  /* AREA TEXT */
  .hero-copy {
    max-width: 325px !important;
    padding-top: 0 !important;
  }

  .hero-eyebrow {
    margin-bottom: 12px !important;
    padding: 6px 12px !important;
    font-size: 9px !important;
    letter-spacing: 0.13em !important;
    background: rgba(255, 255, 255, 0.62) !important;
  }

  .hero-copy h1 {
    max-width: 315px !important;
    font-size: 31px !important;
    line-height: 1.08 !important;
    letter-spacing: -1.2px !important;
  }

  .hero-copy p {
    max-width: 300px !important;
    margin: 13px 0 15px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    font-weight: 600 !important;
  }

  /* TOMBOL */
  .hero-actions {
    max-width: 300px !important;
    gap: 8px !important;
  }

  .hero-actions .btn {
    height: 44px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
  }

  .hero-link {
    height: 42px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    background: rgba(255, 255, 255, 0.62) !important;
  }

  /* DOTS DAN ARROW */
  .hero-slider-ui {
    max-width: 300px !important;
    margin-top: 13px !important;
  }

  .hero-dots button {
    width: 7px !important;
    height: 7px !important;
  }

  .hero-dots button.active {
    width: 25px !important;
  }

  .hero-arrows button {
    width: 32px !important;
    height: 32px !important;
    font-size: 20px !important;
  }

  /* SUPAYA FEATURE PANEL TIDAK TERLALU MENABRAK HERO */
  .feature-panel {
    margin-top: -24px !important;
  }
}
/* =========================================================
   NARA LIVING - HERO MODEL FINAL FIX
   Tempel PALING BAWAH style.css
   Hanya mengubah tampilan hero agar seperti model desain
   ========================================================= */

@media (min-width: 981px) {
  /* HERO AREA */
  .hero-section {
    width: 100% !important;
    min-height: 760px !important;
    padding: 130px 70px 92px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: #efe3d6 !important;
  }

  /* GAMBAR HERO */
  .hero-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;

    /* ini yang bikin sofa lebih seperti model */
    object-position: 72% center !important;

    opacity: 1 !important;
    transform: scale(1) !important;
    filter: saturate(0.92) contrast(0.96) brightness(1.05) !important;
  }

  /* OVERLAY DIBUAT TERANG, BUKAN GELAP */
  .hero-overlay {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(
        90deg,
        rgba(250, 241, 229, 0.98) 0%,
        rgba(248, 238, 224, 0.94) 25%,
        rgba(238, 220, 199, 0.58) 45%,
        rgba(205, 180, 150, 0.14) 67%,
        rgba(60, 45, 34, 0.16) 100%
      ) !important;
  }

  /* CAHAYA JENDELA HALUS */
  .hero-section::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
    pointer-events: none !important;
    background:
      linear-gradient(
        115deg,
        transparent 0 25%,
        rgba(255,255,255,0.48) 26% 36%,
        transparent 37% 51%,
        rgba(255,255,255,0.30) 52% 63%,
        transparent 64% 100%
      ) !important;
    opacity: 0.78 !important;
  }

  /* AREA TEKS */
  .hero-copy {
    position: relative !important;
    z-index: 5 !important;
    width: 560px !important;
    max-width: 560px !important;
    margin-left: 0 !important;
    padding-top: 18px !important;
  }

  /* BADGE */
  .hero-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 28px !important;
    padding: 12px 20px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid rgba(47, 39, 34, 0.10) !important;
    color: #2b2420 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 0.16em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    box-shadow: 0 16px 34px rgba(47, 39, 34, 0.08) !important;
    backdrop-filter: blur(16px) !important;
  }

  .hero-eyebrow::before {
    content: "" !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
    background: #a88d6e !important;
    display: inline-block !important;
  }

  /* JUDUL */
  .hero-copy h1 {
    max-width: 610px !important;
    margin: 0 !important;
    color: #161412 !important;
    font-size: clamp(58px, 5.2vw, 82px) !important;
    line-height: 1.06 !important;
    letter-spacing: -4.3px !important;
    font-weight: 900 !important;
    text-shadow: none !important;
  }

  .hero-copy h1 span {
    display: block !important;
    white-space: normal !important;
  }

  /* DESKRIPSI */
  .hero-copy p {
    max-width: 525px !important;
    margin: 30px 0 36px !important;
    color: rgba(25, 22, 20, 0.78) !important;
    font-size: 20px !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
  }

  /* TOMBOL */
  .hero-actions {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
  }

  .hero-actions .btn {
    width: auto !important;
    min-width: 230px !important;
    height: 62px !important;
    padding: 0 30px !important;
    border-radius: 18px !important;
    background: #2c241f !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    box-shadow: 0 22px 44px rgba(47, 39, 34, 0.24) !important;
  }

  .hero-link {
    width: auto !important;
    min-width: 210px !important;
    height: 62px !important;
    padding: 0 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 18px !important;
    border: 1.4px solid rgba(33, 28, 24, 0.42) !important;
    color: #1b1714 !important;
    background: rgba(255, 255, 255, 0.28) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    backdrop-filter: blur(12px) !important;
  }

  .hero-link:hover {
    background: rgba(255, 255, 255, 0.45) !important;
  }

  /* DOTS DAN ARROWS */
  .hero-slider-ui {
    margin-top: 46px !important;
    width: 500px !important;
    max-width: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .hero-dots {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .hero-dots button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 999px !important;
    background: rgba(47, 39, 34, 0.24) !important;
  }

  .hero-dots button.active {
    width: 48px !important;
    background: #2c241f !important;
  }

  .hero-arrows {
    display: inline-flex !important;
    gap: 12px !important;
  }

  .hero-arrows button {
    width: 52px !important;
    height: 52px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: #1d1815 !important;
    font-size: 30px !important;
    box-shadow: 0 16px 34px rgba(47, 39, 34, 0.12) !important;
    backdrop-filter: blur(14px) !important;
  }

  .hero-arrows button:hover {
    background: #2c241f !important;
    color: #fff !important;
  }

  /* PANEL FITUR BAWAH SEPERTI MODEL */
  .feature-panel {
    width: min(100% - 140px, 1220px) !important;
    margin: -54px auto 0 !important;
    position: relative !important;
    z-index: 10 !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.90) !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 30px 70px rgba(47, 39, 34, 0.13) !important;
    backdrop-filter: blur(20px) !important;
  }

  .feature-panel article {
    min-height: 126px !important;
    padding: 28px 30px !important;
    display: grid !important;
    grid-template-columns: 58px 1fr !important;
    align-items: center !important;
    gap: 18px !important;
    text-align: left !important;
    border-right: 1px solid rgba(47, 39, 34, 0.10) !important;
  }

  .feature-panel article:last-child {
    border-right: 0 !important;
  }

  .feature-panel .icon {
    width: 58px !important;
    height: 58px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: #f4eee7 !important;
    color: #2c241f !important;
    font-size: 26px !important;
    margin: 0 !important;
  }

  .feature-panel h3 {
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin: 0 0 5px !important;
    color: #161412 !important;
  }

  .feature-panel p {
    max-width: 210px !important;
    margin: 0 !important;
    color: #5b524b !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
}
/* =========================================================
   FINAL FIX - FEATURE PANEL / BLOK 4 KOLOM
   Tempel paling bawah style.css
   ========================================================= */

.feature-panel {
  width: min(100% - 120px, 1340px) !important;
  margin: -70px auto 0 !important;
  position: relative !important;
  z-index: 20 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(70, 55, 40, 0.08) !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 70px rgba(40, 30, 20, 0.10) !important;
  backdrop-filter: blur(14px) !important;
}

.feature-panel article {
  min-height: 180px !important;
  padding: 34px 28px 30px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
  border-right: 1px solid rgba(70, 55, 40, 0.10) !important;
  gap: 18px !important;
}

.feature-panel article:last-child {
  border-right: none !important;
}

.feature-panel .icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  background: #f7f1ea !important;
  color: #2f251e !important;
  font-size: 28px !important;
  margin: 0 !important;
}

.feature-panel h3 {
  margin: 0 !important;
  color: #181412 !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.feature-panel p {
  margin: 0 !important;
  max-width: 220px !important;
  color: #5a514a !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  word-break: normal !important;
}

.feature-panel article > div:last-child {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

/* TABLET */
@media (max-width: 1100px) {
  .feature-panel {
    width: min(100% - 48px, 1000px) !important;
    margin: -40px auto 0 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 24px !important;
  }

  .feature-panel article {
    min-height: 160px !important;
    padding: 28px 24px !important;
    border-right: 1px solid rgba(70, 55, 40, 0.10) !important;
    border-bottom: 1px solid rgba(70, 55, 40, 0.10) !important;
  }

  .feature-panel article:nth-child(2n) {
    border-right: none !important;
  }

  .feature-panel article:nth-last-child(-n+2) {
    border-bottom: none !important;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .feature-panel {
    width: calc(100% - 24px) !important;
    margin: -18px auto 0 !important;
    grid-template-columns: 1fr !important;
    border-radius: 22px !important;
  }

  .feature-panel article {
    min-height: auto !important;
    padding: 20px 18px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(70, 55, 40, 0.10) !important;
    display: grid !important;
    grid-template-columns: 52px 1fr !important;
    align-items: start !important;
    gap: 14px !important;
  }

  .feature-panel article:last-child {
    border-bottom: none !important;
  }

  .feature-panel .icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 22px !important;
  }

  .feature-panel h3 {
    font-size: 17px !important;
  }

  .feature-panel p {
    max-width: none !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}
/* =========================================================
   HERO + FEATURE PANEL SATU LAYAR SEPERTI MODEL
   Tempel paling bawah style.css
   ========================================================= */

@media (min-width: 981px) {
  .hero-section {
    min-height: 720px !important;
    padding: 118px 70px 110px !important;
    align-items: center !important;
  }

  .hero-copy {
    width: 560px !important;
    max-width: 560px !important;
    padding-top: 0 !important;
    transform: translateY(-18px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 4.9vw, 76px) !important;
    line-height: 1.07 !important;
    letter-spacing: -4px !important;
  }

  .hero-copy p {
    max-width: 520px !important;
    margin: 26px 0 30px !important;
    font-size: 19px !important;
    line-height: 1.68 !important;
  }

  .hero-actions .btn,
  .hero-link {
    height: 58px !important;
  }

  .hero-slider-ui {
    width: 500px !important;
    max-width: 500px !important;
    margin-top: 38px !important;
  }

  /* PANEL FITUR MUNCUL DI BAWAH HERO DALAM SATU VIEW */
  .feature-panel {
    width: min(100% - 140px, 1220px) !important;
    margin: -72px auto 0 !important;
    position: relative !important;
    z-index: 30 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 30px 70px rgba(47, 39, 34, 0.13) !important;
    backdrop-filter: blur(20px) !important;
  }

  .feature-panel article {
    min-height: 126px !important;
    padding: 28px 30px !important;
    display: grid !important;
    grid-template-columns: 58px 1fr !important;
    align-items: center !important;
    gap: 18px !important;
    text-align: left !important;
    border-right: 1px solid rgba(47, 39, 34, 0.10) !important;
  }

  .feature-panel article:last-child {
    border-right: 0 !important;
  }

  .feature-panel .icon {
    width: 58px !important;
    height: 58px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: #f4eee7 !important;
    color: #2c241f !important;
    font-size: 26px !important;
    margin: 0 !important;
  }

  .feature-panel .feature-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .feature-panel h3 {
    margin: 0 !important;
    color: #161412 !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
  }

  .feature-panel p {
    max-width: 210px !important;
    margin: 0 !important;
    color: #5b524b !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
  }

  /* Supaya section katalog tidak terlalu dekat dengan panel */
  .catalog-section {
    padding-top: 76px !important;
  }
}
/* =========================================================
   FINAL FORCE - HERO + FEATURE PANEL DALAM 1 LAYAR
   Tempel paling bawah style.css
   ========================================================= */

@media (min-width: 981px) {
  /* HERO DIPENDEKKAN SUPAYA PANEL MASUK SATU LAYAR */
  .hero-section {
    height: 640px !important;
    min-height: 640px !important;
    max-height: 640px !important;
    padding: 120px 70px 120px !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  /* POSISI GAMBAR HERO */
  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 72% center !important;
    transform: scale(1) !important;
  }

  /* TEKS DINAIKKAN SEDIKIT */
  .hero-copy {
    width: 540px !important;
    max-width: 540px !important;
    padding-top: 0 !important;
    transform: translateY(-18px) !important;
  }

  .hero-eyebrow {
    margin-bottom: 22px !important;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 4.6vw, 70px) !important;
    line-height: 1.06 !important;
    letter-spacing: -3.8px !important;
  }

  .hero-copy p {
    max-width: 500px !important;
    margin: 24px 0 28px !important;
    font-size: 18px !important;
    line-height: 1.62 !important;
  }

  .hero-actions .btn,
  .hero-link {
    height: 56px !important;
  }

  .hero-slider-ui {
    width: 500px !important;
    max-width: 500px !important;
    margin-top: 30px !important;
  }

  .hero-arrows button {
    width: 48px !important;
    height: 48px !important;
  }

  /* PANEL FITUR DIPAKSA NAIK KE DALAM AREA HERO */
  .feature-panel {
    width: min(100% - 140px, 1220px) !important;
    margin: -92px auto 0 !important;
    position: relative !important;
    z-index: 40 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 28px 60px rgba(47, 39, 34, 0.13) !important;
    backdrop-filter: blur(18px) !important;
  }

  .feature-panel article {
    min-height: 120px !important;
    padding: 24px 28px !important;
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    align-items: center !important;
    gap: 18px !important;
    text-align: left !important;
    border-right: 1px solid rgba(47, 39, 34, 0.10) !important;
  }

  .feature-panel article:last-child {
    border-right: none !important;
  }

  .feature-panel .icon {
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    background: #f4eee7 !important;
    color: #2c241f !important;
    font-size: 24px !important;
  }

  .feature-panel h3 {
    margin: 0 0 5px !important;
    color: #161412 !important;
    font-size: 17px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
  }

  .feature-panel p {
    max-width: 200px !important;
    margin: 0 !important;
    color: #5b524b !important;
    font-size: 14px !important;
    line-height: 1.42 !important;
    font-weight: 500 !important;
  }

  /* KATALOG TURUN SEDIKIT SUPAYA TIDAK TERLALU NEMPEL */
  .catalog-section {
    padding-top: 78px !important;
  }
}

/* UNTUK LAYAR LAPTOP PENDEK */
@media (min-width: 981px) and (max-height: 760px) {
  .hero-section {
    height: 600px !important;
    min-height: 600px !important;
    max-height: 600px !important;
    padding-top: 108px !important;
    padding-bottom: 110px !important;
  }

  .hero-copy {
    transform: translateY(-14px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 4.2vw, 64px) !important;
  }

  .hero-copy p {
    margin: 20px 0 24px !important;
    font-size: 17px !important;
  }

  .hero-slider-ui {
    margin-top: 24px !important;
  }

  .feature-panel {
    margin-top: -88px !important;
  }

  .feature-panel article {
    min-height: 112px !important;
    padding: 22px 26px !important;
  }
}
/* =========================================================
   FINAL FIX BENAR - HERO + FITUR 4 KOLOM SATU LAYAR
   Tempel PALING BAWAH style.css
   ========================================================= */

@media (min-width: 981px) {
  /* HERO DIPAKSA PROPORSIONAL SATU LAYAR */
  .hero-section {
    height: 610px !important;
    min-height: 610px !important;
    max-height: 610px !important;
    padding: 118px 70px 110px !important;
    align-items: center !important;
    overflow: hidden !important;
    background: #efe3d6 !important;
  }

  .hero-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 72% center !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: saturate(0.92) contrast(0.96) brightness(1.05) !important;
  }

  /* OVERLAY TERANG SEPERTI MODEL */
  .hero-overlay {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(
        90deg,
        rgba(250, 241, 229, 0.98) 0%,
        rgba(248, 238, 224, 0.92) 27%,
        rgba(238, 220, 199, 0.54) 48%,
        rgba(205, 180, 150, 0.14) 68%,
        rgba(60, 45, 34, 0.12) 100%
      ) !important;
  }

  .hero-section::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
    pointer-events: none !important;
    background:
      linear-gradient(
        115deg,
        transparent 0 25%,
        rgba(255,255,255,0.42) 26% 36%,
        transparent 37% 51%,
        rgba(255,255,255,0.24) 52% 63%,
        transparent 64% 100%
      ) !important;
    opacity: 0.72 !important;
  }

  /* TEKS HERO */
  .hero-copy {
    position: relative !important;
    z-index: 5 !important;
    width: 520px !important;
    max-width: 520px !important;
    margin-left: 0 !important;
    padding-top: 26px !important;
    transform: none !important;
  }

  .hero-eyebrow {
    margin-bottom: 18px !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(47, 39, 34, 0.10) !important;
    color: #2b2420 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.16em !important;
    line-height: 1 !important;
    box-shadow: 0 14px 30px rgba(47, 39, 34, 0.08) !important;
    backdrop-filter: blur(16px) !important;
  }

  .hero-eyebrow::before {
    content: "" !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #a88d6e !important;
    display: inline-block !important;
    margin-right: 9px !important;
  }

  .hero-copy h1 {
    max-width: 540px !important;
    margin: 0 !important;
    color: #141211 !important;
    font-size: clamp(48px, 4.25vw, 64px) !important;
    line-height: 1.06 !important;
    letter-spacing: -3.5px !important;
    font-weight: 900 !important;
    text-shadow: none !important;
  }

  .hero-copy h1 span {
    display: block !important;
    white-space: normal !important;
  }

  .hero-copy p {
    max-width: 500px !important;
    margin: 20px 0 24px !important;
    color: rgba(25, 22, 20, 0.78) !important;
    font-size: 17px !important;
    line-height: 1.62 !important;
    font-weight: 500 !important;
  }

  .hero-actions {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
  }

  .hero-actions .btn {
    min-width: 220px !important;
    height: 54px !important;
    padding: 0 26px !important;
    border-radius: 17px !important;
    background: #2c241f !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    box-shadow: 0 18px 38px rgba(47, 39, 34, 0.22) !important;
  }

  .hero-link {
    min-width: 200px !important;
    height: 54px !important;
    padding: 0 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 17px !important;
    border: 1.4px solid rgba(33, 28, 24, 0.42) !important;
    color: #1b1714 !important;
    background: rgba(255, 255, 255, 0.30) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    backdrop-filter: blur(12px) !important;
  }

  /* SLIDER DIPOSISIKAN DI ATAS PANEL */
  .hero-slider-ui {
    width: 480px !important;
    max-width: 480px !important;
    margin-top: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .hero-dots {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .hero-dots button {
    width: 9px !important;
    height: 9px !important;
    border-radius: 999px !important;
    background: rgba(47, 39, 34, 0.24) !important;
  }

  .hero-dots button.active {
    width: 42px !important;
    background: #2c241f !important;
  }

  .hero-arrows {
    display: inline-flex !important;
    gap: 10px !important;
  }

  .hero-arrows button {
    width: 46px !important;
    height: 46px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.84) !important;
    color: #1d1815 !important;
    font-size: 28px !important;
    box-shadow: 0 14px 30px rgba(47, 39, 34, 0.12) !important;
    backdrop-filter: blur(14px) !important;
  }

  /* PANEL FITUR DIPAKSA MASUK SATU LAYAR */
  .feature-panel {
    width: min(100% - 140px, 1220px) !important;
    margin: -86px auto 0 !important;
    position: relative !important;
    z-index: 50 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 28px 60px rgba(47, 39, 34, 0.13) !important;
    backdrop-filter: blur(18px) !important;
  }

  .feature-panel article {
    min-height: 112px !important;
    padding: 22px 28px !important;
    display: grid !important;
    grid-template-columns: 54px 1fr !important;
    align-items: center !important;
    gap: 17px !important;
    text-align: left !important;
    border-right: 1px solid rgba(47, 39, 34, 0.10) !important;
  }

  .feature-panel article:last-child {
    border-right: none !important;
  }

  .feature-panel .icon {
    width: 54px !important;
    height: 54px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    background: #f4eee7 !important;
    color: #2c241f !important;
    font-size: 23px !important;
  }

  .feature-panel .feature-text,
  .feature-panel article > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .feature-panel h3 {
    margin: 0 !important;
    color: #161412 !important;
    font-size: 16px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
  }

  .feature-panel p {
    max-width: 210px !important;
    margin: 0 !important;
    color: #5b524b !important;
    font-size: 13.5px !important;
    line-height: 1.38 !important;
    font-weight: 500 !important;
  }

  .catalog-section {
    padding-top: 72px !important;
  }
}

/* LAPTOP / LAYAR PENDEK */
@media (min-width: 981px) and (max-height: 760px) {
  .hero-section {
    height: 570px !important;
    min-height: 570px !important;
    max-height: 570px !important;
    padding-top: 106px !important;
    padding-bottom: 104px !important;
  }

  .hero-copy {
    padding-top: 18px !important;
  }

  .hero-eyebrow {
    margin-bottom: 15px !important;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 4vw, 58px) !important;
    line-height: 1.05 !important;
  }

  .hero-copy p {
    margin: 17px 0 20px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero-actions .btn,
  .hero-link {
    height: 50px !important;
  }

  .hero-slider-ui {
    margin-top: 20px !important;
  }

  .feature-panel {
    margin-top: -78px !important;
  }

  .feature-panel article {
    min-height: 104px !important;
    padding: 20px 24px !important;
  }
}
/* =========================================================
   FINAL CLEAN FIX - PANEL FITUR 4 KOLOM DESKTOP
   Merapikan 4 kolom tanpa mengubah bagian lain
   ========================================================= */

@media (min-width: 981px) {
  .feature-panel {
    width: min(100% - 150px, 1220px) !important;
    margin: -78px auto 0 !important;
    position: relative !important;
    z-index: 60 !important;

    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    border-radius: 28px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 26px 58px rgba(47, 39, 34, 0.13) !important;
    backdrop-filter: blur(18px) !important;
  }

  .feature-panel article {
    min-height: 118px !important;
    padding: 22px 26px !important;

    display: grid !important;
    grid-template-columns: 54px 1fr !important;
    align-items: center !important;
    column-gap: 18px !important;

    text-align: left !important;
    border-right: 1px solid rgba(47, 39, 34, 0.10) !important;
  }

  .feature-panel article:last-child {
    border-right: none !important;
  }

  .feature-panel .icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;

    margin: 0 !important;
    display: grid !important;
    place-items: center !important;

    border-radius: 50% !important;
    background: #f4eee7 !important;
    color: #2c241f !important;

    font-size: 22px !important;
    line-height: 1 !important;
  }

  .feature-panel article > div:not(.icon),
  .feature-panel .feature-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    min-width: 0 !important;
  }

  .feature-panel h3 {
    margin: 0 !important;
    padding: 0 !important;

    color: #171412 !important;
    font-size: 16px !important;
    line-height: 1.18 !important;
    font-weight: 850 !important;
    letter-spacing: -0.03em !important;
  }

  .feature-panel p {
    margin: 0 !important;
    padding: 0 !important;

    max-width: 205px !important;
    color: #5c544d !important;
    font-size: 13.5px !important;
    line-height: 1.38 !important;
    font-weight: 500 !important;
  }

  /* Khusus kolom terakhir agar judul tidak turun aneh */
  .feature-panel article:nth-child(4) h3 {
    max-width: 160px !important;
  }

  .feature-panel article:nth-child(4) p {
    max-width: 175px !important;
  }
}

/* Untuk layar laptop yang tingginya pendek seperti screenshot Anda */
@media (min-width: 981px) and (max-height: 760px) {
  .feature-panel {
    margin-top: -72px !important;
  }

  .feature-panel article {
    min-height: 108px !important;
    padding: 18px 24px !important;
    grid-template-columns: 50px 1fr !important;
    column-gap: 16px !important;
  }

  .feature-panel .icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    font-size: 21px !important;
  }

  .feature-panel h3 {
    font-size: 15.5px !important;
    line-height: 1.16 !important;
  }

  .feature-panel p {
    font-size: 13px !important;
    line-height: 1.34 !important;
  }
}
/* =========================================================
   FINAL MOBILE FIX - NARA LIVING
   Merapikan tampilan HP setelah perubahan hero desktop
   Tempel PALING BAWAH style.css
   ========================================================= */

@media (max-width: 640px) {
  html,
  body {
    width: 100% !important;
    overflow-x: hidden !important;
    background: #f3eee8 !important;
  }

  /* HEADER MOBILE */
  .site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    min-height: 78px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 80 !important;
  }

  .logo span {
    font-size: 25px !important;
    letter-spacing: 8px !important;
    line-height: 1 !important;
  }

  .logo small {
    margin-top: 7px !important;
    font-size: 8px !important;
    letter-spacing: 7px !important;
  }

  .header-wa {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.76) !important;
    border: 1px solid rgba(23, 23, 23, 0.12) !important;
    box-shadow: 0 12px 28px rgba(30, 24, 20, 0.08) !important;
    backdrop-filter: blur(16px) !important;
  }

  .nav-menu {
    position: absolute !important;
    top: 76px !important;
    left: 16px !important;
    right: 16px !important;
    display: none !important;
    flex-direction: column !important;
    padding: 10px !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 24px 60px rgba(30, 24, 20, 0.14) !important;
    z-index: 90 !important;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu a {
    padding: 14px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
  }

  /* HERO MOBILE */
  .hero-section {
    width: 100% !important;
    height: auto !important;
    min-height: 620px !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 92px 18px 32px !important;
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background: #e8e1d7 !important;
  }

  .hero-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 66% center !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: saturate(0.9) contrast(0.96) brightness(1) !important;
  }

  .hero-overlay {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(
        180deg,
        rgba(238, 230, 219, 0.96) 0%,
        rgba(238, 230, 219, 0.86) 38%,
        rgba(238, 230, 219, 0.42) 68%,
        rgba(45, 34, 27, 0.14) 100%
      ),
      linear-gradient(
        90deg,
        rgba(245, 236, 224, 0.92) 0%,
        rgba(245, 236, 224, 0.70) 48%,
        rgba(245, 236, 224, 0.10) 100%
      ) !important;
  }

  .hero-section::after {
    display: none !important;
  }

  .hero-copy {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    max-width: 330px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero-eyebrow {
    width: fit-content !important;
    margin: 0 0 13px !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.70) !important;
    color: rgba(35, 31, 28, 0.80) !important;
    border: 1px solid rgba(43, 34, 29, 0.10) !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    letter-spacing: 0.13em !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(30, 24, 20, 0.06) !important;
  }

  .hero-eyebrow::before {
    width: 7px !important;
    height: 7px !important;
    margin-right: 8px !important;
  }

  .hero-copy h1 {
    max-width: 320px !important;
    margin: 0 !important;
    color: #121110 !important;
    font-size: 34px !important;
    line-height: 1.08 !important;
    letter-spacing: -1.5px !important;
    font-weight: 900 !important;
    text-shadow: none !important;
  }

  .hero-copy h1 span {
    display: block !important;
    white-space: normal !important;
  }

  .hero-copy p {
    max-width: 310px !important;
    margin: 15px 0 18px !important;
    color: rgba(35, 31, 28, 0.78) !important;
    font-size: 13.8px !important;
    line-height: 1.58 !important;
    font-weight: 600 !important;
  }

  .hero-actions {
    width: 100% !important;
    max-width: 310px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    margin: 0 !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    height: 46px !important;
    padding: 0 18px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
  }

  .hero-link {
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    background: rgba(255, 255, 255, 0.66) !important;
  }

  .hero-slider-ui {
    width: 100% !important;
    max-width: 310px !important;
    margin-top: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .hero-dots button {
    width: 7px !important;
    height: 7px !important;
  }

  .hero-dots button.active {
    width: 25px !important;
  }

  .hero-arrows button {
    width: 32px !important;
    height: 32px !important;
    font-size: 20px !important;
  }

  /* PANEL FITUR MOBILE */
  .feature-panel {
    width: calc(100% - 24px) !important;
    margin: -22px auto 0 !important;
    position: relative !important;
    z-index: 60 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.84) !important;
    box-shadow: 0 20px 45px rgba(47, 39, 34, 0.10) !important;
    backdrop-filter: blur(16px) !important;
  }

  .feature-panel article {
    min-height: 126px !important;
    padding: 16px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    border-right: 1px solid rgba(47, 39, 34, 0.10) !important;
    border-bottom: 1px solid rgba(47, 39, 34, 0.10) !important;
  }

  .feature-panel article:nth-child(2),
  .feature-panel article:nth-child(4) {
    border-right: none !important;
  }

  .feature-panel article:nth-child(3),
  .feature-panel article:nth-child(4) {
    border-bottom: none !important;
  }

  .feature-panel .icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: #f4eee7 !important;
    color: #2c241f !important;
    font-size: 19px !important;
  }

  .feature-panel .feature-text,
  .feature-panel article > div:not(.icon) {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: center !important;
  }

  .feature-panel h3 {
    margin: 0 !important;
    max-width: 135px !important;
    color: #161412 !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
    font-weight: 850 !important;
    letter-spacing: -0.02em !important;
  }

  .feature-panel p {
    margin: 0 !important;
    max-width: 132px !important;
    color: #5b524b !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
  }

  /* SECTION MOBILE TETAP COMPACT */
  .section {
    width: calc(100% - 24px) !important;
    padding-top: 42px !important;
  }

  .catalog-section {
    padding-top: 44px !important;
  }

  .section-head h2 {
    font-size: 24px !important;
    line-height: 1.12 !important;
  }

  .section-head p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  /* CARD GRID MOBILE */
  .product-grid,
  .full-product-grid,
  .category-grid,
  .collection-grid,
  .fabric-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .product-card img,
  .full-product-card img,
  .category-card img,
  .collection-card img {
    height: 130px !important;
    object-fit: cover !important;
  }

  .product-card div,
  .full-product-card div,
  .category-card div,
  .collection-card div {
    padding: 12px !important;
  }

  .product-card h3,
  .full-product-card h3,
  .category-card h3,
  .collection-card h3 {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .product-card strong,
  .full-product-card strong {
    font-size: 12px !important;
  }

  .product-card button,
  .full-product-card button {
    font-size: 11.5px !important;
  }

  .fabric-grid img {
    height: 115px !important;
  }

  /* PROCESS MOBILE */
  .process-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .process-row article {
    min-height: 135px !important;
    padding: 16px 10px !important;
    border-radius: 16px !important;
    text-align: center !important;
  }

  .process-row .step-icon {
    width: 44px !important;
    height: 44px !important;
    margin: 0 auto 8px !important;
    font-size: 20px !important;
  }

  .process-row .number {
    top: 8px !important;
    right: 12px !important;
    left: auto !important;
    transform: none !important;
  }

  .process-row h3 {
    font-size: 13px !important;
  }

  .process-row p {
    max-width: 130px !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }

  .line {
    display: none !important;
  }

  /* CTA DAN MODAL */
  .cta-card {
    width: calc(100% - 24px) !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .modal-box {
    width: 100% !important;
    max-height: 92vh !important;
    padding: 20px !important;
    border-radius: 22px !important;
  }
}
/* =========================================================
   MOBILE FIX - FEATURE PANEL 4 KOLOM SATU BARIS
   Tempel PALING BAWAH style.css
   ========================================================= */

@media (max-width: 640px) {
  .feature-panel {
    width: calc(100% - 24px) !important;
    margin: -22px auto 0 !important;
    position: relative !important;
    z-index: 70 !important;

    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;

    border-radius: 22px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 20px 45px rgba(47, 39, 34, 0.12) !important;
    backdrop-filter: blur(16px) !important;
  }

  .feature-panel article {
    min-height: 112px !important;
    padding: 14px 6px 12px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 7px !important;
    text-align: center !important;

    border-right: 1px solid rgba(47, 39, 34, 0.10) !important;
    border-bottom: none !important;
  }

  .feature-panel article:last-child {
    border-right: none !important;
  }

  .feature-panel article:nth-child(2),
  .feature-panel article:nth-child(4) {
    border-right: 1px solid rgba(47, 39, 34, 0.10) !important;
  }

  .feature-panel article:nth-child(4) {
    border-right: none !important;
  }

  .feature-panel .icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;

    margin: 0 !important;
    display: grid !important;
    place-items: center !important;

    border-radius: 50% !important;
    background: #f4eee7 !important;
    color: #2c241f !important;

    font-size: 17px !important;
    line-height: 1 !important;
  }

  .feature-panel .feature-text,
  .feature-panel article > div:not(.icon) {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
  }

  .feature-panel h3 {
    width: 100% !important;
    max-width: 76px !important;
    margin: 0 auto !important;

    color: #171412 !important;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
    font-weight: 850 !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
  }

  .feature-panel p {
    width: 100% !important;
    max-width: 78px !important;
    margin: 0 auto !important;

    color: #5b524b !important;
    font-size: 8.8px !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
    text-align: center !important;
  }
}
/* =========================================================
   MOBILE ONLY - NAIKKAN PANEL FITUR 4 KOLOM
   Tidak mengubah desktop / section lain
   ========================================================= */

@media (max-width: 640px) {
  .hero-section {
    min-height: 585px !important;
    padding-bottom: 18px !important;
  }

  .feature-panel {
    margin-top: -86px !important;
    position: relative !important;
    z-index: 90 !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .feature-panel article {
    min-height: 104px !important;
    padding: 12px 5px 10px !important;
  }

  .feature-panel .icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    font-size: 15px !important;
  }

  .feature-panel h3 {
    font-size: 10px !important;
    line-height: 1.12 !important;
    max-width: 72px !important;
  }

  .feature-panel p {
    font-size: 8.5px !important;
    line-height: 1.22 !important;
    max-width: 76px !important;
  }

  .catalog-section {
    padding-top: 34px !important;
  }
}