/* ============================================================
   ZapVio — WordPress theme stylesheet
   Premium Digital Downloads. Blue (#3B82F6) -> Purple (#6B46C1).
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --blue: #3B82F6;
  --purple: #6B46C1;
  --dark: #0F0A28;
  --gradient: linear-gradient(135deg, #3B82F6 0%, #6B46C1 100%);
  --gradient-soft: linear-gradient(135deg, rgba(59,130,246,.12) 0%, rgba(107,70,193,.12) 100%);

  --bg: #ffffff;
  --fg: #0F0A28;
  --card: #ffffff;
  --muted: #646478;
  --border: #e8e8f0;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 30px rgba(15,10,40,.08);
  --shadow-glow: 0 10px 40px rgba(107,70,193,.25);
  --container: 1200px;
}

html[data-theme="dark"] {
  --bg: #0F0A28;
  --fg: #f5f5fa;
  --card: #1a1438;
  --muted: #a09eb9;
  --border: #2c264e;
  --gradient-soft: linear-gradient(135deg, rgba(59,130,246,.18) 0%, rgba(107,70,193,.18) 100%);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }

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

/* ---------- Accessibility ---------- */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  position: fixed !important;
  top: 12px; left: 12px;
  width: auto; height: auto;
  clip: auto;
  padding: 10px 18px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 200;
}

/* ---------- Layout helpers ---------- */
.zv-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.zv-section { padding: 80px 0; }
.zv-section--tight { padding: 48px 0; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zv-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--purple);
}
.zv-section-head { text-align: center; margin-bottom: 48px; }
.zv-section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.zv-section-head p { color: var(--muted); margin-top: 12px; }

/* ---------- Buttons ---------- */
.zv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease,
    background-color .18s ease, color .18s ease;
}
.zv-btn--gradient {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.zv-btn--gradient:hover { transform: scale(1.03); }
.zv-btn--gradient:active { transform: scale(.97); }
.zv-btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.zv-btn--outline:hover { border-color: var(--purple); color: var(--purple); }
.zv-btn--lg { padding: 16px 36px; font-size: 17px; }
.zv-btn--block { width: 100%; }

/* ---------- Card ---------- */
.zv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   Header
   ============================================================ */
.zv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color .3s ease, border-color .3s ease,
    backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.zv-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.zv-header__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zv-logo { display: inline-flex; align-items: center; gap: 10px; }
.zv-logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  transition: transform .2s ease;
}
.zv-logo:hover .zv-logo__mark { transform: scale(1.06); }
.zv-logo__text { font-size: 21px; font-weight: 800; letter-spacing: -.03em; }

.zv-nav { display: flex; align-items: center; gap: 4px; }
.zv-nav a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background-color .2s ease, color .2s ease;
}
.zv-nav a:hover,
.zv-nav .current-menu-item > a {
  background: var(--gradient-soft);
  color: var(--fg);
}

.zv-header__actions { display: flex; align-items: center; gap: 8px; }
.zv-icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  font-size: 16px;
  position: relative;
  transition: border-color .2s ease;
}
.zv-icon-btn:hover { border-color: var(--purple); }
.zv-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.zv-burger { display: none; }

/* Mobile menu */
.zv-mobile-nav {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.zv-mobile-nav.is-open { display: block; }
.zv-mobile-nav ul { display: flex; flex-direction: column; gap: 2px; padding: 14px 0; }
.zv-mobile-nav a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.zv-mobile-nav a:hover { background: var(--gradient-soft); }

/* ============================================================
   Hero
   ============================================================ */
.zv-hero { position: relative; overflow: hidden; }
.zv-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: .7;
  pointer-events: none;
}
.zv-hero__blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}
.zv-hero__blob--a { left: -140px; top: 0; background: rgba(59,130,246,.22); }
.zv-hero__blob--b { right: -140px; bottom: 0; background: rgba(107,70,193,.22); }
.zv-hero__inner {
  position: relative;
  text-align: center;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.zv-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  max-width: 760px;
  line-height: 1.04;
}
.zv-hero__sub {
  margin-top: 22px;
  max-width: 540px;
  font-size: 18px;
  color: var(--muted);
}
.zv-hero__cta { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.zv-hero__mockup {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  outline: 4px solid rgba(255,255,255,.4);
  animation: zv-float 6s ease-in-out infinite;
}
.zv-hero__mockup img { width: 100%; height: 100%; object-fit: cover; }
.zv-hero__mockup--1 { width: 130px; height: 130px; top: 10%; left: 4%; animation-delay: 0s; }
.zv-hero__mockup--2 { width: 110px; height: 110px; bottom: 14%; left: 1%; animation-delay: 1.2s; }
.zv-hero__mockup--3 { width: 118px; height: 118px; top: 14%; right: 6%; animation-delay: .6s; }
.zv-hero__mockup--4 { width: 140px; height: 140px; bottom: 12%; right: 2%; animation-delay: 1.8s; }
@keyframes zv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ============================================================
   Features strip
   ============================================================ */
.zv-features {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.zv-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 38px 0;
}
.zv-feature { display: flex; align-items: center; gap: 14px; }
.zv-feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--gradient);
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
}
.zv-feature strong { display: block; font-size: 15px; }
.zv-feature span { font-size: 13px; color: var(--muted); }

