/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  background-color: #fafaf8;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: transparent !important;
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://www.transparenttextures.com/patterns/grid-me.png");
  background-repeat: repeat;
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

ul {
  list-style: none
}

img {
  display: block;
  max-width: 100%
}

/* ===== CSS VARIABLES ===== */
:root {
  --pri: #8B4E5F;
  --pri-l: #a66a7b;
  --bg: #fafaf8;
  --white: #fff;
  --text: #333;
  --muted: #888;
  --border: #ebebeb;
  --ease: 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-weight: 500;
  letter-spacing: -.01em
}

.serif-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--pri)
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, .88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-logo .logo-top {
  color: var(--pri);
  font-size: 9px;
  letter-spacing: 3px;
  font-weight: 700;
  line-height: 1
}

.nav-logo .logo-bot {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1
}

@media (max-width: 992px) {
  .nav-container {
    padding: 12px 16px;
  }
}

.nav-links {
  display: flex !important;
  flex-direction: row !important;
  list-style: none;
  gap: 24px;
  margin: 0 0 0 auto !important;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}

.nav-links .dropdown-content {
  display: none;
  opacity: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.05);
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 12px 0;
  border-radius: 12px;
  overflow: hidden;
}

.nav-links .dropdown-content a {
  color: var(--text);
  padding: 12px 24px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: 400;
  border-bottom: none;
  transition: all 0.3s ease;
}

.nav-links .dropdown-content a:hover {
  background: rgba(139, 78, 95, 0.05);
  color: var(--pri);
  padding-left: 30px;
}

@media (max-width: 992px) {
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 10px;
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column !important;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 99;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block !important;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--pri);
    cursor: pointer;
  }
}

/* CONTENT VISIBILITY */
.product-card,
.step-card,
.testi-card,
.faq-item {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: none !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== HERO ===== */
.hero {
  max-width: 1100px;
  margin: auto;
  padding: 100px 24px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1.2
}

.hero-tag-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.hero-tag-wrap::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pri);
  opacity: .4
}

.hero-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pri);
  font-weight: 600
}

.hero-text h1 {
  font-size: 46px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.12;
  margin-bottom: 20px
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 460px
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-image {
  flex: 0.8;
  display: flex;
  justify-content: flex-end
}

.hero-image img {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .08))
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 28px;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 0;
  transition: var(--ease);
}

.btn-primary {
  background: var(--pri);
  color: #fff;
  border: 1px solid var(--pri)
}

.btn-primary:hover {
  background: var(--pri-l);
  border-color: var(--pri-l)
}

.btn-secondary {
  background: transparent;
  color: var(--pri);
  border: 1px solid var(--pri)
}

.btn-secondary:hover {
  background: var(--pri);
  color: #fff
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: #1a1a1a;
  padding: 12px 0;
  overflow: hidden;
  margin: 50px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding-right: 60px;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== SECTION HEADERS ===== */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 60px 0 16px;
  scroll-margin-top: 100px !important;
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--border);
}

@media (max-width: 768px) {

  .section-label::before,
  .section-label::after {
    max-width: 40px;
  }
}

.section-label span {
  padding: 0 18px;
  font-size: 10px;
  color: var(--pri);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 50px;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 24px 28px;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--pri);
  box-shadow: 0 8px 24px rgba(139, 78, 95, .08)
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 0;
  transition: transform var(--ease)
}

.product-card:hover .product-img {
  transform: scale(1.04)
}

.product-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1a1a1a
}

.product-card .sub {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px
}

.price-list {
  margin-bottom: 24px;
  text-align: left
}

.price-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
}

.price-item:last-child {
  border-bottom: none
}

.price-item b {
  color: var(--pri);
  font-weight: 500
}

.btn-card {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--ease);
  text-transform: uppercase;
  color: var(--pri);
}

.product-card:hover .btn-card {
  background: var(--pri);
  color: #fff;
  border-color: var(--pri)
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.step-card {
  border: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--white)
}

.step-num {
  font-size: 22px;
  font-weight: 300;
  color: var(--pri);
  opacity: .35;
  margin-bottom: 12px
}

.step-card h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1a1a1a
}

.step-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 24px
}

.testi-stars {
  color: #d4af37;
  font-size: 11px;
  margin-bottom: 16px
}

