/* =========================================================
   DX COOKIES — style.css
   Mobile-first, vanilla CSS, no external dependencies
   ========================================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --bg-main:       #FFF7ED;
  --bg-white:      #FFFFFF;
  --bg-section:    #FFF8F0;
  --primary:       #8B4513;
  --primary-dark:  #6B3410;
  --secondary:     #D97706;
  --accent:        #F59E0B;
  --accent-light:  #FEF3C7;
  --text-dark:     #2B1A12;
  --text-muted:    #6B5B4D;
  --text-light:    #9B8B7D;
  --border:        #E8D5C0;
  --shadow-sm:     0 1px 4px rgba(43, 26, 18, 0.08);
  --shadow-md:     0 4px 16px rgba(43, 26, 18, 0.12);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --font-main:     system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h:      64px;
  --max-w:         1140px;
  --wa-green:      #25D366;
  --wa-green-dark: #1DA851;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 18px;
}

.section-pad {
  padding: 56px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.97rem;
  max-width: 540px;
  margin: 0 auto;
}

.eyebrow-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  width: 100%;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.btn-wa:hover {
  background: var(--wa-green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-marketplace {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.btn-marketplace:hover {
  border-color: var(--primary);
  background: var(--accent-light);
  color: var(--primary);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 247, 237, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  text-decoration: none;
}

.brand-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* Desktop nav */
.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover {
  background: var(--accent-light);
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  padding: 8px;
  transition: background 0.15s;
  background: transparent;
  border: 1.5px solid var(--border);
}

.hamburger:hover {
  background: var(--accent-light);
}

.ham-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

/* Hamburger open state */
.hamburger.is-open .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .ham-bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav (slides from top) */
.main-nav.is-open {
  display: block;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 12px 0 20px;
  z-index: 899;
  animation: slideDown 0.22s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.main-nav.is-open .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  padding: 0 18px;
}

.main-nav.is-open .nav-link {
  display: block;
  padding: 13px 16px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

.main-nav.is-open .nav-cta {
  margin-top: 8px;
  text-align: center;
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 898;
}
.mobile-overlay.is-visible {
  display: block;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 52px;
  background: var(--bg-main);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid #FDE68A;
}

.hero-title {
  font-size: clamp(1.6rem, 5.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-title strong {
  color: var(--primary);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

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

.btn-icon {
  font-size: 1.05em;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  width: fit-content;
  max-width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.stat-item strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero visual / image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrap {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

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

.hero-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 40%, #FDBA74 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.placeholder-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.placeholder-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.8;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.blob-1 {
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.2);
  top: -40px;
  right: -40px;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: rgba(139, 69, 19, 0.12);
  bottom: -30px;
  left: -20px;
}

/* =========================================================
   KEUNGGULAN
   ========================================================= */
.keunggulan-section {
  background: var(--bg-white);
}

.keunggulan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.unggulan-card {
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  transition: transform 0.18s, box-shadow 0.18s;
}

.unggulan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.unggulan-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.unggulan-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.unggulan-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================================
   PRODUK
   ========================================================= */
.produk-section {
  background: var(--bg-main);
}

.produk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.produk-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}

.produk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.produk-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--accent-light);
}

.produk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.produk-card:hover .produk-img {
  transform: scale(1.04);
}

.produk-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FEF3C7, #FDBA74);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.produk-placeholder span:first-child {
  font-size: 2.5rem;
}

