/* ============================================================
   Zikaya — Design System
   Display: Plus Jakarta Sans · Body: Inter
   Coral accent, hairline borders, layered shadows, dark footer
   ============================================================ */

:root {
  --zk-primary: #f44f4f;
  --zk-primary-dark: #e33e3e;
  --zk-primary-soft: #fff1f1;
  --zk-primary-grad: linear-gradient(135deg, #ff6b5e 0%, #f43f5e 100%);
  --zk-ink: #10131f;
  --zk-ink-2: #2a2f42;
  --zk-muted: #626b7f;
  --zk-faint: #98a0b3;
  --zk-bg: #fafbfd;
  --zk-surface: #ffffff;
  --zk-line: rgba(16, 19, 31, .07);
  --zk-pink: #fdecee;
  --zk-blue: #e8effc;
  --zk-yellow: #fdf1d7;
  --zk-teal: #dff5f1;
  --zk-purple: #f0eafe;
  --zk-green: #e5f6ec;
  --zk-radius: 16px;
  --zk-radius-sm: 10px;
  --zk-shadow-sm: 0 1px 2px rgba(16,19,31,.05);
  --zk-shadow-md: 0 4px 12px -2px rgba(16,19,31,.07), 0 12px 32px -8px rgba(16,19,31,.08);
  --zk-shadow-lg: 0 8px 20px -4px rgba(16,19,31,.10), 0 24px 56px -16px rgba(16,19,31,.14);
  --zk-font-display: "Plus Jakarta Sans", "Inter", sans-serif;
  --zk-font-body: "Inter", "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--zk-font-body);
  background: var(--zk-bg);
  color: var(--zk-ink);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, .zk-h2, .zk-brand, .zk-price-card .amount, .zk-stat .v {
  font-family: var(--zk-font-display);
  letter-spacing: -0.022em;
}

a { text-decoration: none; color: inherit; transition: color .15s ease; }
a:hover { color: var(--zk-primary); }

::selection { background: var(--zk-primary); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d5dae3; border-radius: 6px; border: 2px solid var(--zk-bg); }
::-webkit-scrollbar-thumb:hover { background: #b9c0ce; }

img { user-select: none; }

/* ---------- Navbar ---------- */
.zk-navbar {
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--zk-line);
  padding: .75rem 0;
}
.zk-brand {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--zk-ink);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.zk-brand .zk-logo-dot {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--zk-primary-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  box-shadow: 0 4px 12px -2px rgba(244, 63, 94, .45);
}
.zk-nav-link {
  color: var(--zk-muted);
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: -0.01em;
  padding: .5rem .85rem !important;
  border-radius: 9px;
  transition: color .15s ease, background .15s ease;
}
.zk-nav-link:hover { color: var(--zk-ink); }
.zk-nav-link.active { color: var(--zk-primary); background: var(--zk-primary-soft); }

/* ---------- Buttons ---------- */
.btn-zk {
  background: var(--zk-primary-grad);
  border: 0;
  color: #fff;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: -0.01em;
  padding: .62rem 1.4rem;
  border-radius: 11px;
  box-shadow: 0 4px 14px -4px rgba(244, 63, 94, .5), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .15s ease, box-shadow .2s ease, filter .15s ease;
}
.btn-zk:hover, .btn-zk:focus {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 8px 22px -6px rgba(244, 63, 94, .55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-zk:active { transform: translateY(0); filter: brightness(.97); }
.btn-zk:disabled { opacity: .55; transform: none; box-shadow: none; }

.btn-zk-outline {
  background: #fff;
  border: 1px solid rgba(244, 79, 79, .28);
  color: var(--zk-primary);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: -0.01em;
  padding: .5rem 1.05rem;
  border-radius: 10px;
  transition: all .15s ease;
}
.btn-zk-outline:hover {
  background: var(--zk-primary-soft);
  color: var(--zk-primary-dark);
  border-color: var(--zk-primary);
}

.btn-zk-dark {
  background: var(--zk-ink); color: #fff; border: 0;
  font-weight: 700; font-size: .84rem; padding: .62rem 1.4rem; border-radius: 11px;
  box-shadow: 0 4px 14px -4px rgba(16,19,31,.4);
  transition: transform .15s ease, box-shadow .2s ease;
}
.btn-zk-dark:hover { background: #1c2133; color: #fff; transform: translateY(-1px); box-shadow: 0 8px 22px -6px rgba(16,19,31,.45); }

:focus-visible { outline: 2px solid rgba(244, 79, 79, .5); outline-offset: 2px; }

/* credit chips */
.zk-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .74rem; font-weight: 700; letter-spacing: -0.01em;
  border-radius: 999px; padding: .38rem .8rem;
  border: 1px solid var(--zk-line); background: #fff; color: var(--zk-ink);
  box-shadow: var(--zk-shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.zk-chip:hover { transform: translateY(-1px); box-shadow: var(--zk-shadow-md); color: var(--zk-ink); }
.zk-chip .bi { font-size: .8rem; }
.zk-chip-cc { color: #0d9488; }
.zk-chip-pc { color: #7c3aed; }

/* ---------- Eyebrow labels ---------- */
.zk-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--zk-font-display);
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--zk-primary);
  margin-bottom: .6rem;
}
.zk-eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--zk-primary-grad); }

/* ---------- Hero ---------- */
.zk-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 4.75rem 0 4rem;
}
.zk-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 340px at 12% 8%, rgba(244,63,94,.09), transparent 65%),
    radial-gradient(520px 320px at 88% 12%, rgba(124,58,237,.08), transparent 65%),
    radial-gradient(460px 300px at 50% 105%, rgba(13,148,136,.07), transparent 65%);
}
.zk-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(16,19,31,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}
.zk-hero > .container { position: relative; z-index: 2; }
.zk-hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.zk-hero h1 .accent {
  background: var(--zk-primary-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zk-hero-sub { color: var(--zk-muted); max-width: 540px; margin: 1rem auto 0; font-size: .95rem; }

.zk-search {
  max-width: 560px;
  margin: 1.75rem auto 0;
  position: relative;
}
.zk-search input {
  width: 100%;
  border: 1px solid var(--zk-line);
  background: #fff;
  border-radius: 14px;
  padding: 1rem 3.6rem 1rem 1.3rem;
  font-size: .9rem;
  box-shadow: var(--zk-shadow-md);
  transition: border-color .15s ease, box-shadow .2s ease;
}
.zk-search input:focus { outline: none; border-color: rgba(244,79,79,.5); box-shadow: var(--zk-shadow-md), 0 0 0 4px rgba(244,63,94,.1); }
.zk-search button {
  position: absolute; right: 7px; top: 7px; bottom: 7px;
  width: 48px; border: 0; border-radius: 10px;
  background: var(--zk-primary-grad); color: #fff;
  box-shadow: 0 3px 10px -3px rgba(244,63,94,.5);
  transition: filter .15s ease;
}
.zk-search button:hover { filter: brightness(1.06); }

/* floating icons */
.zk-float-ico {
  position: absolute; z-index: 1;
  width: 54px; height: 54px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  background: #fff;
  box-shadow: var(--zk-shadow-md);
  animation: zkFloat 5.5s ease-in-out infinite;
}
@keyframes zkFloat {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-11px) rotate(1.5deg); }
}
@media (max-width: 991px) { .zk-float-ico { display: none; } }

