/* Shared website styles */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;700;800&family=Lora:wght@400;500;600&family=Playfair+Display:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* =========================
   Global Style
========================= */

:root {
  --color-bg: #fff7f8;
  --color-bg-soft: #fff0f3;
  --color-bg-strong: #ffe5ee;
  --color-primary: #e85d8f;
  --color-primary-dark: #c93d70;
  --color-secondary: #f8b4c8;
  --color-text: #2f2f3a;
  --color-muted: #74717a;
  --color-white: #ffffff;
  --color-border: #f3d6df;
  --color-card: #ffffff;
  --color-accent-deep: #7f274c;

  --shadow-soft: 0 18px 45px rgba(232, 93, 143, 0.14);
  --shadow-card: 0 12px 30px rgba(47, 47, 58, 0.08);
  --shadow-strong: 0 22px 48px rgba(201, 61, 112, 0.16);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --container-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(232, 93, 143, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(248, 180, 200, 0.18), transparent 28%),
    var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-header p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 1rem;
}

.section-header h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--color-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.eyebrow {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================
   Button
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(232, 93, 143, 0.28);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-bg-soft);
  transform: translateY(-2px);
}

/* =========================
   Navbar
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 251, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(243, 214, 223, 0.8);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
}

.navbar-content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--color-muted);
  font-weight: 600;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-menu a img {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: block;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.nav-menu a span {
  line-height: 1;
}

.nav-menu a:hover {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.78);
}

.nav-menu a:hover img,
.nav-menu a.active img {
  opacity: 1;
}

.nav-menu a.active {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
  min-height: 52px;
  padding-left: 28px;
  padding-right: 28px;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.nav-icon-btn {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary-dark);
  box-shadow: none;
  transition: 0.25s ease;
}

.nav-icon-btn:hover {
  color: var(--color-text);
  background: transparent;
  transform: none;
}

.nav-icon-btn svg {
  width: 16px;
  height: 16px;
}

.nav-icon-dot {
  position: absolute;
  top: -1px;
  right: -3px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 252, 251, 0.96);
}

/* =========================
   Home Page Refactor
========================= */

.home-page {
  --container-width: 1310px;
  background:
    radial-gradient(circle at top left, rgba(232, 93, 143, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(248, 180, 200, 0.12), transparent 22%),
    linear-gradient(180deg, #fffefe 0%, #fff9fa 52%, #fff5f6 100%);
}

.home-page .container {
  width: min(100% - 32px, var(--container-width));
}

.home-page .navbar {
  top: 0;
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 214, 223, 0.88);
  border-radius: 0;
  background: rgba(255, 252, 252, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.home-page .nav-toggle {
  border-color: rgba(243, 214, 223, 0.94);
  background: rgba(255, 255, 255, 0.96);
  color: #ef6f97;
}

.home-page .navbar-content {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 68px;
  padding: 0;
  gap: 20px;
}

.home-page .logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
  color: #eb6f94;
}

.home-page .nav-menu {
  margin-left: 0;
  justify-self: end;
  gap: 16px;
  color: rgba(47, 47, 58, 0.78);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.home-page .nav-menu a {
  padding: 10px 0;
  color: rgba(47, 47, 58, 0.78);
}

.home-page .nav-menu a:hover,
.home-page .nav-menu a.active {
  color: #ef6f97;
  background: rgba(255, 239, 244, 0.9);
}

.home-page .nav-utility {
  display: none;
}

.home-main {
  padding-bottom: 70px;
}

.home-section-kicker {
  color: #ef6f97;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section-heading h2,
.home-section-row h2,
.home-why-intro h2,
.home-steps-intro h2,
.home-testimonial-intro h2 {
  margin-top: 8px;
  color: #29171d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-section-heading span,
.home-steps-intro span,
.home-testimonial-intro span {
  color: #ef8faa;
  font-style: italic;
}

.home-section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.home-section-heading-compact h2 {
  margin-top: 6px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.home-inline-link {
  color: #ef6f97;
  font-size: 0.84rem;
  font-weight: 700;
}

.home-hero-section {
  position: relative;
  overflow: hidden;
  padding: 18px 0 14px;
}

.home-hero-section::before,
.home-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.home-hero-section::before {
  top: 56px;
  right: 22%;
  width: 210px;
  height: 210px;
  background: rgba(255, 211, 223, 0.32);
}

.home-hero-section::after {
  bottom: 16px;
  left: 12%;
  width: 150px;
  height: 150px;
  background: rgba(255, 235, 241, 0.82);
}

.home-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(30px, 4vw, 44px);
  align-items: center;
  padding: 36px 0 10px;
}

.home-hero-copy {
  max-width: 500px;
  padding-bottom: 8px;
}

.home-hero-copy h1 {
  margin-top: 12px;
  color: #21151a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.8rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.028em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.home-hero-script {
  display: block;
  margin-top: 14px;
  color: #ef6f97;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 3.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.home-hero-description {
  max-width: 458px;
  margin-top: 22px;
  color: rgba(47, 47, 58, 0.74);
  font-size: 1.02rem;
  line-height: 1.65;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.home-primary-btn,
.home-secondary-btn {
  min-height: 46px;
  padding: 0 22px;
  gap: 10px;
}

.home-primary-btn {
  background: linear-gradient(135deg, #ef6f97 0%, #d95983 100%);
}

.home-primary-btn:hover {
  background: linear-gradient(135deg, #e8628f 0%, #ce527b 100%);
}

.home-secondary-btn {
  border-color: rgba(239, 111, 151, 0.34);
  color: #e05e88;
  background: rgba(255, 255, 255, 0.9);
}

.home-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 6px;
}

.home-hero-visual::before,
.home-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.home-hero-visual::before {
  top: 6%;
  left: 4%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 225, 233, 0.78) 0%, rgba(255, 225, 233, 0) 70%);
}

.home-hero-visual::after {
  right: -2%;
  bottom: 12%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 236, 242, 0.74) 0%, rgba(255, 236, 242, 0) 72%);
}

.home-hero-image-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  max-width: 100%;
  width: min(100%, 720px);
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-left: auto;
}

.home-hero-image-card::before {
  content: none;
}

.home-hero-image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
}

.home-category-section,
.home-products-section,
.home-why-section,
.home-steps-section,
.home-testimonial-section {
  padding: 26px 0 0;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.home-category-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 14px;
  align-items: center;
  min-height: 168px;
  padding: 18px 18px 18px 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 239, 244, 0.72), transparent 34%),
    #ffffff;
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: 0 18px 34px rgba(232, 93, 143, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(232, 93, 143, 0.12);
}

