/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #0a0e1a; color: #e0e6f0; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #00d4ff; --primary-dark: #0099cc; --secondary: #7c3aed;
  --accent: #ff6b35; --bg: #0a0e1a; --bg2: #0f1628; --bg3: #151c35;
  --card: #141c2e; --card2: #1a2440; --text: #e0e6f0; --text2: #8a9bb5;
  --border: #1e2d4a; --success: #22c55e; --warning: #f59e0b; --danger: #ef4444;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gradient); color: white; border: none;
  padding: .75rem 1.75rem; border-radius: 50px; font-weight: 600;
  font-size: .95rem; cursor: pointer; transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(0,212,255,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
  padding: .73rem 1.75rem; border-radius: 50px; font-weight: 600;
  cursor: pointer; transition: all .3s ease; font-size: .95rem;
}
.btn-secondary:hover { background: var(--primary); color: var(--bg); }
.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; }
.accent { color: var(--primary); }
.gradient-text {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
  display: inline-block; background: rgba(0,212,255,.15); color: var(--primary);
  border: 1px solid rgba(0,212,255,.3); padding: .35rem 1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-header h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: .75rem; color: var(--text); }
.section-header p { color: var(--text2); max-width: 560px; margin: 0 auto; font-size: .95rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0; transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(10,14,26,.95); backdrop-filter: blur(20px);
  padding: .8rem 0; box-shadow: 0 2px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: .5rem; }
.logo-icon { font-size: 1.6rem; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: white; }
.nav-links { display: flex; gap: 2rem; margin-left: auto; }
.nav-links a { color: var(--text2); font-weight: 500; font-size: .9rem; transition: color .3s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-admin-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--text2); font-size: .82rem; font-weight: 500;
  border: 1px solid var(--border); padding: .45rem .9rem;
  border-radius: 8px; transition: all .3s;
}
.nav-admin-btn:hover { color: var(--primary); border-color: rgba(0,212,255,.4); }
.nav-cta {
  background: var(--gradient); color: white; border: none;
  padding: .6rem 1.4rem; border-radius: 50px; font-weight: 600;
  font-size: .85rem; cursor: pointer; display: flex; align-items: center;
  gap: .4rem; transition: all .3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,212,255,.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: .5rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  overflow: hidden; padding: 8rem 1.5rem 4rem;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,212,255,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(124,58,237,.1) 0%, transparent 60%), var(--bg);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2300d4ff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bubbles { position: absolute; inset: 0; overflow: hidden; }
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.15), transparent);
  animation: float 8s infinite ease-in-out;
}
.bubble:nth-child(1){width:80px;height:80px;left:10%;top:20%;animation-delay:0s}
.bubble:nth-child(2){width:120px;height:120px;left:20%;top:60%;animation-delay:2s}
.bubble:nth-child(3){width:60px;height:60px;left:70%;top:10%;animation-delay:4s}
.bubble:nth-child(4){width:100px;height:100px;right:10%;top:40%;animation-delay:1s}
.bubble:nth-child(5){width:40px;height:40px;right:30%;top:70%;animation-delay:3s}
.bubble:nth-child(6){width:90px;height:90px;left:50%;top:30%;animation-delay:5s}
@keyframes float {
  0%,100%{transform:translateY(0) scale(1);opacity:.5}
  50%{transform:translateY(-30px) scale(1.1);opacity:1}
}
.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.3);
  color: var(--primary); padding: .4rem 1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.15;
  margin-bottom: 1.5rem; color: white; animation: fadeInUp .8s ease .2s both;
}
.hero p { font-size: 1.1rem; color: var(--text2); max-width: 560px; line-height: 1.8; margin-bottom: 2rem; animation: fadeInUp .8s ease .4s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; animation: fadeInUp .8s ease .6s both; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; animation: fadeInUp .8s ease .8s both; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .75rem; color: var(--text2); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-image { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 2; }
.fish-card-hero { width: 300px; height: 300px; display: flex; align-items: center; justify-content: center; position: relative; animation: heroFloat 4s ease-in-out infinite; }
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
.fish-emoji-big { font-size: 12rem; filter: drop-shadow(0 0 40px rgba(0,212,255,.5)); }
.fish-glow { position: absolute; inset: -20px; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,255,.2), transparent 70%); animation: glow 3s ease-in-out infinite; }
@keyframes glow { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }

/* ===== KATEGORI ===== */
.kategori { background: var(--bg2); padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.kategori-grid { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.kategori-item {
  display: flex; align-items: center; gap: .5rem; padding: .5rem 1.25rem;
  border-radius: 50px; border: 1px solid var(--border); color: var(--text2);
  cursor: pointer; transition: all .3s; font-size: .85rem; font-weight: 500; background: var(--card);
}
.kategori-item:hover, .kategori-item.active { border-color: var(--primary); color: var(--primary); background: rgba(0,212,255,.1); }

/* ===== PRODUK ===== */
.produk-section { padding: 5rem 0; background: var(--bg); }
.produk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; }
.produk-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem;
  overflow: hidden; transition: all .3s ease; animation: fadeInUp .6s ease both;
}
.produk-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,.4); box-shadow: 0 15px 40px rgba(0,0,0,.4),0 0 20px rgba(0,212,255,.1); }
.produk-img { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.produk-emoji { font-size: 5rem; filter: drop-shadow(0 5px 15px rgba(0,0,0,.3)); }
.produk-badge { position: absolute; top: .75rem; left: .75rem; background: var(--gradient); color: white; padding: .25rem .7rem; border-radius: 50px; font-size: .7rem; font-weight: 700; }
.produk-stok { position: absolute; top: .75rem; right: .75rem; background: rgba(34,197,94,.15); color: var(--success); border: 1px solid rgba(34,197,94,.3); padding: .2rem .6rem; border-radius: 50px; font-size: .7rem; font-weight: 600; }
.produk-stok.low { background: rgba(239,68,68,.15); color: var(--danger); border-color: rgba(239,68,68,.3); }
.produk-info { padding: 1.25rem; }
.produk-info h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: .4rem; }
.produk-desc { font-size: .8rem; color: var(--text2); margin-bottom: .75rem; line-height: 1.5; }
.produk-harga { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.harga-main { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.harga-coret { font-size: .8rem; color: var(--text2); text-decoration: line-through; }
.produk-actions { display: flex; gap: .5rem; }
.btn-detail, .btn-beli { flex: 1; padding: .55rem; border-radius: 8px; font-size: .8rem; font-weight: 600; cursor: pointer; border: none; display: flex; align-items: center; justify-content: center; gap: .35rem; transition: all .2s; }
.btn-detail { background: var(--card2); color: var(--text2); border: 1px solid var(--border); }
.btn-detail:hover { border-color: var(--primary); color: var(--primary); }
.btn-beli { background: var(--gradient); color: white; }
.btn-beli:hover { opacity: .9; transform: translateY(-1px); }
.no-produk { grid-column: 1/-1; text-align: center; padding: 4rem; color: var(--text2); font-size: 1.1rem; }
.no-produk span { font-size: 3rem; display: block; margin-bottom: 1rem; }

.produk-img.has-image { padding: 0; overflow: hidden; }
.produk-img-real { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.produk-card:hover .produk-img-real { transform: scale(1.06); }

/* ===== KEUNGGULAN ===== */
.keunggulan { padding: 5rem 0; background: var(--bg2); }
.keunggulan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.5rem; }
.keunggulan-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; transition: all .3s; opacity: 0; transform: translateY(20px); }
.keunggulan-card.animate-in { opacity: 1; transform: translateY(0); transition: all .5s ease; }
.keunggulan-card:hover { border-color: rgba(0,212,255,.3); transform: translateY(-4px); }
.k-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.keunggulan-card h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: .5rem; }
.keunggulan-card p { color: var(--text2); font-size: .9rem; line-height: 1.7; }

/* ===== CARA ORDER ===== */
.cara-order { padding: 5rem 0; background: var(--bg); }
.order-steps { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.step { flex: 1; min-width: 180px; max-width: 220px; text-align: center; padding: 2rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 1rem; position: relative; transition: all .3s; opacity: 0; transform: translateY(20px); }
.step.animate-in { opacity: 1; transform: translateY(0); transition: all .5s ease; }
.step:hover { border-color: rgba(0,212,255,.3); transform: translateY(-4px); }
.step-num { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: white; }
.step-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.step h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: .5rem; }
.step p { color: var(--text2); font-size: .82rem; line-height: 1.6; }
.step-arrow { color: var(--text2); font-size: 1.5rem; margin-top: 3.5rem; }
.order-cta { text-align: center; }