.testi-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8
}

.testi-user {
  margin-top: 20px;
  font-weight: 600;
  font-size: 11px;
  color: var(--pri);
  text-transform: uppercase;
  letter-spacing: 1px
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto 100px;
  padding: 0 24px
}

.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 10px;
  background: var(--white)
}

.faq-q {
  padding: 18px 22px;
  font-weight: 500;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  color: #444;
  user-select: none;
}

.faq-q i {
  font-size: 10px;
  transition: .3s
}

.faq-a {
  padding: 0 22px 16px;
  font-size: 13px;
  color: var(--muted);
  display: none
}

.faq-item.open .faq-a {
  display: block
}

.faq-item.open .faq-q i {
  transform: rotate(180deg)
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.logo-top {
  color: var(--pri);
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 700;
}

.logo-bot {
  font-size: 20px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.8;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 38px;
  height: 38px;
  background: var(--white);
  color: var(--pri);
  border: 1px solid var(--border);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
  font-size: 13px;
}

.back-to-top:hover {
  border-color: var(--pri);
  transform: translateY(-3px)
}

.back-to-top.show {
  display: flex
}

/* ===== SCROLL REVEAL & IMAGE SMOOTH LOADING ===== */

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.16,1,.3,1),
              transform 0.65s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.img-wrap {
  position: relative;
  overflow: hidden;
  background: #f0e8eb;
  border-radius: inherit;
}

.img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.55) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: imgShimmer 1.4s ease-in-out infinite;
  z-index: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.img-wrap.img-loaded::before {
  opacity: 0;
  animation: none;
}

@keyframes imgShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.img-smooth {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity  0.6s cubic-bezier(.16,1,.3,1),
    transform 0.6s cubic-bezier(.16,1,.3,1),
    filter  0.6s ease;
  filter: blur(6px);
  will-change: opacity, transform, filter;
  position: relative;
  z-index: 2;
}

.img-smooth.img-loaded {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.hero-img-smooth {
  opacity: 0;
  transform: translateX(24px) scale(0.97);
  transition:
    opacity  0.9s cubic-bezier(.16,1,.3,1),
    transform 0.9s cubic-bezier(.16,1,.3,1),
    filter  0.9s ease;
  filter: blur(8px);
}

.hero-img-smooth.img-loaded {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.logo-img-smooth {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.logo-img-smooth.img-loaded {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 70px 24px 50px;
    gap: 40px
  }

  .hero-text {
    text-align: center
  }

  .hero-desc {
    margin: 0 auto 32px
  }

  .hero-btns {
    justify-content: center
  }

  .hero-image {
    justify-content: center
  }

  .product-grid,
  .testi-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

@media(max-width:600px) {
  .hero-text h1 {
    font-size: 30px
  }

  .product-grid,
  .testi-grid,
  .steps-grid {
    grid-template-columns: 1fr
  }

  .footer-container {
    grid-template-columns: 1fr
  }
}


/* ============================================================
   ===== MODAL =====
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* z-index harus DI BAWAH SweetAlert2 default (1060) */
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility .35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 24px 30px 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.28);
  border-radius: 3px;
  animation: fadeUp .3s ease;
}

.modal-content::-webkit-scrollbar {
  width: 4px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 2px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-grid-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/grid-me.png");
  opacity: 0.10;
  pointer-events: none;
  border-radius: 3px;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color .2s;
  z-index: 10;
}

.close-modal:hover {
  color: #333;
}

/* ---- Product Header ---- */
.modal-product-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.modal-product-img-wrap {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafaf8;
  border: 1px solid #f0e8eb;
  padding: 8px;
}

.modal-product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-product-info {
  flex: 1;
}

.modal-product-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.15;
}

.modal-selected-badge {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #8B4E5F;
  color: #8B4E5F;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  text-transform: uppercase;
  border-radius: 2px;
}

.modal-divider {
  height: 1.5px;
  background: #8B4E5F;
  margin: 0 0 24px;
}

.modal-sub-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 8px;
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 600;
}

.modal-section-tag {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.modal-section-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(139, 78, 95, 0.25);
}