.home-category-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-category-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ef6f97;
  background: rgba(255, 240, 245, 0.88);
  border: 1px solid rgba(243, 214, 223, 0.92);
}

.home-category-icon svg {
  width: 18px;
  height: 18px;
}

.home-category-copy h3 {
  color: #29171d;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.18;
}

.home-category-copy p {
  color: rgba(47, 47, 58, 0.68);
  font-size: 0.8rem;
  line-height: 1.48;
}

.home-category-link {
  color: #ef6f97;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-category-media {
  height: 134px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff7f8, #fff2f5);
}

.home-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: 0 18px 34px rgba(232, 93, 143, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(232, 93, 143, 0.12);
}

.home-product-media {
  position: relative;
  display: block;
  height: 214px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff5f7, #fff0f3);
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.home-product-card:hover .home-product-media img {
  transform: scale(1.02);
}

.home-product-fallback {
  font-size: 2.8rem;
}

.home-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef6f97 0%, #f49ab8 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(232, 93, 143, 0.22);
}

.home-product-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(243, 214, 223, 0.92);
  color: #d86a8c;
}

.home-product-favorite svg {
  width: 15px;
  height: 15px;
}

.home-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.home-product-title {
  color: #29171d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-product-description {
  margin-top: 8px;
  min-height: 48px;
  color: rgba(47, 47, 58, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-price {
  margin: 14px 0 16px;
  color: #29171d;
  font-size: 0.92rem;
  font-weight: 700;
}

.home-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(243, 214, 223, 0.92);
  background: rgba(255, 246, 248, 0.9);
  color: #ef6f97;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-why-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 239, 244, 0.82), transparent 24%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: 0 16px 32px rgba(232, 93, 143, 0.08);
}

.home-why-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.home-why-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-why-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 6px 0;
}

.home-why-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ef6f97;
  background: rgba(255, 240, 245, 0.88);
  border: 1px solid rgba(243, 214, 223, 0.92);
}

.home-why-icon svg {
  width: 22px;
  height: 22px;
}

.home-why-point strong {
  display: block;
  margin-bottom: 5px;
  color: #29171d;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-why-point p {
  color: rgba(47, 47, 58, 0.68);
  font-size: 0.78rem;
  line-height: 1.48;
}

.home-steps-layout,
.home-testimonial-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.home-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-step-card {
  position: relative;
  padding: 24px 20px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: 0 16px 30px rgba(232, 93, 143, 0.08);
}

.home-step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  color: #ef6f97;
  font-size: 1.35rem;
  font-weight: 700;
}

.home-step-index {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef6f97 0%, #f49ab8 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.home-step-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(255, 240, 245, 0.88);
  color: #ef6f97;
}

.home-step-icon svg {
  width: 22px;
  height: 22px;
}

.home-step-card h3 {
  margin-bottom: 6px;
  color: #29171d;
  font-size: 1rem;
  font-weight: 700;
}

.home-step-card p {
  color: rgba(47, 47, 58, 0.68);
  font-size: 0.8rem;
  line-height: 1.5;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-testimonial-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: 0 16px 32px rgba(232, 93, 143, 0.08);
}

.home-testimonial-card::before,
.home-testimonial-card::after {
  position: absolute;
  color: rgba(239, 111, 151, 0.42);
  font-size: 1.75rem;
  line-height: 1;
}

.home-testimonial-card::before {
  content: "“";
  top: 14px;
  left: 14px;
}

.home-testimonial-card::after {
  content: "”";
  right: 14px;
  bottom: 12px;
}

.home-testimonial-stars {
  margin-bottom: 12px;
  color: #f5b844;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
}

.home-testimonial-message {
  min-height: 92px;
  color: rgba(47, 47, 58, 0.74);
  font-size: 0.82rem;
  line-height: 1.58;
}

.home-testimonial-user {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(243, 214, 223, 0.92);
}

.home-testimonial-user h3 {
  color: #ef6f97;
  font-size: 0.84rem;
  font-weight: 700;
}