/* ===== TESTIMONI ===== */
.testimoni { padding: 5rem 0; background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; transition: all .3s; opacity: 0; transform: translateY(20px); }
.testi-card.animate-in { opacity: 1; transform: translateY(0); transition: all .5s ease; }
.testi-card.featured { border-color: rgba(0,212,255,.4); background: var(--card2); }
.testi-stars { font-size: 1.1rem; margin-bottom: 1rem; }
.testi-card p { color: var(--text2); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-user { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: .9rem; flex-shrink: 0; }
.testi-user strong { display: block; font-size: .9rem; color: white; }
.testi-user span { font-size: .8rem; color: var(--text2); }

/* ===== KONTAK ===== */
.kontak { padding: 5rem 0; background: var(--bg); }
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.kontak-info p { color: var(--text2); font-size: .9rem; line-height: 1.7; margin-bottom: 1.75rem; }
.kontak-items { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.75rem; }
.kontak-item { display: flex; align-items: center; gap: .75rem; color: var(--text2); font-size: .9rem; }
.kontak-item i { color: var(--primary); width: 20px; }
.sosmed { display: flex; gap: .75rem; }
.sosmed-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text2); font-size: 1rem; cursor: pointer; transition: all .3s; }
.sosmed-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.kontak-form { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; }
.kontak-form h3 { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: .75rem 1rem; color: var(--text); font-family: inherit; font-size: .9rem; transition: all .3s; outline: none; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,212,255,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text2); }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 1.5rem; text-align: center; color: var(--text2); font-size: .85rem; }

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 999;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  color: white; cursor: pointer; box-shadow: 0 4px 25px rgba(37,211,102,.5);
  transition: all .3s ease; text-decoration: none; animation: bounceIn 1s ease .5s both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37,211,102,.7); }
.wa-pulse { position: absolute; inset: -4px; border-radius: 50%; background: rgba(37,211,102,.3); animation: pulse 2s ease-in-out infinite; }
.wa-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: var(--card2); color: var(--text); padding: .4rem .9rem; border-radius: 8px; font-size: .8rem; white-space: nowrap; border: 1px solid var(--border); opacity: 0; pointer-events: none; transition: opacity .3s; }
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.3);opacity:0} }
@keyframes bounceIn { 0%{transform:scale(0);opacity:0} 60%{transform:scale(1.15)} 100%{transform:scale(1);opacity:1} }