/* ============================================================
   Category grid
   ============================================================ */
.zv-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.zv-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.zv-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.zv-cat-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--gradient);
  font-size: 28px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  transition: transform .3s ease;
}
.zv-cat-card:hover .zv-cat-card__icon { transform: scale(1.1); }
.zv-cat-card h3 { font-size: 18px; }
.zv-cat-card p { font-size: 14px; color: var(--muted); }

/* ============================================================
   Product grid + card
   ============================================================ */
.zv-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.zv-product-card { overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.zv-product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.zv-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.zv-product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.zv-product-card:hover .zv-product-card__media img { transform: scale(1.1); }
.zv-badge-pill {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.zv-product-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.zv-product-card__title { font-size: 16px; margin: 6px 0; }
.zv-product-card__excerpt {
  font-size: 14px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zv-product-card__foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zv-price { font-size: 18px; font-weight: 800; }
.zv-price.gradient-text { font-weight: 800; }
.zv-product-card__view {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  background: var(--gradient-soft);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background .2s ease, color .2s ease;
}
.zv-product-card:hover .zv-product-card__view { background: var(--gradient); color: #fff; }

/* ============================================================
   How it works
   ============================================================ */
.zv-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zv-step { position: relative; padding: 32px; }
.zv-step__num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 52px;
  font-weight: 800;
  color: var(--border);
}
.zv-step__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--gradient);
  font-size: 24px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
}
.zv-step h3 { font-size: 20px; margin: 18px 0 8px; }
.zv-step p { color: var(--muted); }

/* ============================================================
   Testimonials
   ============================================================ */
.zv-testimonials { background: var(--card); }
.zv-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zv-review { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.zv-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.zv-stars--muted { color: var(--border); }
.zv-review blockquote { font-size: 15px; }
.zv-review__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.zv-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.zv-review__by strong { display: block; font-size: 15px; }
.zv-review__by span { font-size: 13px; color: var(--muted); }

/* ============================================================
   Newsletter
   ============================================================ */
.zv-newsletter {
  position: relative;
  overflow: hidden;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius);
  padding: 64px 32px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.zv-newsletter h2 { font-size: clamp(26px, 4vw, 38px); }
.zv-newsletter p { margin-top: 12px; opacity: .9; }
.zv-newsletter__form {
  margin: 28px auto 0;
  max-width: 460px;
  display: flex;
  gap: 12px;
}
.zv-newsletter__circle {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}
.zv-newsletter__circle--a { width: 220px; height: 220px; top: -60px; right: -60px; }
.zv-newsletter__circle--b { width: 220px; height: 220px; bottom: -80px; left: -40px; }

/* ============================================================
   Forms / inputs
   ============================================================ */
.zv-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease;
}
.zv-input:focus { border-color: var(--purple); }
.zv-newsletter .zv-input { background: #fff; color: var(--dark); border: none; flex: 1; }
.zv-newsletter .zv-btn { background: var(--dark); color: #fff; }

/* ============================================================
   Shop archive
   ============================================================ */
.zv-page-head {
  background: var(--gradient-soft);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 56px 0;
}
.zv-page-head h1 { font-size: clamp(34px, 5vw, 52px); }
.zv-page-head p { color: var(--muted); margin-top: 10px; }

.zv-shop { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 40px 0; }
.zv-filters { position: sticky; top: 92px; align-self: start; }
.zv-filters__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 14px;
}
.zv-filters ul { display: flex; flex-direction: column; gap: 8px; }
.zv-filters a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: border-color .2s ease;
}
.zv-filters a:hover { border-color: var(--purple); }
.zv-filters a.is-active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.zv-shop__toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.zv-shop__toolbar form { flex: 1; min-width: 200px; }
.zv-shop__count { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.zv-select {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 14px;
}

/* Pagination */
.zv-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.zv-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}
.zv-pagination .page-numbers:hover { border-color: var(--purple); }
.zv-pagination .page-numbers.current {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   Single product
   ============================================================ */
.zv-single { padding: 40px 0; }
.zv-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.zv-breadcrumb a:hover { color: var(--purple); }
.zv-single__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.zv-gallery__main {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.zv-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.zv-gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.zv-gallery__thumbs button {
  width: 76px; height: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: none;
}
.zv-gallery__thumbs button.is-active { border-color: var(--purple); }
.zv-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.zv-single h1 { font-size: clamp(28px, 4vw, 40px); margin: 16px 0 12px; }
.zv-single__meta { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.zv-single__desc { color: var(--muted); margin: 20px 0; }
.zv-single__price {
  font-size: 40px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.zv-single__price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.zv-single__actions { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }

.zv-included { padding: 24px; margin-top: 24px; }
.zv-included h3 { font-size: 16px; margin-bottom: 16px; }
.zv-included li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}
.zv-included li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
}
.zv-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.zv-trust div {
  padding: 14px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.zv-trust span { display: block; font-size: 18px; margin-bottom: 4px; }

.zv-section-block { margin-top: 56px; }
.zv-section-block h2 { font-size: 24px; margin-bottom: 20px; }

/* ============================================================
   Footer
   ============================================================ */
.zv-footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.zv-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0;
}
.zv-footer__about p { font-size: 14px; color: var(--muted); margin-top: 16px; max-width: 280px; }
.zv-footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.zv-footer__col a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; }
.zv-footer__col a:hover { color: var(--purple); }
.zv-footer__bar {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ============================================================
   404 / generic content
   ============================================================ */
.zv-404 { text-align: center; padding: 100px 0; }
.zv-404 .code { font-size: clamp(80px, 16vw, 160px); font-weight: 800; line-height: 1; }
.zv-404 h1 { font-size: 28px; margin: 12px 0; }
.zv-404 p { color: var(--muted); max-width: 440px; margin: 0 auto 28px; }

.zv-content { padding: 56px 0; }
.zv-content h1, .zv-prose h1 { font-size: 36px; margin-bottom: 20px; }
.zv-prose p { margin-bottom: 16px; }
.zv-prose h2 { font-size: 26px; margin: 28px 0 12px; }
.zv-prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.zv-prose a { color: var(--purple); text-decoration: underline; }

/* ============================================================
   Scroll-reveal animation
   ============================================================ */
.zv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.zv-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   EDD overrides — make the plugin's markup match the brand
   ============================================================ */
.edd_download_purchase_form .edd-add-to-cart,
.edd-submit,
.button.edd-submit,
input[type="submit"].edd-submit {
  background: var(--gradient) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-glow);
  transition: transform .18s ease;
}
.edd-submit:hover { transform: scale(1.03); }
.edd_download_purchase_form { margin: 0; }
.edd-cart-added-alert { color: #10b981; font-weight: 600; }
#edd_checkout_form_wrap input[type="text"],
#edd_checkout_form_wrap input[type="email"],
#edd_checkout_form_wrap input[type="tel"],
#edd_checkout_form_wrap select {
  border-radius: var(--radius) !important;
  border: 1px solid var(--border) !important;
  padding: 12px 14px !important;
  background: var(--bg) !important;
  color: var(--fg) !important;
}
.edd_downloads_list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
table#edd_purchase_receipt,
table.edd-table { border-radius: var(--radius); overflow: hidden; }

/* ============================================================
   Toast
   ============================================================ */
.zv-toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zv-toast {
  background: var(--gradient);
  color: #fff;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-glow);
  animation: zv-toast-in .3s ease;
}
.zv-toast--error { background: #ef4444; }
.zv-toast--success { background: #10b981; }
@keyframes zv-toast-in {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .zv-features__grid { grid-template-columns: repeat(2, 1fr); }
  .zv-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .zv-products,
  .zv-edd_downloads_list,
  .zv-downloads_list { grid-template-columns: repeat(2, 1fr); }
  .zv-shop { grid-template-columns: 1fr; }
  .zv-filters { position: static; }
  .zv-filters ul { flex-direction: row; flex-wrap: wrap; }
  .zv-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .zv-nav { display: none; }
  .zv-burger { display: grid; }
  .zv-header__signin { display: none; }
  .zv-single__grid { grid-template-columns: 1fr; }
  .zv-steps { grid-template-columns: 1fr; }
  .zv-reviews { grid-template-columns: 1fr; }
  .zv-hero__mockup { display: none; }
  .zv-hero__inner { padding: 80px 0; }
  .zv-section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .zv-products,
  .zv-cat-grid,
  .zv-features__grid,
  .zv-trust,
  .zv-edd_downloads_list { grid-template-columns: 1fr; }
  .zv-footer__grid { grid-template-columns: 1fr; }
  .zv-newsletter__form { flex-direction: column; }
  .zv-container { padding: 0 18px; }
}
