/* ==========================================================
   Fashion Senja - Storefront Stylesheet (Modern Editorial)
   ========================================================== */
:root {
  --primary: #b45309;
  --primary: #d97706;
  --primary-dark: #92400e;
  --primary-light: #f59e0b;
  --ink: #14120f;
  --ink-2: #2a261f;
  --bg: #fbf7f0;
  --card: #ffffff;
  --text: #1f1c18;
  --muted: #7c7569;
  --border: #efe6d8;
  --gold: #d4a94e;
  --danger: #dc2626;
  --success: #059669;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(40, 30, 15, .08);
  --shadow-lg: 0 26px 60px rgba(40, 30, 15, .16);
  --font-sans: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==========================================================
   GATE PERSETUJUAN
   ========================================================== */
.gate-overlay {
  position: fixed; inset: 0; z-index: 4000;
  background: radial-gradient(circle at 50% 30%, #3a2a14, #141210 75%);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.gate-box {
  background: linear-gradient(165deg, #fffdf8, #f7efe1);
  border-radius: 26px; max-width: 520px; width: 100%; padding: 42px 38px;
  text-align: center; box-shadow: 0 40px 90px rgba(0,0,0,.55);
  border: 1px solid rgba(212,169,78,.3);
  animation: gateIn .5s ease;
}
@keyframes gateIn { from { transform: scale(.92) translateY(20px); opacity: 0 } to { transform: none; opacity: 1 } }
.gate-badge {
  display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: 3px;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 18px;
}
.gate-icon {
  width: 72px; height: 72px; margin: 0 auto 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: grid; place-items: center; font-size: 32px; color: #fff;
  box-shadow: 0 14px 34px rgba(217,119,6,.45);
}
.gate-box h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.gate-box > p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.gate-terms {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 22px; text-align: left; margin-bottom: 22px;
}
.gate-terms ul { list-style: none; }
.gate-terms li { font-size: 13.5px; color: var(--ink-2); padding: 6px 0; line-height: 1.5; }
.gate-btns { display: flex; flex-direction: column; gap: 12px; }
.btn-gate-yes {
  padding: 15px; border: none; border-radius: 14px; font-size: 15.5px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)); color: #fff;
  transition: all .25s; box-shadow: 0 10px 24px rgba(217,119,6,.4);
}
.btn-gate-yes:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217,119,6,.5); }
.btn-gate-no {
  padding: 13px; border: 1.5px solid var(--border); border-radius: 14px; font-size: 14px;
  font-weight: 600; background: #fff; color: var(--muted); transition: all .2s;
}
.btn-gate-no:hover { border-color: var(--primary); color: var(--primary); }
.gate-note { font-size: 11.5px !important; color: #aaa !important; margin-top: 16px; margin-bottom: 0 !important; }

/* ==========================================================
   ANNOUNCEMENT / HEADER
   ========================================================== */
.announcement {
  background: linear-gradient(90deg, var(--ink-2), var(--ink)); color: #fff;
  text-align: center; padding: 9px 16px; font-size: 13px; font-weight: 600;
}
.site-header {
  background: rgba(251,247,240,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 900;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 800; color: var(--ink); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff; font-weight: 800; font-size: 15px; letter-spacing: .5px;
  box-shadow: 0 8px 18px rgba(217,119,6,.35);
}
.logo-text { font-family: var(--font-serif); font-weight: 800; }
.logo-text span { color: var(--primary); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; font-size: 14px; color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--primary); }
.wa-btn-nav {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: rgba(37,211,102,.12); color: #16a34a !important; font-weight: 800; font-size: 13.5px;
  border-radius: 50px; border: 1.5px solid rgba(37,211,102,.35); transition: all .25s;
}
.wa-btn-nav:hover { background: #25d366; color: #fff !important; transform: translateY(-2px); }
.hamburger { display: none; background: none; border: none; font-size: 26px; color: var(--text); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, #1b1812 0%, #2a2418 40%, #3d2f18 72%, #52380f 100%);
  color: #fff; padding: 90px 0 130px;
}
.hero::before, .hero::after { content:''; position: absolute; border-radius: 50%; filter: blur(100px); opacity:.55; }
.hero::before { width: 480px; height: 480px; background:#d97706; top:-160px; right:-100px; }
.hero::after { width: 400px; height: 400px; background:#92400e; bottom:-180px; left:-120px; opacity:.4; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-kicker::before { content: ''; width: 34px; height: 2px; background: var(--gold); }
.hero h1 { font-family: var(--font-serif); font-size: clamp(34px, 5vw, 56px); font-weight: 800; line-height: 1.12; margin-bottom: 20px; }
.hero h1 .italic { font-style: italic; color: var(--gold); }
.hero p { font-size: 16.5px; color: rgba(255,255,255,.82); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px; font-weight: 800; font-size: 15px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)); color: #fff;
  box-shadow: 0 10px 26px rgba(217,119,6,.4); transition: all .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(217,119,6,.5); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px; font-weight: 700; font-size: 15px;
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); transition: all .25s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-stats { display: flex; gap: 42px; flex-wrap: wrap; }
.stat .num { font-size: 27px; font-weight: 800; color: #fff; }
.stat .lbl { font-size: 12.5px; color: rgba(255,255,255,.62); }
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.22); border-radius: 30px; padding: 38px; text-align: center;
  backdrop-filter: blur(12px); box-shadow: 0 30px 70px rgba(0,0,0,.4); min-width: 310px; transform: rotate(2deg);
}
.hero-card .hc-img { font-size: 90px; filter: drop-shadow(0 14px 24px rgba(0,0,0,.35)); }
.hero-card .hc-name { font-size: 21px; font-weight: 800; margin-top: 12px; }
.hero-card .hc-tag { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; font-weight: 700; }
.hero-card .hc-price { font-size: 26px; font-weight: 800; color: var(--gold); margin-top: 12px; }
.float-chip {
  position: absolute; background: #fff; color: var(--text); border-radius: 14px;
  padding: 11px 18px; font-size: 13px; font-weight: 700; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px; animation: float 4s ease-in-out infinite;
}
.float-chip.f1 { top: 8%; left: 0; }
.float-chip.f2 { bottom: 14%; right: 0; animation-delay: 1.3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ==========================================================
   TRUST BAR
   ========================================================== */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 0; margin-top: -52px; position: relative; z-index: 20; }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 26px 22px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ic { font-size: 30px; }
.trust-item .t b { display: block; font-size: 14.5px; }
.trust-item .t span { font-size: 12.5px; color: var(--muted); }

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { padding: 80px 0; }
.section.alt { background: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head .kicker {
  display: inline-block; color: var(--primary); background: #fdf1dc;
  padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-head h2 { font-family: var(--font-serif); font-size: clamp(28px, 3.8vw, 40px); font-weight: 800; color: var(--ink); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 15.5px; }

/* ==========================================================
   PRODUCTS
   ========================================================== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
.product-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all .28s ease; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; height: 230px; overflow: hidden; background: linear-gradient(145deg, #f7ead2, #fdf6e9); }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media .emoji { position: absolute; inset: 0; display: grid; place-items: center; font-size: 88px; filter: drop-shadow(0 12px 18px rgba(0,0,0,.18)); }
.sale-badge {
  position: absolute; top: 14px; left: 14px; background: var(--danger); color: #fff;
  font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 50px; box-shadow: 0 6px 14px rgba(220,38,38,.4);
}
.stock-badge {
  position: absolute; top: 14px; right: 14px; padding: 6px 12px; border-radius: 50px;
  font-size: 11.5px; font-weight: 700; background: rgba(5,150,105,.14); color: #047857;
  backdrop-filter: blur(4px); border: 1px solid rgba(5,150,105,.3);
}
.stock-badge.low { background: rgba(217,119,6,.15); color: #b45309; border-color: rgba(217,119,6,.35); }
.stock-badge.out { background: rgba(220,38,38,.15); color: #b91c1c; border-color: rgba(220,38,38,.35); }
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 4px; line-height: 1.35; }
.rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.rating .stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.rating span { font-size: 12.5px; color: var(--muted); }
.product-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.price { font-size: 24px; font-weight: 800; color: var(--primary); }
.price-old { font-size: 14px; color: #a89f92; text-decoration: line-through; }
.btn-buy {
  width: 100%; padding: 13px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff; font-weight: 800; font-size: 15px; transition: all .25s; box-shadow: 0 8px 18px rgba(217,119,6,.3);
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(217,119,6,.42); }
.btn-buy[disabled] { background: #d1d5db; box-shadow: none; cursor: not-allowed; transform: none; }

/* ==========================================================
   STEPS
   ========================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  background: #fff; border-radius: var(--radius); padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow); position: relative; border: 1px solid var(--border);
}
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)); color: #fff;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 15px; box-shadow: 0 6px 12px rgba(217,119,6,.35);
}
.step-card .ic { font-size: 40px; margin-bottom: 12px; }
.step-card h4 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--muted); }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); position: relative; border: 1px solid var(--border); }
.tst-card .q { font-size: 34px; color: var(--primary-light); line-height: 1; font-family: var(--font-serif); }
.tst-card p { font-size: 14px; margin: 12px 0 18px; color: var(--ink-2); }
.tst-user { display: flex; align-items: center; gap: 12px; }
.tst-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  display: grid; place-items: center; color: #fff; font-weight: 800;
}
.tst-user b { font-size: 14px; display: block; }
.tst-user span { font-size: 12.5px; color: var(--muted); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-size: 15.5px; font-weight: 700; color: var(--ink); text-align: left;
}
.faq-q .arrow { transition: transform .3s; color: var(--primary); font-size: 18px; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 14px; color: var(--muted); }

/* ==========================================================
   CTA
   ========================================================== */
.cta-section {
  background: linear-gradient(135deg, #241c0f, #52380f); color: #fff;
  border-radius: 28px; max-width: 1100px; margin: 0 auto; padding: 62px 40px; text-align: center;
  position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(46,32,10,.35);
}
.cta-section::before { content:''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(245,158,11,.25); filter: blur(90px); top: -120px; left: -60px; }
.cta-section h2 { font-family: var(--font-serif); font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 28px; position: relative; }
.cta-section .btn { position: relative; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: var(--ink); color: #a89f92; padding: 60px 0 30px; margin-top: 90px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid .logo { color: #fff; }
.footer-about p { font-size: 13.5px; margin-top: 14px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 13.5px; }
.footer li a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 13px; }

/* ==========================================================
   MODAL / FORM
   ========================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(20,16,10,.75); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; z-index: 3000; padding: 18px;
}
.modal-overlay.show { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.modal-box { background: #fff; border-radius: 22px; max-width: 480px; width: 100%; max-height: 92vh; overflow-y: auto; padding: 30px; box-shadow: var(--shadow-lg); animation: slideUp .3s ease; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0 } to { transform: none; opacity: 1 } }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-head h3 { font-size: 20px; font-weight: 800; }
.modal-close { background: var(--bg); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; color: var(--muted); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 14px; font-family: inherit; background: #fdfaf5; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-light); }
.buy-summary { background: #fdf1dc; border-radius: 12px; padding: 16px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.buy-summary .bs-l { font-size: 13.5px; color: var(--muted); }
.buy-summary .bs-r { font-weight: 800; }

/* ==========================================================
   TOAST
   ========================================================== */
.toast {
  position: fixed; top: 20px; left: 50%; transform: translate(-50%, -120%);
  background: var(--ink); color: #fff; padding: 14px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 5000;
  transition: transform .4s cubic-bezier(.2,.8,.3,1.1);
}
.toast.show { transform: translate(-50%, 0); }
.toast.success { background: var(--success); }

/* ==========================================================
   WHATSAPP FLOAT
   ========================================================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 600;
  background: #25d366; color: #fff; border-radius: 50px; padding: 14px 22px;
  font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: all .25s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.03); }
.wa-float .pulse { position:absolute; top:0; left:0; right:0; bottom:0; border-radius:50px; background:rgba(37,211,102,.4); z-index:-1; animation:pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1 } 100% { transform: scale(1.35); opacity: 0 } }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .hero { padding: 60px 0 100px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-card { min-width: 0; }
  .hero-visual { margin-top: 30px; }
  .gate-box { padding: 34px 24px; }
  .wa-btn-nav span.tx { display: none; }
  .wa-btn-nav { padding: 10px 14px; }
}