.home-testimonial-user p {
  color: rgba(47, 47, 58, 0.56);
  font-size: 0.74rem;
}

.home-cta-banner-section {
  padding: 18px 0 34px;
}

.home-cta-banner {
  display: grid;
  grid-template-columns: 236px 1fr auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 22px 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(135deg, #ef7f9d 0%, #e56f89 100%);
  box-shadow: 0 24px 46px rgba(232, 93, 143, 0.18);
}

.home-cta-visual {
  height: 136px;
  display: flex;
  align-items: center;
}

.home-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.home-cta-copy h2 {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.home-cta-copy p {
  max-width: 460px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-cta-button {
  min-height: 48px;
  padding: 0 24px;
  gap: 10px;
  background: #ffffff;
  color: #ef6f97;
  box-shadow: none;
}

.home-cta-button:hover {
  background: #fff2f5;
  transform: translateY(-2px);
}

.home-footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(243, 214, 223, 0.82);
  background: rgba(255, 255, 255, 0.74);
}

.contact-footer {
  margin-top: 28px;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr 1fr;
  gap: 28px;
  padding-bottom: 22px;
}

.home-footer-brand p {
  max-width: 360px;
  margin-top: 12px;
  color: rgba(47, 47, 58, 0.68);
  font-size: 0.88rem;
  line-height: 1.56;
}

.home-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.home-footer-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d86a8c;
  background: rgba(255, 245, 247, 0.92);
  border: 1px solid rgba(243, 214, 223, 0.92);
}

.home-footer-social svg {
  width: 16px;
  height: 16px;
}

.home-footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-footer-links h3 {
  color: #29171d;
  font-size: 0.96rem;
  font-weight: 700;
}

.home-footer-links a,
.home-footer-links p {
  color: rgba(47, 47, 58, 0.68);
  font-size: 0.84rem;
  line-height: 1.56;
}

.home-footer-links a:hover {
  color: #ef6f97;
}

.home-footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(243, 214, 223, 0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(47, 47, 58, 0.62);
  font-size: 0.82rem;
}

.home-footer-bottom span {
  color: #ef6f97;
}

/* Keep every public-page footer on the FAQ & Kontak layout. */
footer.footer.home-footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(243, 214, 223, 0.82);
  background: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1120px) {

  .home-hero-shell,
  .home-steps-layout,
  .home-testimonial-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    max-width: none;
  }

  .home-hero-description {
    max-width: 520px;
  }

  .home-hero-visual {
    order: -1;
  }

  .home-hero-image-card {
    max-width: 760px;
    margin: 0 auto;
  }

  .home-category-grid,
  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-why-panel {
    grid-template-columns: 1fr;
  }

  .home-why-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-cta-copy p {
    max-width: none;
  }

  .home-cta-button {
    justify-self: center;
  }

  .home-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-page .nav-menu {
    gap: 10px;
    font-size: 0.88rem;
  }

  .home-steps-grid,
  .home-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-step-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-page .container {
    width: min(100% - 32px, var(--container-width));
  }

  .home-page .navbar {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .home-page .navbar-content {
    display: flex;
    min-height: auto;
    align-items: center;
    flex-wrap: wrap;
    padding: 14px 0 12px;
    gap: 12px;
  }

  .home-page .logo {
    order: 1;
    font-size: 1.28rem;
  }

  .home-page .nav-toggle {
    order: 3;
    width: 28px;
    height: 28px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ef6f97;
    font-size: 1.15rem;
  }

  .home-page .nav-menu {
    order: 4;
  }

  .home-page .nav-utility {
    display: none;
  }

  .home-hero-section {
    padding-top: 18px;
  }

  .home-hero-shell {
    gap: 26px;
    padding-top: 18px;
    padding-bottom: 0;
  }

  .home-hero-image-card {
    min-height: 0;
    border-radius: 0;
  }

  .home-hero-image-card img {
    padding: 0;
  }

  .home-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.026em;
  }

  .home-hero-script {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-category-grid,
  .home-products-grid,
  .home-why-points,
  .home-testimonial-grid,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-category-card {
    grid-template-columns: 1fr;
  }

  .home-category-media {
    height: 172px;
  }

  .home-section-row,
  .home-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   Hero
========================= */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 92px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(232, 93, 143, 0.16);
  border-radius: 999px;
  filter: blur(4px);
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(248, 180, 200, 0.22);
  border-radius: 999px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 56px;
}

.hero-text h1 {
  margin-top: 12px;
  max-width: 680px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--color-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.hero-description {
  margin-top: 24px;
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--color-muted);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 640px;
}

.hero-highlight-card {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-highlight-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.hero-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(232, 93, 143, 0.28);
}