/* ---------- Sections ---------- */
.zk-section { padding: 3.75rem 0; }
.zk-h2 { font-weight: 800; font-size: 1.55rem; margin-bottom: .4rem; }
.zk-h2-bar { width: 44px; height: 4px; background: var(--zk-primary-grad); border-radius: 4px; margin-top: .7rem; }
.zk-muted { color: var(--zk-muted); }

/* ---------- Categories ---------- */
.zk-cat {
  background: #fff;
  border: 1px solid var(--zk-line);
  border-radius: var(--zk-radius);
  padding: 1.5rem 1rem 1.2rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--zk-shadow-sm);
  transition: transform .2s cubic-bezier(.2,.7,.3,1.2), box-shadow .2s ease, border-color .2s ease;
  display: block;
}
.zk-cat:hover {
  transform: translateY(-5px);
  box-shadow: var(--zk-shadow-md);
  border-color: rgba(244,79,79,.25);
  color: var(--zk-ink);
}
.zk-cat .ico {
  width: 56px; height: 56px; border-radius: 16px;
  margin: 0 auto .85rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  transition: transform .2s ease;
}
.zk-cat:hover .ico { transform: scale(1.07); }
.zk-cat .name { font-weight: 700; font-size: .88rem; letter-spacing: -0.01em; }
.zk-cat .cnt { font-size: .72rem; color: var(--zk-faint); margin-top: .1rem; }