/* Product label badge */
.produk-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.label-bestseller { background: #DC2626; color: #fff; }
.label-favorit    { background: var(--secondary); color: #fff; }
.label-premium    { background: #7C3AED; color: #fff; }
.label-kado       { background: #059669; color: #fff; }

/* Product card body */
.produk-body {
  padding: 18px;
}

.produk-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.produk-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.produk-varian {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.produk-harga {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

/* =========================================================
   HAMPERS
   ========================================================= */
.hampers-section {
  background: var(--bg-white);
}

.hampers-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hampers-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 20px;
  margin-top: 10px;
}

.hampers-list {
  margin-bottom: 24px;
}

.hampers-sub {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hampers-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hampers-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.hampers-dot {
  flex-shrink: 0;
  font-size: 1rem;
}

.hampers-note {
  font-size: 0.85rem;
  color: var(--secondary);
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 20px;
  border-left: 3px solid var(--accent);
}

/* Hampers highlight card */
.hampers-card-visual {
  background: linear-gradient(135deg, var(--primary) 0%, #6B3410 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hampers-card-visual::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.hcard-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  line-height: 1;
}

.hcard-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hcard-sub {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.hcard-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.hcard-features li {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hcard-badge {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}

/* =========================================================
   CARA PESAN
   ========================================================= */
.cara-pesan-section {
  background: var(--bg-section);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

/* Hide arrows in mobile */
.step-arrow {
  display: none;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
}

.step-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  margin-top: 6px;
  line-height: 1;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================================
   TESTIMONI
   ========================================================= */
.testimoni-section {
  background: var(--bg-white);
}

.testi-note {
  font-size: 0.78rem;
  color: var(--accent);
  font-style: italic;
}

.testi-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testi-card {
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: transform 0.18s;
}

.testi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.testi-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
  quotes: "\201C" "\201D";
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.92rem;
  color: var(--text-dark);
  display: block;
}

.testi-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================
   GALERI
   ========================================================= */
.galeri-section {
  background: var(--bg-section);
}

.galeri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.galeri-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: var(--accent-light);
  transition: transform 0.2s;
}

.galeri-item:hover {
  transform: scale(1.02);
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galeri-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #FEF3C7, #FDBA74);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  padding: 10px;
}

.galeri-placeholder span:first-child {
  font-size: 2rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section {
  background: var(--bg-white);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-section);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.25s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  animation: fadeIn 0.2s ease;
}

.faq-answer[hidden] {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================================
   CTA / KONTAK
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, #4A2000 0%, var(--primary) 50%, #A0522D 100%);
  color: #fff;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cta-title {
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 460px;
  line-height: 1.55;
}

/* Kontak cards */
.kontak-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontak-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(4px);
}

.kontak-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.kontak-body {
  flex: 1;
  min-width: 0;
}

.kontak-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.kontak-body span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.kontak-card .btn-primary {
  background: var(--wa-green);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 9px 16px;
  font-size: 0.85rem;
}

.kontak-card .btn-primary:hover {
  background: var(--wa-green-dark);
}

.kontak-card .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 9px 16px;
  font-size: 0.85rem;
}

.kontak-card .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Marketplace row */
.marketplace-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.marketplace-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.marketplace-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.marketplace-btns .btn-marketplace {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.88rem;
}

.marketplace-btns .btn-marketplace:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* Info row */
.info-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.info-icon {
  font-size: 1rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 44px;
  padding-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-logo span {
  font-size: 1.5rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  max-width: 260px;
}

.footer-nav-title {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact .footer-link {
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-demo {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.3) !important;
  font-style: italic;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 800;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.back-to-top[hidden] {
  display: none;
}

/* =========================================================
   RESPONSIVE — TABLET (min 600px)
   ========================================================= */
@media (min-width: 600px) {
  .produk-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    justify-content: flex-start;
    width: auto;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .kontak-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   RESPONSIVE — DESKTOP (min 900px)
   ========================================================= */
@media (min-width: 900px) {

  /* Header */
  .hamburger {
    display: none;
  }

  .main-nav {
    display: block !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    animation: none !important;
  }

  .main-nav .nav-list {
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
  }

  .main-nav .nav-link {
    padding: 8px 14px !important;
    font-size: 0.92rem !important;
  }

  /* Hero */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .hero-content {
    flex: 1;
    max-width: 520px;
  }

  .hero-visual {
    flex: 1;
    justify-content: flex-end;
  }

  .hero-img-wrap {
    max-width: 100%;
  }

  /* Keunggulan */
  .keunggulan-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Produk */
  .produk-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Hampers */
  .hampers-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .hampers-content {
    flex: 1;
  }

  .hampers-highlight {
    flex: 0 0 340px;
  }

  /* Cara pesan */
  .steps-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .step-card {
    flex: 1;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 4px;
    margin-top: 40px;
  }

  /* Testimoni */
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Galeri */
  .galeri-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* CTA / Kontak */
  .kontak-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-row {
    flex-direction: row;
    gap: 28px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: row;
    gap: 48px;
  }

  .footer-brand {
    flex: 2;
  }

  .footer-nav {
    flex: 1;
  }

  .footer-contact {
    flex: 1;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* =========================================================
   RESPONSIVE — LARGE (min 1100px)
   ========================================================= */
@media (min-width: 1100px) {
  .container {
    padding: 0 32px;
  }

  .section-pad {
    padding: 72px 0;
  }
}

/* =========================================================
   ACCESSIBILITY: REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