.modal-section-tag span {
  position: relative;
  background: #fff;
  padding: 0 14px;
  font-size: 10px;
  font-weight: 700;
  color: #8B4E5F;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- Duration Chips ---- */
.duration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.duration-chip {
  padding: 12px 4px;
  border: 1.5px solid #8B4E5F;
  text-align: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  background: transparent;
  color: #8B4E5F;
  border-radius: 2px;
}

.duration-chip .d-val {
  display: block;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.duration-chip .d-price {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.85;
}

.duration-chip.active,
.duration-chip:hover {
  background: #8B4E5F;
  color: #fff;
}

/* ---- Form Grid & Fields ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #8B4E5F;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 2px;
  padding: 8px 12px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  background: #fff;
  color: #333;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #8B4E5F;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
  font-size: 12px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ---- Returning Customer Notice ---- */
.returning-customer-notice {
  background: #fef6f8;
  border: 1px solid #f5dde3;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 18px;
  transition: all 0.35s ease;
}

.returning-customer-notice p {
  font-size: 12px;
  color: #999;
  margin: 0;
  line-height: 1.5;
}

.returning-customer-notice.found {
  background: linear-gradient(135deg, #f0f7ee 0%, #e8f5e4 100%);
  border-color: #a8d5a2;
}

.rc-found {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-icon {
  width: 36px;
  height: 36px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-icon i {
  color: #fff;
  font-size: 14px;
}

.rc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rc-text strong {
  font-size: 12px;
  color: #2e7d32;
  font-weight: 700;
}

.rc-text span {
  font-size: 11px;
  color: #555;
}

/* ---- File Upload Area ---- */
.file-upload-area {
  position: relative;
  border: 2px dashed #e0ccd1;
  border-radius: 6px;
  background: #fdf8f9;
  transition: border-color 0.25s, background 0.25s;
  overflow: hidden;
}

.file-upload-area:hover {
  border-color: #8B4E5F;
  background: #fef5f7;
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  pointer-events: none;
  z-index: 1;
}

.file-upload-label i {
  font-size: 18px;
  color: #8B4E5F;
  opacity: 0.7;
}

.file-upload-label span {
  font-size: 12px;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
}

/* ---- File Preview ---- */
.file-preview-wrap {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-preview-wrap img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e0ccd1;
  box-shadow: 0 2px 8px rgba(139,78,95,0.12);
}

.foto-notice {
  display: block;
  font-size: 10px;
  color: #4caf50;
  margin-top: 4px;
  font-weight: 500;
}

/* ---- Requirements Box ---- */
.requirements-box {
  background: #fef6f8;
  padding: 16px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
  border: 1px solid #f5dde3;
}

.requirements-box p {
  font-size: 11px;
  margin-bottom: 8px;
  color: #8B4E5F;
  font-weight: 600;
}

.requirements-box ul {
  list-style: none;
  padding-left: 0;
}

.requirements-box li {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  position: relative;
  padding-left: 14px;
}

.requirements-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8B4E5F;
}

/* ---- Price Bar ---- */
.price-bar {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 2px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.price-label span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #999;
}

.price-label small {
  font-size: 10px;
  color: #bbb;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #8B4E5F;
}

.btn-wa-confirm {
  width: 100%;
  padding: 14px 28px;
  border: none;
  background: linear-gradient(135deg, #8B4E5F 0%, #a66a7b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(139,78,95,0.3);
}

.btn-wa-confirm:hover {
  background: linear-gradient(135deg, #7a3f50 0%, #955a6a 100%);
  box-shadow: 0 6px 20px rgba(139,78,95,0.45);
  transform: translateY(-1px);
}

/* ---- Modal Responsive ---- */
@media (max-width: 600px) {
  .modal-content {
    padding: 24px 18px 28px;
  }

  .modal-product-info h2 {
    font-size: 22px;
  }

  .modal-product-img-wrap {
    width: 80px;
    height: 80px;
  }

  .duration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .price-value {
    font-size: 22px;
  }
}

/* ============================================================
   ===== SWEETALERT2 — selalu di atas segalanya =====
   SweetAlert2 default z-index = 1060 (backdrop) / 1070 (popup).
   Modal kita z-index = 500, jadi tidak perlu override apapun.
   Class .swal-on-top hanya untuk berjaga-jaga di konteks lain.
   ============================================================ */
.swal-on-top.swal2-container {
  z-index: 99999 !important;
}