/* ---------- Feature cards ---------- */
.zk-feat {
  border-radius: var(--zk-radius);
  padding: 1.7rem 1.5rem;
  height: 100%;
  border: 1px solid rgba(16,19,31,.04);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.zk-feat:hover { transform: translateY(-3px); box-shadow: var(--zk-shadow-md); }
.zk-feat::after {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.zk-feat .ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff; margin-bottom: 1.1rem;
  box-shadow: 0 6px 14px -4px rgba(16,19,31,.22);
}
.zk-feat h6 { font-weight: 800; font-size: .95rem; }
.zk-feat p { font-size: .8rem; color: var(--zk-muted); margin: 0; line-height: 1.55; }
.bg-pink { background: linear-gradient(150deg, #fdecee, #fdf3f4); }
.bg-blue { background: linear-gradient(150deg, #e8effc, #eef4fd); }
.bg-yellow { background: linear-gradient(150deg, #fdf1d7, #fdf7e7); }
.bg-teal { background: linear-gradient(150deg, #dff5f1, #eafaf7); }
.bg-purple { background: linear-gradient(150deg, #f0eafe, #f6f1ff); }
.bg-green-soft { background: linear-gradient(150deg, #e5f6ec, #eefaf2); }

/* ---------- Mini strip cards ---------- */
.zk-mini-card {
  background: #fff; border: 1px solid var(--zk-line); border-radius: 12px;
  padding: .55rem .8rem; display: flex; align-items: center; gap: .65rem;
  box-shadow: var(--zk-shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.zk-mini-card:hover { transform: translateY(-2px); box-shadow: var(--zk-shadow-md); color: var(--zk-ink); }
.zk-mini-card .ico {
  width: 34px; height: 34px; border-radius: 9px; flex: 0 0 34px;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.zk-mini-card .t { font-size: .71rem; color: var(--zk-muted); line-height: 1.3; }
.zk-mini-card .s { font-size: .72rem; font-weight: 700; }
.zk-stars { color: #f59e0b; font-size: .66rem; letter-spacing: .04em; }
.zk-stars .cnt { color: var(--zk-faint); font-weight: 600; }

/* ---------- Product cards ---------- */
.zk-doc-card {
  background: #fff; border: 1px solid var(--zk-line);
  border-radius: var(--zk-radius); overflow: hidden;
  height: 100%;
  box-shadow: var(--zk-shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.zk-doc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--zk-shadow-lg);
  border-color: rgba(244,79,79,.2);
}
.zk-doc-thumb { position: relative; display: block; overflow: hidden; }
.zk-doc-thumb img {
  width: 100%; height: 190px; object-fit: cover; display: block;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.zk-doc-card:hover .zk-doc-thumb img { transform: scale(1.045); }
.zk-doc-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: .66rem; font-weight: 700; letter-spacing: .02em;
  padding: .3rem .6rem; border-radius: 8px;
  background: rgba(255,255,255,.94); color: var(--zk-ink);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(16,19,31,.08);
}
.zk-doc-badge.cc { color: #0d9488; }
.zk-doc-badge.pc { color: #7c3aed; }
.zk-doc-body { padding: .95rem 1.05rem 1.05rem; display: flex; flex-direction: column; flex: 1; }
.zk-doc-meta { display: flex; align-items: center; justify-content: space-between; font-size: .72rem; color: var(--zk-faint); margin-bottom: .45rem; font-weight: 600; }
.zk-doc-type { font-weight: 700; color: var(--zk-primary); letter-spacing: .01em; }
.zk-doc-title { font-family: var(--zk-font-display); font-weight: 700; font-size: .9rem; line-height: 1.4; letter-spacing: -0.012em; color: var(--zk-ink); }
.zk-doc-title:hover { color: var(--zk-primary); }
.zk-doc-foot { margin-top: auto; padding-top: .75rem; display: flex; align-items: center; justify-content: space-between; }
.zk-price { font-family: var(--zk-font-display); font-weight: 800; color: var(--zk-ink); font-size: .98rem; letter-spacing: -0.02em; }
.zk-price small { color: var(--zk-faint); font-weight: 600; font-size: .7rem; }
.zk-sales { font-size: .72rem; color: var(--zk-faint); font-weight: 600; }

/* ---------- Panels ---------- */
.zk-panel {
  background: var(--zk-surface); border: 1px solid var(--zk-line);
  border-radius: var(--zk-radius); padding: 1.5rem;
  box-shadow: var(--zk-shadow-sm);
}
.zk-panel + .zk-panel { margin-top: 1.2rem; }

/* ---------- Filters ---------- */
.zk-filter .form-check-label { font-size: .83rem; color: var(--zk-ink-2); font-weight: 500; }
.zk-filter .form-check-input:checked { background-color: var(--zk-primary); border-color: var(--zk-primary); }
.zk-filter h6 { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--zk-faint); margin: 1.35rem 0 .65rem; }
.zk-filter h6:first-child { margin-top: 0; }
.form-range::-webkit-slider-thumb { background: var(--zk-primary); }
.form-range::-moz-range-thumb { background: var(--zk-primary); }

/* ---------- Product page ---------- */
.zk-preview-frame {
  border-radius: var(--zk-radius); overflow: hidden;
  border: 1px solid var(--zk-line); position: relative; background: #fff;
  box-shadow: var(--zk-shadow-md);
}
.zk-preview-frame img { width: 100%; display: block; }
.zk-preview-watermark {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.zk-preview-watermark span {
  transform: rotate(-18deg); font-family: var(--zk-font-display);
  font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em;
  color: rgba(16,19,31,.07); white-space: nowrap;
}
.zk-thumb-strip img {
  width: 78px; height: 58px; object-fit: cover;
  border-radius: 9px; border: 2px solid transparent; cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.zk-thumb-strip img:hover { transform: translateY(-2px); }
.zk-thumb-strip img.active { border-color: var(--zk-primary); }

.zk-buy-option {
  border: 1.5px solid var(--zk-line); border-radius: 12px;
  padding: .85rem 1rem; display: flex; align-items: center; gap: .8rem;
  cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.zk-buy-option:hover { border-color: rgba(244,79,79,.4); }
.zk-buy-option.selected { border-color: var(--zk-primary); background: var(--zk-primary-soft); }
.zk-buy-option .ico { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex: 0 0 40px; }

.zk-spec dt { font-size: .76rem; color: var(--zk-faint); font-weight: 600; }
.zk-spec dd { font-size: .84rem; font-weight: 600; }

/* ---------- Pricing ---------- */
.zk-price-card {
  background: #fff; border: 1px solid var(--zk-line); border-radius: var(--zk-radius);
  padding: 1.9rem 1.8rem; height: 100%; position: relative; text-align: center;
  box-shadow: var(--zk-shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease;
}
.zk-price-card:hover { transform: translateY(-4px); box-shadow: var(--zk-shadow-lg); }
.zk-price-card.popular { border: 0; box-shadow: 0 0 0 2px var(--zk-primary), var(--zk-shadow-lg); }
.zk-price-card .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--zk-primary-grad); color: #fff;
  font-size: .64rem; font-weight: 800; letter-spacing: .1em;
  padding: .3rem .85rem; border-radius: 999px;
  box-shadow: 0 4px 10px -3px rgba(244,63,94,.5);
}
.zk-price-card .amount { font-size: 2.1rem; font-weight: 800; }
.zk-price-card .pc { font-weight: 800; color: #7c3aed; }

/* ---------- Tables ---------- */
.zk-table { font-size: .83rem; }
.zk-table thead th {
  font-size: .66rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--zk-faint); border-bottom: 1px solid var(--zk-line); font-weight: 800;
  padding-bottom: .65rem;
}
.zk-table td { vertical-align: middle; padding: .75rem .5rem; border-color: var(--zk-line); color: var(--zk-ink-2); }
.zk-table tbody tr { transition: background .12s ease; }
.zk-table tbody tr:hover { background: rgba(16,19,31,.018); }

/* ---------- Badges ---------- */
.zk-status { font-size: .66rem; font-weight: 700; letter-spacing: .03em; padding: .3rem .65rem; border-radius: 999px; }
.st-published, .st-paid, .st-available, .st-active { background: var(--zk-green); color: #15803d; }
.st-pending, .st-processing, .st-review { background: var(--zk-yellow); color: #b45309; }
.st-held, .st-quarantined { background: var(--zk-pink); color: #b91c1c; }
.st-draft { background: #eef1f5; color: #64748b; }
.st-rejected, .st-removed, .st-reversed { background: #fee2e2; color: #991b1b; }
.st-community { background: var(--zk-teal); color: #0f766e; }
.st-premium { background: var(--zk-purple); color: #7c3aed; }

/* ---------- Stats ---------- */
.zk-stat {
  background: #fff; border: 1px solid var(--zk-line); border-radius: var(--zk-radius);
  padding: 1.25rem 1.35rem; box-shadow: var(--zk-shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
}
.zk-stat:hover { transform: translateY(-2px); box-shadow: var(--zk-shadow-md); }
.zk-stat .v { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.zk-stat .l { font-size: .74rem; color: var(--zk-faint); font-weight: 600; }
.zk-stat .bi { font-size: 1.25rem; }

/* ---------- Upload studio ---------- */
.zk-dropzone {
  border: 2px dashed rgba(244,79,79,.3); border-radius: var(--zk-radius);
  background: var(--zk-primary-soft);
  padding: 2.5rem 1rem; text-align: center; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.zk-dropzone:hover { background: #ffe9e9; border-color: rgba(244,79,79,.55); }
.zk-dropzone .bi { font-size: 2.1rem; color: var(--zk-primary); }
.zk-step-pill { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; color: var(--zk-faint); }
.zk-step-pill .n { width: 26px; height: 26px; border-radius: 50%; background: #eef1f5; display: inline-flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; }
.zk-step-pill.on { color: var(--zk-primary); }
.zk-step-pill.on .n { background: var(--zk-primary-grad); color: #fff; }

/* ---------- Footer (dark) ---------- */
.zk-footer {
  background: var(--zk-ink);
  color: rgba(255,255,255,.72);
  padding: 3.5rem 0 1.6rem;
  margin-top: 4rem;
  font-size: .84rem;
  position: relative;
  overflow: hidden;
}
.zk-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(500px 260px at 8% 0%, rgba(244,63,94,.16), transparent 65%),
    radial-gradient(440px 240px at 95% 100%, rgba(124,58,237,.14), transparent 65%);
}
.zk-footer > .container { position: relative; }
.zk-footer .zk-brand { color: #fff; }
.zk-footer h6 { font-weight: 800; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .95rem; }
.zk-footer a { display: inline-block; color: rgba(255,255,255,.62); padding: .24rem 0; transition: color .15s ease, transform .15s ease; }
.zk-footer a:hover { color: #fff; transform: translateX(2px); }
.zk-footer h6 + a, .zk-footer a { display: block; }
.zk-footer .legal-note { font-size: .73rem; color: rgba(255,255,255,.38); line-height: 1.6; }
.zk-footer .zk-muted { color: rgba(255,255,255,.55) !important; }
.zk-footer .zk-divider { border-top-color: rgba(255,255,255,.09); }

/* ---------- Misc ---------- */
.zk-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--zk-purple); color: #7c3aed;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .78rem; font-family: var(--zk-font-display);
}
.zk-divider { border-top: 1px solid var(--zk-line); margin: 1.25rem 0; }
.zk-note { font-size: .75rem; color: var(--zk-faint); }
.zk-timeline { border-left: 2px solid var(--zk-line); margin-left: .5rem; padding-left: 1.25rem; }
.zk-timeline .ev { position: relative; margin-bottom: 1.05rem; font-size: .83rem; }
.zk-timeline .ev::before {
  content: ""; position: absolute; left: -1.58rem; top: .32rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--zk-primary-grad);
  box-shadow: 0 0 0 3px #fff;
}
.zk-timeline .ev .d { font-size: .7rem; color: var(--zk-faint); }

.nav-pills { gap: .35rem; }
.nav-pills .nav-link { color: var(--zk-muted); font-weight: 700; font-size: .82rem; border-radius: 10px; padding: .5rem .95rem; transition: all .15s ease; }
.nav-pills .nav-link:hover { color: var(--zk-ink); background: rgba(16,19,31,.04); }
.nav-pills .nav-link.active { background: var(--zk-ink); color: #fff; }

.form-control, .form-select {
  font-size: .87rem; border: 1px solid var(--zk-line); border-radius: 10px;
  padding: .55rem .8rem; color: var(--zk-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(244,79,79,.55);
  box-shadow: 0 0 0 4px rgba(244,63,94,.1);
}
.form-label { letter-spacing: -0.005em; }
.form-check-input { border-color: #d3d8e0; }
.form-check-input:checked { background-color: var(--zk-primary); border-color: var(--zk-primary); }
.form-check-input:focus { box-shadow: 0 0 0 .18rem rgba(244,63,94,.15); border-color: rgba(244,79,79,.5); }
.form-check-label { font-weight: 500; }

.breadcrumb-item a { color: var(--zk-muted); font-weight: 600; }
.breadcrumb-item.active { color: var(--zk-faint); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--zk-faint); }

.dropdown-menu {
  border: 1px solid var(--zk-line); border-radius: 13px;
  box-shadow: var(--zk-shadow-lg); padding: .5rem;
}
.zk-mega { margin-top: .6rem; }
.zk-mega-h {
  font-family: var(--zk-font-display);
  font-size: .64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--zk-faint); padding: .3rem .8rem .5rem;
}
.zk-mega .dropdown-item { font-size: .83rem; }
.zk-mega .dropdown-item .bi { color: var(--zk-faint); width: 1rem; }
@media (max-width: 991px) {
  .zk-mega { position: static !important; transform: none !important; box-shadow: none; border: 0; border-top: 1px solid var(--zk-line); border-radius: 0; }
  .zk-mega .row { min-width: 0 !important; }
}
.dropdown-item { border-radius: 8px; font-weight: 500; padding: .45rem .8rem; }
.dropdown-item:hover { background: var(--zk-primary-soft); color: var(--zk-primary); }

.modal-content { border: 0; box-shadow: var(--zk-shadow-lg); }

.alert { border-radius: 12px; }

/* ---------- Toast ---------- */
.zk-toast-wrap { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 2000; display: flex; flex-direction: column; gap: .6rem; }
.zk-toast {
  background: rgba(16,19,31,.94); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 12px; padding: .8rem 1.15rem; font-size: .82rem;
  box-shadow: var(--zk-shadow-lg);
  display: flex; align-items: center; gap: .65rem;
  animation: zkIn .3s cubic-bezier(.2,.8,.3,1.2);
  max-width: 360px;
}
.zk-toast .bi { color: #4ade80; flex-shrink: 0; }
@keyframes zkIn { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }

/* ---------- Scroll reveal ---------- */
.zk-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1); }
.zk-reveal.zk-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .zk-reveal { opacity: 1; transform: none; transition: none; }
  .zk-float-ico { animation: none; }
}

.zk-hero-band { background: linear-gradient(180deg, #fff 0%, var(--zk-bg) 100%); }

/* ---------- Font Awesome compatibility (PHP build uses FA, not Bootstrap Icons) ---------- */
.zk-chip i { font-size: .8rem; }
.zk-stat i { font-size: 1.25rem; }
.zk-toast i { color: #4ade80; flex-shrink: 0; }
.zk-mega .dropdown-item i { color: var(--zk-faint); width: 1.1rem; }
.zk-dropzone i { font-size: 2.1rem; color: var(--zk-primary); }
.zk-stars { color: #f59e0b; font-size: .66rem; }
.zk-feat .ico i, .zk-cat .ico i, .zk-mini-card .ico i, .zk-buy-option .ico i, .zk-float-ico i { line-height: 1; }
