/* ═══════════════════════════════════════════
   DRIPKLOSET — Full Design System CSS
   ═══════════════════════════════════════════ */

:root {
  --ink: #0a0a0a;
  --cream: #f4f1ea;
  --bone: #e5e0d5;
  --dk-red: #d10a2a;
  --gold: #bca05d;
  --muted: #88827e;
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: #111111;
  --transition: 0.15s ease-out;
  --space-unit: 1rem;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.25;
}
/* ── CURSOR ── */
.cursor { width:10px;height:10px;background:var(--dk-red);border-radius:50%;position:fixed;pointer-events:none;z-index:99999;transition:transform 0.1s,background 0.1s; }
.cursor-ring { width:36px;height:36px;border:1px solid rgba(200,16,46,0.5);border-radius:50%;position:fixed;pointer-events:none;z-index:99998;transition:all 0.08s; }
a,button,input,textarea,select { cursor: none !important; }
/* ── TOPBAR ── */
.topbar { background:var(--dk-red);padding:0.5rem;text-align:center;font-family:'Syne Mono',monospace;font-size:0.72rem;letter-spacing:0.15em;overflow:hidden;position:relative; }
.topbar-scroll { display:inline-flex;gap:4rem;animation:marquee 25s linear infinite;white-space:nowrap; }
.topbar-item { color:white; }
.topbar-dot { color:rgba(255,255,255,0.4); }
/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--cream);
}

.nav-logo span { color: var(--dk-red); }

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

.nav-links a:hover { color: var(--cream); transform: translateY(-1px); }

.nav-right { display: flex; gap: 1.5rem; align-items: center; }

.nav-cart {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  padding: 0.6rem 1.4rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-cart:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--dk-red);
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.open { right: 0; }

.mobile-menu-content {
  padding: 1.5rem 1.5rem 4rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mobile-nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mobile-auth-links { margin-top: auto; border-top: 1px solid var(--border); padding-top: 2rem; }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 50%, rgba(209, 10, 42, 0.05), transparent 40%);
}

.hero-left {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.eyebrow-line { width: 40px; height: 1px; background: var(--dk-red); }
.eyebrow-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dk-red);
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.1s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--cream);
  color: transparent;
}