.hero-highlight-card span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.hero-card {
  min-height: 480px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 240, 243, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-image-placeholder {
  height: 100%;
  min-height: 440px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(232, 93, 143, 0.25), transparent 35%),
    linear-gradient(160deg, #ffffff, #ffe8ef);
  border: 1px dashed rgba(232, 93, 143, 0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  color: var(--color-primary);
}

.hero-image-placeholder span {
  font-size: 5rem;
}

.hero-image-placeholder p {
  color: var(--color-muted);
  font-weight: 600;
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-floating-pill {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: var(--shadow-card);
  color: var(--color-accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-floating-pill-top {
  justify-self: flex-end;
}

.hero-floating-pill-bottom {
  justify-self: flex-start;
}

.showcase-primary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 237, 244, 0.82));
  border: 1px solid rgba(243, 214, 223, 0.94);
}

.showcase-primary-media {
  min-height: 332px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff1f5;
}

.showcase-primary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-primary-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.showcase-label,
.page-hero-label {
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-primary-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.showcase-primary-copy p {
  color: var(--color-muted);
}

.showcase-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(243, 214, 223, 0.92);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.showcase-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.showcase-secondary-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: var(--shadow-card);
}

.showcase-secondary-card img {
  width: 100%;
  height: 188px;
  border-radius: 18px;
  object-fit: cover;
}

.showcase-secondary-card h3 {
  margin-top: 6px;
  font-size: 1.05rem;
}

.showcase-secondary-card span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.showcase-secondary-card-note {
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(232, 93, 143, 0.12), transparent 32%),
    linear-gradient(160deg, #fff9fb, #ffffff);
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.showcase-tags span {
  margin-top: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-bg-soft);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

/* =========================
   Categories
========================= */

.categories-section {
  background: var(--color-white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  display: block;
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(232, 93, 143, 0.08), transparent 34%),
    var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.category-card::after {
  content: "Lihat kategori";
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.82;
}

.category-card span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.category-card p {
  padding-bottom: 28px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* =========================
   Product Grid
========================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 249, 251, 0.96));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.product-image {
  height: 240px;
  background:
    radial-gradient(circle at top, rgba(232, 93, 143, 0.18), transparent 45%),
    #fff0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 3.2rem;
}

.product-image-carousel,
.product-detail-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-image-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.42s ease;
}

.product-image-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.product-image-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-image-nav,
.product-image-dot {
  border: 0;
  box-shadow: none;
  transform: none;
}

.product-image-nav {
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  background: rgba(47, 47, 58, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-white);
  font-size: 1.35rem;
  line-height: 1;
}

.product-image-nav:hover {
  background: rgba(47, 47, 58, 0.88);
  box-shadow: none;
  transform: none;
}

.product-image-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(243, 214, 223, 0.92);
  box-shadow: var(--shadow-card);
}

.product-image-dot {
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(127, 39, 76, 0.2);
}

.product-image-dot.is-active {
  background: var(--color-primary);
}

.product-image-dot:hover {
  box-shadow: none;
  transform: none;
}

.product-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-title {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.product-description {
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 0.94rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-price {
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.product-body .btn {
  margin-top: auto;
  width: fit-content;
}

.order-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(243, 214, 223, 0.92);
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 800;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fffafa;
  color: var(--color-text);
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(232, 93, 143, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* =========================
   Steps
========================= */

.order-steps-section {
  background: var(--color-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  padding: 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #ffffff, #fff5f7);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-card span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  color: var(--color-muted);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(232, 93, 143, 0.24);
}

/* =========================
   CTA
========================= */

.cta-section {
  padding: 88px 0;
}

.cta-card {
  padding: 56px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.32), transparent 32%),
    linear-gradient(135deg, var(--color-primary), #f49ab8);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.cta-card h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-card p {
  max-width: 620px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-card .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: none;
}

.cta-card .btn-primary:hover {
  background: #fff0f3;
}

/* =========================
   Footer Upgrade
========================= */

.footer {
  padding: 64px 0 28px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 32px;
  padding-bottom: 38px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-links a,
.footer-links p {
  color: var(--color-muted);
  font-size: 0.94rem;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 360px;
  }

  .category-grid,
  .product-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    gap: 18px;
  }

  .hero-highlights,
  .showcase-secondary-grid,
  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .showcase-primary {
    grid-template-columns: 1fr;
  }

  .showcase-primary-media {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .navbar-content {
    min-height: auto;
    padding: 16px 0;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 72;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    width: min(86vw, 340px);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 84px 18px 24px;
    border-radius: 28px 0 0 28px;
    background: rgba(255, 252, 253, 0.98);
    border-left: 1px solid rgba(243, 214, 223, 0.96);
    box-shadow: -18px 0 40px rgba(47, 47, 58, 0.12);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(calc(100% + 18px));
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-menu a {
    width: 100%;
    justify-content: flex-start;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 20px;
  }

  .nav-menu a.active {
    min-height: 56px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 65;
    border: 0;
    background: rgba(41, 23, 29, 0.18);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .navbar {
    z-index: 80;
  }

  body.mobile-nav-open .nav-drawer-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-section {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 16px;
  }

  .showcase-primary,
  .showcase-secondary-card,
  .page-hero-card {
    padding: 16px;
  }

  .showcase-primary-media {
    min-height: 220px;
  }

  .btn {
    width: 100%;
  }

  .category-grid,
  .product-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 36px 24px;
  }

}

/* Product Image Style */
/* =========================
   Product Images Fix
========================= */

.product-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fallback card produk */
.product-image-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(232, 93, 143, 0.18), transparent 45%),
    #fff0f3;
  color: var(--color-primary);
  font-size: 3.2rem;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fallback detail */
.product-detail-image .product-image-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

.product-detail-image .product-image-controls {
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.product-detail-image .product-image-nav {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  font-size: 1.55rem;
}

.detail-fallback {
  font-size: 7rem;
}

/* Related Products in product page */
/* =========================
   Related Products
========================= */

.related-section {
  margin-top: 72px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 251, 0.96));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.related-section+.related-section {
  margin-top: 28px;
}

.related-section .section-header {
  margin-bottom: 28px;
}

.related-section .section-header h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

@media (max-width: 640px) {
  .related-section {
    margin-top: 54px;
    padding: 26px 20px;
  }

  .related-section+.related-section {
    margin-top: 20px;
  }
}

/* =========================
   Testimonials Marquee
========================= */

.testimonial-section {
  background: var(--color-bg);
  overflow: hidden;
}

.testimonial-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonialMarquee 32s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 320px;
  flex: 0 0 320px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.testimonial-card-empty {
  width: min(100%, 520px);
  flex-basis: min(100%, 520px);
}

.testimonial-rating {
  margin-bottom: 16px;
  color: #f5a524;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}

.testimonial-message {
  min-height: 96px;
  margin-bottom: 22px;
  color: var(--color-text);
  font-size: 1rem;
}

.testimonial-user {
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.testimonial-user h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.testimonial-user p {
  color: var(--color-muted);
  font-size: 0.92rem;
}

@keyframes testimonialMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .testimonial-track {
    width: 100%;
    flex-wrap: wrap;
    animation: none;
  }

  .testimonial-track:hover {
    animation-play-state: running;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    display: none;
  }

  .btn,
  .category-card,
  .product-card,
  .hero-highlight-card,
  .step-card,
  .page-hero-point,
  .contact-item,
  .tip-card,
  .product-image-track,
  .product-image img,
  .product-detail-image img {
    transition: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .category-card:hover,
  .product-card:hover,
  .hero-highlight-card:hover,
  .step-card:hover,
  .page-hero-point:hover,
  .contact-item:hover,
  .tip-card:hover,
  .product-image-nav:hover,
  .product-detail-image:hover img,
  .product-card:hover .product-image img {
    transform: none;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    width: 280px;
    flex-basis: 280px;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 44px;
  }

  .product-image-controls {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .product-image-nav {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    font-size: 1.1rem;
  }

  .product-image-dots {
    gap: 6px;
    padding: 7px 10px;
  }

}

/* =========================
   FAQ
========================= */

.faq-section {
  background: var(--color-white);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: none;
  background: transparent;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-card);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--color-muted);
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

@media (max-width: 640px) {
  .faq-question {
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }
}

/* =========================
   Interaction Polish
========================= */

.product-image img,
.product-detail-image img {
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-detail-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {

  .home-page .navbar,
  .catalog-page .navbar,
  .custom-order-page .navbar,
  .contact-page .navbar,
  .product-page .navbar,
  .track-order-page .navbar {
    overflow: visible;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .home-page .nav-menu,
  .catalog-page .nav-menu,
  .custom-order-page .nav-menu,
  .contact-page .nav-menu,
  .product-page .nav-menu,
  .track-order-page .nav-menu {
    order: initial;
  }

  .home-page .nav-menu.nav-drawer-panel,
  .catalog-page .nav-menu.nav-drawer-panel,
  .custom-order-page .nav-menu.nav-drawer-panel,
  .contact-page .nav-menu.nav-drawer-panel,
  .product-page .nav-menu.nav-drawer-panel,
  .track-order-page .nav-menu.nav-drawer-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 70;
    width: min(86vw, 340px);
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 82px 18px 22px;
    box-sizing: border-box;
    border-radius: 28px 0 0 28px;
    background: rgba(255, 252, 253, 0.98);
    border-left: 1px solid rgba(243, 214, 223, 0.96);
    box-shadow: -18px 0 40px rgba(47, 47, 58, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(calc(100% + 18px));
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .home-page .nav-menu.nav-drawer-panel.show,
  .catalog-page .nav-menu.nav-drawer-panel.show,
  .custom-order-page .nav-menu.nav-drawer-panel.show,
  .contact-page .nav-menu.nav-drawer-panel.show,
  .product-page .nav-menu.nav-drawer-panel.show,
  .track-order-page .nav-menu.nav-drawer-panel.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .home-page .nav-menu.nav-drawer-panel a,
  .catalog-page .nav-menu.nav-drawer-panel a,
  .custom-order-page .nav-menu.nav-drawer-panel a,
  .contact-page .nav-menu.nav-drawer-panel a,
  .product-page .nav-menu.nav-drawer-panel a,
  .track-order-page .nav-menu.nav-drawer-panel a {
    width: 100%;
    justify-content: flex-start;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 20px;
  }

  .home-page .nav-menu.nav-drawer-panel a.active,
  .catalog-page .nav-menu.nav-drawer-panel a.active,
  .custom-order-page .nav-menu.nav-drawer-panel a.active,
  .contact-page .nav-menu.nav-drawer-panel a.active,
  .product-page .nav-menu.nav-drawer-panel a.active,
  .track-order-page .nav-menu.nav-drawer-panel a.active {
    min-height: 56px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* =========================
   Accessibility Polish
========================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(232, 93, 143, 0.35);
  outline-offset: 3px;
}

/* ================================
   Deflora Loading Screen
================================ */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 28% 18%, rgba(240, 108, 152, 0.14), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(240, 108, 152, 0.1), transparent 32%),
    linear-gradient(135deg, #fff8f6 0%, #ffffff 48%, #fff1f6 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

html.deflora-loading .site-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__card {
  width: min(100%, 320px);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 34px 28px;
  border: 1px solid rgba(240, 108, 152, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(132, 48, 78, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: loaderCardFloat 1600ms ease-in-out infinite alternate;
}

.site-loader__bloom {
  position: relative;
  width: 58px;
  height: 58px;
  animation: loaderBloom 1200ms ease-in-out infinite;
}

.site-loader__bloom span {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2.5px solid #f06c98;
  border-radius: 18px 18px 18px 4px;
  background: rgba(240, 108, 152, 0.08);
}

.site-loader__bloom span:nth-child(1) {
  top: 2px;
  left: 16px;
  transform: rotate(45deg);
}

.site-loader__bloom span:nth-child(2) {
  top: 18px;
  right: 2px;
  transform: rotate(135deg);
}

.site-loader__bloom span:nth-child(3) {
  bottom: 2px;
  left: 16px;
  transform: rotate(225deg);
}

.site-loader__bloom span:nth-child(4) {
  top: 18px;
  left: 2px;
  transform: rotate(315deg);
}

.site-loader__brand {
  margin: 4px 0 0;
  color: #2f1b22;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-loader__text {
  margin: 0;
  color: #8a6771;
  font-size: 0.92rem;
}

@keyframes loaderBloom {
  0% {
    transform: scale(0.94) rotate(0deg);
    opacity: 0.72;
  }

  100% {
    transform: scale(1.04) rotate(8deg);
    opacity: 1;
  }
}

@keyframes loaderCardFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .site-loader,
  .site-loader__card,
  .site-loader__bloom {
    animation: none;
    transition: none;
  }
}

/* ================================
   Deflora Skeleton Loading
================================ */

.skeleton-pulse {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(110deg,
      rgba(255, 232, 239, 0.85) 8%,
      rgba(255, 248, 250, 0.95) 18%,
      rgba(255, 232, 239, 0.85) 33%);
  background-size: 220% 100%;
  border-radius: 999px;
  animation: skeletonShimmer 1250ms ease-in-out infinite;
}

.skeleton-line {
  height: 12px;
  width: 100%;
}

.skeleton-line-badge {
  width: 96px;
  height: 18px;
}

.skeleton-line-title {
  width: 74%;
  height: 24px;
  border-radius: 14px;
}

.skeleton-line-heading {
  width: 88%;
  height: clamp(38px, 6vw, 62px);
  border-radius: 22px;
}

.skeleton-line-text {
  width: 100%;
  height: 14px;
}

.skeleton-line-short {
  width: 64%;
}

.skeleton-line-price {
  width: 46%;
  height: 18px;
}

.skeleton-line-price-big {
  width: 48%;
  height: 42px;
  border-radius: 18px;
}

.skeleton-line-button,
.skeleton-line-link {
  width: 136px;
  height: 42px;
  border-radius: 999px;
}

.skeleton-line-mini {
  width: 54px;
  height: 10px;
}

.skeleton-line-spec {
  width: 86px;
  height: 16px;
}

.skeleton-line-label {
  width: 120px;
  height: 12px;
}

.skeleton-breadcrumb {
  width: min(100%, 320px);
  height: 16px;
}

.skeleton-product-card,
.skeleton-home-card,
.product-detail-skeleton {
  pointer-events: none;
  user-select: none;
}

.skeleton-product-media {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: inherit;
}

.skeleton-home-media {
  width: 100%;
  min-height: 320px;
  border-radius: inherit;
}

.skeleton-detail-image {
  width: 100%;
  min-height: clamp(360px, 52vw, 640px);
  border-radius: inherit;
}

.skeleton-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
}

.skeleton-field {
  width: 100%;
  height: 52px;
  border-radius: 18px;
}

.skeleton-textarea {
  width: 100%;
  height: 112px;
  border-radius: 22px;
}

.skeleton-main-button {
  width: 100%;
  height: 56px;
  border-radius: 999px;
}

.skeleton-form {
  display: grid;
  gap: 18px;
}

.skeleton-form .form-group {
  gap: 10px;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-pulse {
    animation: none;
  }
}

/* =========================
   Order Success Modal
========================= */

.order-modal-open {
  overflow: hidden;
}

.order-success-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 228, 0.34), transparent 34%),
    rgba(36, 21, 27, 0.48);
  backdrop-filter: blur(10px);
  animation: orderBackdropIn 0.22s ease;
}

.order-success-modal {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(243, 214, 223, 0.96);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 235, 241, 0.98), transparent 38%),
    linear-gradient(180deg, #fffefe 0%, #fff8fa 100%);
  box-shadow: 0 34px 90px rgba(97, 44, 61, 0.28);
  text-align: center;
  animation: orderModalIn 0.28s ease;
}

.order-success-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(243, 214, 223, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #a85f75;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.22s ease;
}

.order-success-close:hover {
  background: #fff3f7;
  color: var(--color-primary);
  transform: translateY(-1px);
}

.order-success-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #f06c98 0%, #f7a7bf 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(232, 93, 143, 0.3);
}

.order-success-kicker {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-success-modal h2 {
  margin: 0;
  color: #28171d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.order-success-description {
  margin: 12px auto 0;
  max-width: 420px;
  color: rgba(64, 45, 53, 0.76);
  font-size: 0.98rem;
  line-height: 1.7;
}

.order-success-code-card {
  display: grid;
  gap: 8px;
  margin: 24px 0 18px;
  padding: 18px;
  border: 1px dashed rgba(232, 93, 143, 0.34);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.order-success-code-card span {
  color: rgba(64, 45, 53, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-success-code-card strong {
  color: #26161c;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.order-success-copy {
  justify-self: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(243, 214, 223, 0.96);
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}

.order-success-copy:hover {
  background: #fff3f7;
  transform: translateY(-1px);
}

.order-success-summary {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  text-align: left;
}

.order-success-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(243, 214, 223, 0.82);
}

.order-success-row span {
  color: rgba(64, 45, 53, 0.62);
  font-size: 0.88rem;
}

.order-success-row strong {
  color: #2b1a20;
  font-size: 0.92rem;
  text-align: right;
}

.order-success-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.order-success-actions .btn {
  width: 100%;
}

.order-success-note {
  margin: 16px 0 0;
  color: rgba(64, 45, 53, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
}

@keyframes orderBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes orderModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 520px) {
  .order-success-backdrop {
    padding: 14px;
  }

  .order-success-modal {
    padding: 28px 20px 22px;
    border-radius: 26px;
  }

  .order-success-row {
    display: grid;
    gap: 4px;
  }

  .order-success-row strong {
    text-align: left;
  }
}

/* =========================
   Desktop Drawer Navbar
========================= */

body.home-page .navbar .navbar-content,
body.catalog-page .navbar .navbar-content,
body.custom-order-page .navbar .navbar-content,
body.contact-page .navbar .navbar-content,
body.product-page .navbar .navbar-content,
body.track-order-page .navbar .navbar-content {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0;
  gap: 18px;
}

body.home-page .navbar .nav-utility,
body.catalog-page .navbar .nav-utility,
body.custom-order-page .navbar .nav-utility,
body.contact-page .navbar .nav-utility,
body.product-page .navbar .nav-utility,
body.track-order-page .navbar .nav-utility {
  display: none;
}

#navToggle.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  color: #ef6f97;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

#navToggle.nav-toggle:hover {
  background: rgba(255, 239, 244, 0.94);
  transform: translateY(-1px);
}

#navMenu.nav-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  width: min(88vw, 348px);
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  padding: 84px 24px 24px;
  box-sizing: border-box;
  border-radius: 0;
  border-left: 1px solid rgba(243, 214, 223, 0.92);
  background: rgba(255, 252, 253, 0.98);
  box-shadow: -18px 0 42px rgba(64, 42, 52, 0.14);
  color: rgba(47, 47, 58, 0.78);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(calc(100% + 18px));
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}

#navMenu.nav-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

#navMenu.nav-menu a {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 20px;
  color: rgba(47, 47, 58, 0.78);
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

#navMenu.nav-menu a:hover,
#navMenu.nav-menu a.active {
  color: #ef6f97;
  background: rgba(255, 239, 244, 0.94);
}

#navMenu.nav-menu a:hover {
  transform: translateX(2px);
}

#navMenu.nav-menu a.active {
  min-height: 56px;
  padding-left: 20px;
  padding-right: 20px;
}

#navMenu.nav-menu a img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  opacity: 0.9;
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  border: 0;
  background: rgba(41, 23, 29, 0.18);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .navbar {
  z-index: 80;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.mobile-nav-open .navbar .logo {
  opacity: 0;
  pointer-events: none;
}

body.mobile-nav-open .navbar .navbar-content {
  pointer-events: none;
}

body.mobile-nav-open #navToggle.nav-toggle {
  position: fixed;
  top: 16px;
  right: min(calc(88vw - 58px), 290px);
  z-index: 82;
  background: transparent;
  color: #ef6f97;
  pointer-events: auto;
}

body.mobile-nav-open .nav-drawer-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================
   WhatsApp Quick Contact
========================= */

.store-whatsapp-fab {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 16px));
  z-index: 60;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: linear-gradient(145deg, #39d26c 0%, #1cac50 100%);
  box-shadow:
    0 14px 30px rgba(28, 172, 80, 0.28),
    0 4px 12px rgba(56, 35, 43, 0.12);
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.store-whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: inherit;
  animation: storeWhatsappPulse 2.6s ease-out infinite;
}

.store-whatsapp-fab::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: max-content;
  padding: 8px 11px;
  border: 1px solid rgba(232, 93, 143, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(64, 42, 52, 0.12);
  color: #49343d;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.store-whatsapp-fab img {
  width: 34px;
  height: 34px;
  display: block;
}

.store-whatsapp-fab:hover,
.store-whatsapp-fab:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(28, 172, 80, 0.34),
    0 5px 14px rgba(56, 35, 43, 0.14);
}

.store-whatsapp-fab:hover::after,
.store-whatsapp-fab:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

@keyframes storeWhatsappPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@media (max-width: 640px) {
  .store-whatsapp-fab {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
    width: 54px;
    height: 54px;
  }

  .store-whatsapp-fab::after {
    display: none;
  }

  .store-whatsapp-fab img {
    width: 31px;
    height: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-whatsapp-fab,
  .store-whatsapp-fab::after {
    transition: none;
  }

  .store-whatsapp-fab::before {
    animation: none;
  }
}

/* =========================
   Catalog Subnavigation
========================= */

#navMenu.nav-menu .nav-catalog-group {
  display: grid;
  gap: 4px;
  width: 100%;
}

#navMenu.nav-menu .nav-catalog-trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: rgba(47, 47, 58, 0.78);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

#navMenu.nav-menu .nav-catalog-trigger:hover,
#navMenu.nav-menu .nav-catalog-trigger[aria-expanded="true"],
#navMenu.nav-menu .nav-catalog-group.is-active .nav-catalog-trigger {
  color: #ef6f97;
  background: rgba(255, 239, 244, 0.94);
}

#navMenu.nav-menu .nav-catalog-trigger:hover {
  transform: translateX(2px);
}