/* ===== CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1000; width: 340px; border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 50px rgba(0,0,0,.6); border: 1px solid var(--border); opacity: 0; transform: translateY(20px); transition: all .4s ease; pointer-events: none; }
.chat-widget.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.chat-header { background: linear-gradient(135deg, #0099cc, #7c3aed); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.chat-header-info { display: flex; align-items: center; gap: .75rem; }
.chat-avatar { width: 38px; height: 38px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .72rem; color: white; border: 2px solid rgba(255,255,255,.3); }
.chat-header-info strong { display: block; font-size: .95rem; color: white; }
.chat-header-info small { color: rgba(255,255,255,.7); font-size: .75rem; display: flex; align-items: center; gap: .3rem; }
.online-dot { display: inline-block; width: 7px; height: 7px; background: #4ade80; border-radius: 50%; }
.chat-close { background: rgba(255,255,255,.15); border: none; color: white; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.chat-close:hover { background: rgba(255,255,255,.25); }
.chat-body { background: var(--bg2); max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.chat-body.open { max-height: 480px; }
.chat-messages { height: 260px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.chat-msg { display: flex; gap: .5rem; align-items: flex-start; }
.chat-msg.user { flex-direction: row-reverse; }
.msg-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 700; color: white; flex-shrink: 0; }
.msg-bubble { max-width: 75%; background: var(--card2); border: 1px solid var(--border); border-radius: 1rem; padding: .65rem .9rem; font-size: .82rem; line-height: 1.6; }
.chat-msg.user .msg-bubble { background: linear-gradient(135deg, var(--primary-dark), var(--secondary)); border-color: transparent; color: white; }
.msg-bubble p { margin-bottom: .25rem; }
.msg-time { font-size: .65rem; color: var(--text2); margin-top: .3rem; display: block; }
.chat-msg.user .msg-time { text-align: right; color: rgba(255,255,255,.6); }
.typing-indicator { display: flex; gap: .3rem; align-items: center; padding: .65rem .9rem !important; }
.typing-indicator span { width: 8px; height: 8px; background: var(--text2); border-radius: 50%; animation: typingDot 1.4s infinite ease-in-out; }
.typing-indicator span:nth-child(2){animation-delay:.2s}
.typing-indicator span:nth-child(3){animation-delay:.4s}
@keyframes typingDot { 0%,80%,100%{transform:scale(.8);opacity:.5} 40%{transform:scale(1.2);opacity:1} }
.chat-quick-replies { padding: .5rem 1rem; display: flex; flex-wrap: wrap; gap: .4rem; border-top: 1px solid var(--border); }
.chat-quick-replies button { background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.3); color: var(--primary); padding: .3rem .75rem; border-radius: 50px; font-size: .75rem; cursor: pointer; transition: all .2s; font-family: inherit; }
.chat-quick-replies button:hover { background: rgba(0,212,255,.2); }
.chat-input-area { display: flex; gap: .5rem; padding: .75rem 1rem; border-top: 1px solid var(--border); background: var(--card); }
.chat-input-area input { flex: 1; background: var(--bg2); border: 1px solid var(--border); border-radius: 50px; padding: .5rem 1rem; color: var(--text); font-size: .85rem; outline: none; font-family: inherit; }
.chat-input-area input:focus { border-color: var(--primary); }
.chat-input-area button { width: 36px; height: 36px; border-radius: 50%; background: var(--gradient); border: none; color: white; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-chat-btn { margin-top: .5rem; background: #25d366; border: none; color: white; padding: .4rem .9rem; border-radius: 50px; font-size: .75rem; cursor: pointer; display: inline-flex; align-items: center; gap: .3rem; font-family: inherit; font-weight: 600; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.8); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all .3s; padding: 1.5rem; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(.9); transition: transform .3s; }
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: var(--card2); border: 1px solid var(--border); color: var(--text2); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; transition: all .2s; z-index: 1; }
.modal-close:hover { border-color: var(--danger); color: var(--danger); }
.modal-produk { display: flex; flex-direction: column; }
.modal-img { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; border-radius: 1.25rem 1.25rem 0 0; overflow: hidden; }
.modal-detail { padding: 1.75rem; }
.modal-detail h2 { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: .75rem; }
.modal-desc { color: var(--text2); font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.modal-spec { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: .75rem 1rem; margin-bottom: 1rem; }
.modal-spec span { color: var(--text2); font-size: .85rem; display: flex; align-items: center; gap: .5rem; }
.modal-spec i { color: var(--primary); }
.modal-harga-wrap { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.harga-main.big { font-size: 1.5rem; }
.diskon-badge { background: rgba(34,197,94,.15); color: var(--success); border: 1px solid rgba(34,197,94,.3); padding: .2rem .7rem; border-radius: 50px; font-size: .8rem; font-weight: 700; }
.stok-info { font-size: .85rem; color: var(--text2); margin-bottom: 1rem; display: flex; align-items: center; gap: .4rem; }
.stok-info i { color: var(--primary); }
.stok-info.low { color: var(--danger); }
.stok-info.low i { color: var(--danger); }
.stok-warn { color: var(--danger); font-weight: 600; }
.modal-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--card2); border: 1px solid var(--border); color: var(--text); padding: .75rem 1.5rem; border-radius: 50px; font-size: .85rem; z-index: 3000; transition: transform .3s ease; box-shadow: 0 5px 30px rgba(0,0,0,.5); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .hero-image{display:none}
  .kontak-grid{grid-template-columns:1fr}
  .nav-links{display:none;flex-direction:column;gap:0;background:var(--bg2);position:absolute;top:100%;left:0;right:0;padding:1rem 1.5rem;border-bottom:1px solid var(--border)}
  .nav-links.open{display:flex}
  .nav-links a{padding:.75rem 0;border-bottom:1px solid var(--border);display:block}
  .hamburger{display:flex}
  .nav-container{position:relative}
  .nav-cta,.nav-admin-btn{font-size:.78rem;padding:.4rem .7rem}
  .section-header h2{font-size:1.7rem}
  .step-arrow{display:none}
}
@media(max-width:600px){
  .hero h1{font-size:2.2rem}
  .hero-actions{flex-direction:column}
  .hero-stats{gap:1rem}
  .stat-num{font-size:1.3rem}
  .produk-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}
  .chat-widget{width:calc(100vw - 3rem);right:1.5rem}
  .wa-float{bottom:5rem;right:1rem;width:52px;height:52px}
}