.hero-title .red { color: var(--dk-red); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 3.5rem;
  animation: fadeUp 1s 0.2s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: fadeUp 1s 0.3s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.btn-primary {
  background: var(--dk-red);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #fefefe;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  padding: 1.25rem 2.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
}

.hero-right {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 35rem;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
  animation: float 10s ease-in-out infinite;
}

/* ── MARQUEE ── */
.marquee-strip {
  overflow: hidden;
  background: var(--dk-red);
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-inner { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-word {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  padding: 0 4rem;
}
.marquee-sep { color: rgba(255, 255, 255, 0.3); padding: 0 1rem; }

/* ── PRODUCTS ── */
.products { padding: 8rem 4rem; }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
}

.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dk-red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.filter-row { display: flex; gap: 0.75rem; }
.filter-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem 1.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
}

.filter-pill:hover, .filter-pill.on {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.product-card {
  position: relative;
  transition: var(--transition);
}

.product-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover .img-primary { transform: scale(1.1); }
.product-card:hover .img-secondary { opacity: 1 !important; transform: scale(1.1); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-card:hover .product-overlay { opacity: 1; }

.quick-add {
  background: var(--cream);
  color: var(--ink);
  border: none;
  width: auto;
  padding: 1rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  transform: translateY(20px);
}

.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: white; color: var(--dk-red); }

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.4rem 0.8rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.badge-new,.badge-New { background:var(--dk-red);color:white; }
.badge-hot,.badge-Hot { background:var(--gold);color:var(--ink); }
.badge-sale,.badge-Sale { background:white;color:var(--ink); }
.product-info { padding: 1.5rem 0.5rem; }
.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.product-cat {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.product-price-row { display: flex; align-items: baseline; gap: 0.75rem; }
.product-price { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 800; color: var(--cream); }
.old-price { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; opacity: 0.6; }

/* ── NEWSLETTER ── */
.newsletter {
  padding: 10rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(209, 10, 42, 0.08), transparent 70%);
  pointer-events: none;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.nl-form {
  display: flex;
  max-width: 540px;
  margin: 3.5rem auto 0;
  position: relative;
  z-index: 2;
}

.nl-input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.nl-input:focus { border-color: var(--cream); }
.nl-input::placeholder { color: #555; }

.nl-btn {
  background: var(--cream);
  color: var(--ink);
  border: none;
  padding: 0 2.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.nl-btn:hover { background: white; color: var(--dk-red); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 8rem 4rem 4rem;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-logo span { color: var(--dk-red); }

.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 2;
  max-width: 320px;
  margin-bottom: 2rem;
}

.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--muted);
  transition: var(--transition);
  font-family: 'Syne', sans-serif;
}

.social-link:hover {
  border-color: var(--cream);
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--cream);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-links a:hover { color: var(--cream); padding-left: 5px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.footer-copy span { color: var(--cream); font-weight: 700; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--cream);
  padding: 1.25rem 2.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink);
  z-index: 9999;
  transition: var(--transition);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.toast.show { transform: translateX(-50%) translateY(0); }
/* ── CHATBOT ── */
.dk-chat-bubble { position:fixed;bottom:2rem;right:2rem;z-index:8000;display:flex;flex-direction:column;align-items:flex-end;gap:0.75rem; }
.dk-chat-btn { width:60px;height:60px;background:var(--dk-red);border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 24px rgba(200,16,46,0.4);transition:all 0.3s cubic-bezier(0.34,1.56,0.64,1);position:relative; }
.dk-chat-btn:hover { transform:scale(1.1);box-shadow:0 6px 32px rgba(200,16,46,0.6); }
.dk-chat-btn.open { background:#333;box-shadow:0 4px 20px rgba(0,0,0,0.4); }
.dk-chat-icon { font-size:1.5rem;transition:all 0.3s; }
.dk-chat-btn.open .dk-chat-icon { transform:rotate(90deg); }
.dk-chat-notif { position:absolute;top:-4px;right:-4px;width:18px;height:18px;background:var(--gold);border-radius:50%;font-family:'Syne',sans-serif;font-size:0.6rem;font-weight:800;color:var(--ink);display:flex;align-items:center;justify-content:center;animation:bounceDot 2s infinite; }
.dk-chat-btn.open .dk-chat-notif { display:none; }
.dk-chat-window { position:fixed;bottom:6rem;right:2rem;width:370px;height:560px;background:var(--ink);border:1px solid #222;box-shadow:0 20px 60px rgba(0,0,0,0.6);display:flex;flex-direction:column;z-index:7999;transform:scale(0.8) translateY(40px);opacity:0;pointer-events:none;transition:all 0.35s cubic-bezier(0.34,1.56,0.64,1);transform-origin:bottom right;overflow:hidden; }
.dk-chat-window.open { transform:scale(1) translateY(0);opacity:1;pointer-events:all; }
.dk-chat-head { background:var(--dk-red);padding:1rem 1.25rem;display:flex;align-items:center;gap:0.875rem;flex-shrink:0; }
.dk-chat-avatar { width:42px;height:42px;background:rgba(255,255,255,0.15);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0; }
.dk-chat-head-name { font-family:'Syne',sans-serif;font-size:0.95rem;font-weight:800;color:white;letter-spacing:0.03em; }
.dk-chat-head-status { display:flex;align-items:center;gap:0.35rem;margin-top:0.15rem; }
.dk-status-dot { width:7px;height:7px;background:#4ade80;border-radius:50%;animation:pulseGreen 2s infinite; }
.dk-status-text { font-family:'DM Sans',sans-serif;font-size:0.7rem;color:rgba(255,255,255,0.75); }
.dk-chat-head-actions { display:flex;gap:0.5rem; }
.dk-head-btn { width:30px;height:30px;background:rgba(255,255,255,0.15);border:none;border-radius:50%;color:white;font-size:0.8rem;display:flex;align-items:center;justify-content:center;transition:background 0.2s; }
.dk-head-btn:hover { background:rgba(255,255,255,0.3); }
.dk-quick-actions { background:#111;border-bottom:1px solid #1e1e1e;padding:0.75rem;display:flex;gap:0.4rem;flex-wrap:wrap;flex-shrink:0; }
.dk-quick-btn { background:#1a1a1a;border:1px solid #2a2a2a;color:#aaa;padding:0.3rem 0.75rem;font-family:'Syne',sans-serif;font-size:0.62rem;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;transition:all 0.2s;white-space:nowrap; }
.dk-quick-btn:hover { background:var(--dk-red);border-color:var(--dk-red);color:white; }
.dk-messages { flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:0.875rem;scroll-behavior:smooth; }
.dk-messages::-webkit-scrollbar { width:3px; }
.dk-messages::-webkit-scrollbar-thumb { background:#333;border-radius:2px; }
.dk-msg { display:flex;gap:0.5rem;align-items:flex-end;animation:msgIn 0.3s ease; }
.dk-msg.user { flex-direction:row-reverse; }
.dk-msg-avatar { width:28px;height:28px;background:#1a1a1a;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.8rem;flex-shrink:0; }
.dk-msg.user .dk-msg-avatar { background:var(--dk-red); }
.dk-msg-content { max-width:80%;display:flex;flex-direction:column;gap:0.25rem; }
.dk-msg.user .dk-msg-content { align-items:flex-end; }
.dk-msg-bubble { padding:0.65rem 0.9rem;font-family:'DM Sans',sans-serif;font-size:0.82rem;line-height:1.6;color:var(--cream);background:#1a1a1a;border-radius:16px 16px 16px 4px; }
.dk-msg.user .dk-msg-bubble { background:var(--dk-red);color:white;border-radius:16px 16px 4px 16px; }
.dk-msg-time { font-size:0.6rem;color:#444;font-family:'DM Sans',sans-serif;padding:0 0.25rem; }
.dk-msg-options { display:flex;flex-wrap:wrap;gap:0.4rem;margin-top:0.4rem; }
.dk-opt-btn { background:transparent;border:1px solid var(--dk-red);color:var(--dk-red);padding:0.3rem 0.7rem;font-family:'Syne',sans-serif;font-size:0.68rem;font-weight:700;transition:all 0.2s;letter-spacing:0.05em; }
.dk-opt-btn:hover { background:var(--dk-red);color:white; }
.dk-opt-btn:disabled { opacity:0.4; }
.dk-typing { display:flex;gap:0.5rem;align-items:flex-end;animation:msgIn 0.3s ease; }
.dk-typing-bubble { background:#1a1a1a;padding:0.75rem 1rem;border-radius:16px 16px 16px 4px;display:flex;gap:4px;align-items:center; }
.dk-typing-dot { width:6px;height:6px;background:#555;border-radius:50%;animation:typingBounce 1.4s infinite; }
.dk-typing-dot:nth-child(2) { animation-delay:0.2s; }
.dk-typing-dot:nth-child(3) { animation-delay:0.4s; }
.dk-input-area { border-top:1px solid #1a1a1a;padding:0.875rem;display:flex;gap:0.5rem;align-items:flex-end;flex-shrink:0;background:#0d0d0d; }
.dk-input { flex:1;background:#1a1a1a;border:1px solid #2a2a2a;padding:0.65rem 0.875rem;color:var(--cream);font-family:'DM Sans',sans-serif;font-size:0.85rem;outline:none;resize:none;min-height:40px;max-height:100px;line-height:1.5;transition:border-color 0.2s; }
.dk-input:focus { border-color:var(--dk-red); }
.dk-input::placeholder { color:#444; }
.dk-send-btn { width:40px;height:40px;background:var(--dk-red);border:none;color:white;font-size:0.9rem;display:flex;align-items:center;justify-content:center;transition:all 0.2s;flex-shrink:0; }
.dk-send-btn:hover { background:#a00d24; }
.dk-send-btn:disabled { background:#333; }
.dk-whatsapp-bar { background:#075e54;padding:0.6rem 1rem;display:flex;align-items:center;justify-content:space-between;flex-shrink:0;border-top:1px solid #064d46; }
.dk-wa-text { font-family:'DM Sans',sans-serif;font-size:0.72rem;color:rgba(255,255,255,0.8); }
.dk-wa-btn { background:#25d366;color:white;border:none;padding:0.35rem 0.9rem;font-family:'Syne',sans-serif;font-size:0.65rem;font-weight:800;letter-spacing:0.1em;transition:background 0.2s; }
.dk-wa-btn:hover { background:#1ebe5d; }
/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes slowSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(200,16,46,0.4)} 50%{box-shadow:0 0 0 12px rgba(200,16,46,0)} }
@keyframes pulseGreen { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,0.5)} 50%{box-shadow:0 0 0 5px rgba(74,222,128,0)} }
@keyframes msgIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
@keyframes typingBounce { 0%,60%,100%{transform:translateY(0);background:#555} 30%{transform:translateY(-6px);background:var(--dk-red)} }
@keyframes bounceDot { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }
/* ── AUTH PAGES ── */
.auth-page {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.auth-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 35rem;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -0.05em;
  user-select: none;
  z-index: 1;
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: #111;
  border: 1px solid var(--border);
  padding: 4rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.auth-card:hover { border-color: var(--muted); }

.auth-header { margin-bottom: 3rem; text-align: center; }
.auth-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.auth-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.auth-field { margin-bottom: 1.75rem; }
.auth-field label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--muted);
}
.auth-field input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.auth-field input:focus { border-color: var(--cream); }

.auth-btn { width: 100%; margin-top: 1rem; }

.auth-footer { margin-top: 2.5rem; text-align: center; border-top: 1px solid var(--border); padding-top: 2rem; }
.auth-footer p { font-size: 0.85rem; color: var(--muted); }
.auth-footer a { color: var(--cream); text-decoration: none; font-weight: 700; transition: var(--transition); }
.auth-footer a:hover { color: var(--dk-red); }

.field-errors { margin-top: 0.5rem; }
.field-errors p { font-size: 0.75rem; color: var(--dk-red); font-weight: 600; }

/* ── ADMIN PANEL ── */
.admin-panel { display: flex; min-height: 100vh; background: #0a0a0a; }

.admin-sidebar {
  width: 280px;
  border-right: 1px solid var(--border);
  padding: 3rem 2rem;
  background: #0d0d0d;
}

.sidebar-header { margin-bottom: 4rem; }
.sidebar-header h3 { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--dk-red); }
.sidebar-header p { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.sidebar-nav { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-nav a {
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.75rem 0;
  transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--cream); }

.admin-main { flex: 1; padding: 4rem 6rem; overflow-y: auto; }

.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4rem; }
.admin-title { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; }
.admin-user-pill {
  background: var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.kpi-card {
  background: #111;
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: var(--transition);
}
.kpi-card:hover { border-color: var(--muted); transform: translateY(-5px); }
.kpi-label { font-size: 0.65rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.2em; }
.kpi-value { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; margin-top: 0.5rem; color: var(--cream); }

.admin-sections-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; }
.admin-card { background: #111; border: 1px solid var(--border); padding: 2.5rem; }
.admin-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.admin-card-header h3 { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; }
.view-all { font-size: 0.75rem; color: var(--dk-red); text-decoration: none; font-weight: 700; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 1.5rem 0; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
.status-badge { padding: 0.25rem 0.6rem; font-size: 0.6rem; font-weight: 800; text-transform: uppercase; border-radius: 4px; }
.status-badge.paid { background: rgba(0, 255, 100, 0.1); color: #00ff64; }
.status-badge.pending { background: rgba(255, 193, 7, 0.1); color: #ffc107; }

.quick-post-form { display: flex; flex-direction: column; gap: 1.5rem; }
.quick-post-form .form-row { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; }
.quick-post-form input, .quick-post-form select {
  background: transparent;
  border: 1px solid var(--border);
  padding: 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.quick-post-form input:focus { border-color: var(--cream); }

@media (max-width: 1280px) {
  .admin-panel { flex-direction: column; }
  .admin-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 2rem; }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; }
  .admin-main { padding: 3rem 2rem; }
  .admin-sections-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT PDP (DETAIL) ── */
.product-pdp {
  display: flex;
  min-height: 100vh;
  padding-top: 60px; /* Offset for topbar/nav */
}

.pdp-gallery {
  flex: 1.5;
  border-right: 1px solid var(--border);
}

.pdp-image-wrap {
  width: 100%;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  min-height: 80vh;
  padding: 4rem;
}
.pdp-image-wrap img { width: 100%; max-width: 550px; height: auto; object-fit: contain; display: block; }
.pdp-image-wrap.empty-image { font-size: 8rem; }

.pdp-info-wrap {
  flex: 1;
  padding: 4rem;
  background: #0a0a0a;
}

.pdp-sticky-info {
  position: sticky;
  top: 100px;
}

.pdp-breadcrumb {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2rem;
}
.pdp-breadcrumb a { color: var(--muted); text-decoration: none; transition: var(--transition); }
.pdp-breadcrumb a:hover { color: var(--cream); }

.pdp-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pdp-price {
  font-family: 'Syne Mono', monospace;
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.pdp-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bone);
  margin-bottom: 3.5rem;
}

.pdp-actions {
  margin-bottom: 4rem;
}

.pdp-meta {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.meta-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}
.meta-label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.meta-value { color: var(--bone); text-align: right; }

@media (max-width: 960px) {
  .product-pdp { flex-direction: column; }
  .pdp-gallery { border-right: none; border-bottom: 1px solid var(--border); }
  .pdp-info-wrap { padding: 3rem 1.5rem; }
/* ── CART PAGE ── */
.cart-page {
  padding: 8rem 4rem;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.cart-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 35rem;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -0.05em;
  user-select: none;
  z-index: -1;
  pointer-events: none;
}

.cart-container { max-width: 1400px; margin: 0 auto; }

.cart-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.cart-title { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; }
.cart-count-text { font-family: 'Syne Mono', monospace; font-size: 1rem; color: var(--muted); }

.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.cart-items-list { display: flex; flex-direction: column; gap: 2rem; }

.cart-item-row {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-img {
  width: 120px;
  height: 150px;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.item-emoji { font-size: 3rem; }

.summary-card {
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 3rem;
  position: sticky;
  top: 100px;
}

.summary-title { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 0.85rem; color: var(--muted); }
.summary-row.total { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1.5rem; font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--cream); margin-bottom: 2.5rem; }

/* ── CHECKOUT PAGE ── */
.checkout-page {
  padding: 8rem 1.5rem 4rem;
  min-height: 80vh;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.checkout-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.checkout-summary-col {
  background: #0a0a0a;
  padding: 3rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.checkout-summary-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-link-btn, .nav-right .user-info, .nav-right .btn-primary { display: none; } /* Hide auth links on desktop nav */
  .mobile-menu-btn { display: flex; }
  
  .hero { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .hero-right { display: none; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-desc { font-size: 0.95rem; }
  .marquee-word { padding: 0 2rem; }
  
  .products { padding: 4rem 1.5rem; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 3rem; }
  .filter-row { overflow-x: auto; padding-bottom: 0.5rem; width: 100%; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  
  .cart-page { padding: 4rem 1.5rem; }
  .cart-grid { grid-template-columns: 1fr; gap: 3rem; }
  .summary-card { padding: 2rem; position: static; }

  .checkout-grid { grid-template-columns: 1fr; gap: 3rem; }
  .checkout-summary-col { padding: 2rem; position: static; }

  .newsletter { padding: 6rem 1.5rem; }
  .nl-form { flex-direction: column; gap: 1rem; }
  .nl-btn { padding: 1.25rem; }

  footer { padding: 4rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .product-img { aspect-ratio: 1; }
  .kpi-grid { grid-template-columns: 1fr; }
  .admin-sections-grid { grid-template-columns: 1fr; }
  
  .cart-item-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cart-item-img { width: 100%; height: 250px; }
  .cart-item-price { align-self: flex-start; margin-top: -1rem; margin-bottom: 1rem;}
}
/* ── CHECKOUT PAGE ── */
.checkout-page {
  padding: 10rem 4rem 6rem;
  min-height: 90vh;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.checkout-title {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.checkout-form-col {
  padding-right: 2rem;
}

.checkout-summary-col {
  position: sticky;
  top: 10rem;
  height: fit-content;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 3rem;
  align-self: start;
}

.checkout-summary-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dk-red);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.checkout-item-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.checkout-item-img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  background: var(--ink);
}

.checkout-item-details h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.checkout-item-details p {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-totals {
  margin-top: 2rem;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.checkout-total-row.grand-total {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--cream);
}

@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .checkout-form-col {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .checkout-page {
    padding: 8rem 1.5rem 4rem;
  }
  .checkout-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .checkout-summary-col {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .mobile-stack {
    grid-template-columns: 1fr !important;
  }
}

.checkout-page .btn-primary {
  z-index: 10;
  position: relative;
}