#navMenu.nav-menu .nav-catalog-trigger img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  opacity: 0.9;
}

#navMenu.nav-menu .nav-catalog-chevron {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  margin-left: auto;
  transition: transform 180ms ease;
}

#navMenu.nav-menu .nav-catalog-chevron svg {
  width: 18px;
  height: 18px;
}

#navMenu.nav-menu
  .nav-catalog-trigger[aria-expanded="true"]
  .nav-catalog-chevron {
  transform: rotate(180deg);
}

#navMenu.nav-menu .nav-catalog-submenu {
  display: grid;
  gap: 3px;
  padding: 3px 8px 5px 49px;
  animation: navCatalogSubmenuIn 180ms ease both;
}

#navMenu.nav-menu .nav-catalog-submenu[hidden] {
  display: none;
}

#navMenu.nav-menu .nav-catalog-submenu .nav-catalog-subitem {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 9px 13px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(81, 64, 72, 0.74);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

#navMenu.nav-menu .nav-catalog-submenu .nav-catalog-subitem:hover,
#navMenu.nav-menu .nav-catalog-submenu .nav-catalog-subitem.active {
  min-height: 40px;
  padding: 9px 13px;
  color: #dc467d;
  background: rgba(255, 238, 244, 0.82);
  transform: translateX(2px);
}

