/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --purple-900: #581c87;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --orange-500: #f97316;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --blue-500: #3b82f6;
  --cyan-500: #06b6d4;
  --slate-900: #0f172a;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: linear-gradient(90deg,
  #6308ec 0%,
  #4c0cbb 40%,
  #bf08b3 80%,
  #c311a5 100%
);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(7, 236, 60, 0.1);
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 80px;
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(to right, var(--orange-500), var(--pink-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text p {
  font-size: 12px;
  color: rgba(238, 238, 238, 0.849);
  margin: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--white);
}

.btn-wa-nav {
  background: linear-gradient(135deg, var(--green-500), #10b981);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.btn-wa-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.6);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.15), transparent 60%),
              radial-gradient(circle at 0% 50%, rgba(236, 72, 153, 0.15), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange-500), var(--pink-500));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

:root {
  --grad-1: #8acc10;
  --grad-2: #b8cc03de;
  --grad-3: #14a848;
  --grad-4: #08b108;
}

.gradient-text {
  background: linear-gradient(
    to right,
    var(--grad-1) 0%,
    var(--grad-2) 40%,
    var(--grad-3) 80%,
    var(--grad-4) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--pink-500));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-note strong {
  color: var(--white);
  font-weight: 600;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 kolom */
  gap: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  min-width: 0; /* penting biar nggak maksa melebar */
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.5);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.gradient-purple {
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
}

.gradient-green {
  background: linear-gradient(135deg, var(--green-500), #10b981);
}

.gradient-blue {
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
}

.gradient-orange {
  background: linear-gradient(135deg, var(--orange-500), var(--pink-500));
}

.benefit-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Mobile: 1 kolom */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
/* Products Section */
.products {
  padding: 80px 0;
}
.product-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.product-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.category-tab {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.category-tab:hover {
  background: rgba(255, 255, 255, 0.15);
}

.category-tab.active {
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;

  display: flex;
  flex-direction: column;
  height: 100%;
}


.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.product-emoji {
  font-size: 48px;
}

.product-badge {
  background: linear-gradient(135deg, var(--orange-500), var(--pink-500));
  color: var(--white);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}

.product-badge.popular {
  animation: pulse 2s infinite;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars {
  color: #fbbf24;
  font-size: 14px;
}

.rating-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.product-price {
  margin-bottom: 15px;
}

.price-now {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(to right, var(--purple-500), var(--pink-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-right: 10px;
}

.price-old {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  margin-right: 8px;
}

.discount {
  background: #ef4444;
  color: var(--white);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.product-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.btn-order {
  display: block;
  margin-top: auto;
  width: 100%;
  background: linear-gradient(135deg, var(--green-500), #10b981);
  color: var(--white);
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* How to Order Section */
.how-to-order {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.step-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.note-box {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(251, 191, 36, 0.3);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.note-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 15px;
}

.note-box ul {
  list-style: none;
  padding: 0;
}

.note-box li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}
/* Container judul FAQ */
.faq-title {
  display: flex;
  flex-direction: column;   /* susun vertikal */
  align-items: center;      /* tengah */
  justify-content: center;
  gap: 4px;                 /* jarak antara ❓ dan FAQ */
  margin-bottom: 10px;
}

/* Animasi ❓ */
.faq-q {
  font-size: 42px;
  display: block;
  animation: bounceQ 1.2s infinite ease-in-out;
}

@keyframes bounceQ {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s, border-color 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.3);
}

.faq-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.faq-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.faq-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2), transparent 70%);
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  line-height: 1.7;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-500), #10b981);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
  margin-bottom: 25px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.6);
}

.cta-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-block;
}

.cta-badge p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 0;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.footer-brand h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-desc {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .cta-content h3 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .category-tabs {
    gap: 8px;
  }
  
  .category-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
}
.breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb span {
  margin: 0 6px;
}
/* ===== MENU TAB FORE ===== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 35px;
}

.menu-tab {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.menu-tab:hover {
  background: rgba(255,255,255,0.2);
}

.menu-tab.active {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

/* ===== MODAL POPUP ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  width: 90%;
  max-width: 520px;
  border-radius: 14px;
  padding: 24px 24px 28px;
  position: relative;
  animation: modalFade .2s ease;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.modal-content {
  background: #f9fafb;
  border-radius: 10px;
  padding: 16px 18px;
  color: #333;
  font-size: 15px;
}

.modal-content ol {
  padding-left: 18px;
  margin: 0;
}

.modal-content li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

@keyframes modalFade {
  from {
    transform: scale(.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* ===== FLOATING BUTTON CARA PEMESANAN ===== */
.floating-order-btn {
  position: fixed;
  bottom: 90px; /* aman dari tombol WA */
  right: 20px;
  z-index: 9998;

  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;

  font-size: 14px;
  font-weight: 700;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  animation: floatPulse 2s infinite;
}

/* hover */
.floating-order-btn:hover {
  transform: translateY(-2px);
}

/* animasi */
@keyframes floatPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* mobile lebih kecil */
@media (max-width: 480px) {
  .floating-order-btn {
    bottom: 80px;
    right: 15px;
    padding: 12px 16px;
    font-size: 13px;
  }
}
/* BRAND LINK NAVBAR */
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-link:hover {
  opacity: 0.9;
}

.brand-link h1,
.brand-link p {
  pointer-events: none; /* biar klik ke link, bukan ke teks */
}
/* ===== FOOTER LOGO ===== */
.footer-logo {
  width: 150px;
  height: 150px;
}
/* ===== FOOTER BRAND CENTER ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-brand {
  gap: 4px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  text-align: center;
}

/* ===============================
   PRODUCT CARD ALIGN FIX
================================ */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Bungkus area teks (judul + desc) */
.product-name {
  min-height: 48px; /* judul rata */
}

.product-note {
  min-height: 60px; /* deskripsi rata */
}

/* ===============================
   PRICE & DISCOUNT ALIGN
================================ */
.product-price {
  margin-top: auto; /* dorong ke bawah setelah deskripsi */
  margin-bottom: 16px;
}

/* Harga sekarang */
.price-now {
  display: inline-block;
  min-width: 110px; /* semua Rp sejajar */
}

/* Harga coret */
.price-old {
  display: inline-block;
  min-width: 80px;
}

/* Badge diskon */
.discount {
  display: inline-block;
  min-width: 52px;
  text-align: center;
}

/* ===============================
   BUTTON ALIGN BOTTOM
================================ */
.btn-order {
  margin-top: auto;
}
.product-img-wrap {
  width: 100%;
  height: 180px;
  background: #e9f4ee;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

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

.section-note {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 20px;
  padding: 12px 18px;

  color: #2d1b00; /* teks gelap biar kebaca */
  background: linear-gradient(135deg, #FFD966, #FFC107); /* tab warna kuning */
  border-radius: 12px;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