#navMenu.nav-menu
  .nav-catalog-submenu
  .nav-catalog-subitem.is-development::after {
  content: "Soon";
  margin-left: auto;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(239, 111, 151, 0.1);
  color: #d94a7d;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes navCatalogSubmenuIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

/* =========================
   Development Notice
========================= */

.site-development-notice {
  position: fixed;
  inset: 0;
  z-index: 100010;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(62, 33, 47, 0.34);
  backdrop-filter: blur(7px);
  animation: siteDevelopmentNoticeIn 200ms ease both;
}

.site-development-notice.is-leaving {
  animation: siteDevelopmentNoticeOut 200ms ease forwards;
}

.site-development-notice-card {
  position: relative;
  width: min(100%, 410px);
  display: grid;
  justify-items: center;
  padding: 34px 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(224, 93, 145, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 224, 238, 0.94), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255, 239, 196, 0.5), transparent 32%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 72px rgba(51, 25, 38, 0.26);
  animation: siteDevelopmentNoticeCardIn 240ms ease both;
}

.site-development-notice-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff79ad, #e1437c);
  box-shadow: 0 14px 24px rgba(222, 67, 124, 0.24);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
}

.site-development-notice-card h2 {
  margin: 0;
  color: #372431;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  text-align: center;
}

.site-development-notice-card p {
  margin: 10px 0 22px;
  color: #806572;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: center;
}

.site-development-notice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 245, 249, 0.9);
  color: #c74174;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-development-notice-close:hover {
  background: #ffe6f0;
}

.site-development-notice-action {
  min-width: 142px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff659e, #db3d78);
  box-shadow: 0 12px 22px rgba(220, 60, 120, 0.22);
  color: #ffffff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease;
}

.site-development-notice-action:hover {
  transform: translateY(-1px);
}

body.site-development-notice-open {
  overflow: hidden;
}

@keyframes siteDevelopmentNoticeIn {
  from {
    opacity: 0;
  }
}

@keyframes siteDevelopmentNoticeOut {
  to {
    opacity: 0;
  }
}

@keyframes siteDevelopmentNoticeCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
}

@media (max-width: 520px) {
  .site-development-notice {
    padding: 16px;
  }

  .site-development-notice-card {
    padding: 32px 22px 24px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #navMenu.nav-menu .nav-catalog-submenu,
  .site-development-notice,
  .site-development-notice-card {
    animation: none;
  }
}

@media (max-width: 640px) {
  body.home-page .navbar .navbar-content,
  body.catalog-page .navbar .navbar-content,
  body.custom-order-page .navbar .navbar-content,
  body.contact-page .navbar .navbar-content,
  body.product-page .navbar .navbar-content,
  body.track-order-page .navbar .navbar-content {
    min-height: auto;
    padding: 16px 0;
  }

  #navMenu.nav-menu {
    width: min(92vw, 348px);
    padding: 84px 24px 24px;
  }

  body.mobile-nav-open #navToggle.nav-toggle {
    right: min(calc(92vw - 58px), 290px);
  }
}
