/* ============================================================
   KMV BLOG — VELVET NOIR EDITION
   Redesign UI/UX — Boutique Sensual Premium
   Paleta: Laranja #F44B00 + Noir #0A0A0A
   Tipografia: Cormorant Garamond (display) + DM Sans (corpo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:            #0A0A0A;
  --surface:       #111111;
  --surface-soft:  #161616;
  --surface-mid:   #1C1C1C;
  --ink:           #F2EDE8;
  --ink-dim:       #9A9189;
  --muted:         #6B6360;
  --line:          rgba(242, 237, 232, 0.08);
  --line-warm:     rgba(244, 75, 0, 0.18);
  --accent:        #F44B00;
  --accent-dark:   #C93D00;
  --accent-glow:   rgba(244, 75, 0, 0.15);
  --dark:          #0A0A0A;
  --cream:         #F2EDE8;
  --green:         #25D366;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  --shadow-card:   0 1px 2px rgba(0,0,0,.6), 0 8px 32px rgba(0,0,0,.4);
  --shadow-glow:   0 0 40px rgba(244, 75, 0, 0.12);
  --shadow-hover:  0 4px 6px rgba(0,0,0,.7), 0 20px 60px rgba(0,0,0,.5), 0 0 60px rgba(244,75,0,.12);

  --radius:        2px;
  --radius-lg:     4px;
  --transition:    220ms cubic-bezier(.4, 0, .2, 1);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--accent-dark) 60%, transparent);
}

.header-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.brand:hover { opacity: .8; }

.brand img {
  width: 52px;
  height: auto;
  filter: brightness(1.05);
}

.brand span {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(242, 237, 232, .65);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover { color: var(--cream); background: rgba(255,255,255,.04); }

.main-nav .store-link {
  color: var(--accent);
  border: 1px solid rgba(244,75,0,.35);
  background: rgba(244, 75, 0, .06);
  font-weight: 600;
  letter-spacing: .06em;
}

.main-nav .store-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(242, 237, 232, .65);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn[aria-expanded="true"] {
  color: var(--cream);
  background: rgba(255,255,255,.04);
}

.nav-dropdown-arrow {
  font-size: 9px;
  opacity: .6;
  transition: transform 0.2s ease;
}

.nav-dropdown-btn[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 6px 0;
  z-index: 500;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}

.nav-dropdown-menu[aria-hidden="false"] {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(242, 237, 232, .75);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown-item:hover {
  color: var(--cream);
  background: rgba(255,255,255,.06);
}

.search-mini { display: flex; }

.search-mini input {
  width: 200px;
  padding: 9px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition), background var(--transition), width var(--transition);
}

.search-mini input::placeholder { color: var(--muted); }

.search-mini input:focus {
  width: 240px;
  border-color: rgba(244,75,0,.4);
  background: rgba(255,255,255,.06);
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { display: none; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.mais-lidos-strip {
  background: var(--surface);
  border-top: 1px solid rgba(244,75,0,.25);
  border-bottom: 1px solid rgba(244,75,0,.15);
  padding: 12px 0;
  overflow: hidden;
}

.mais-lidos-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mais-lidos-inner::-webkit-scrollbar { display: none; }

.mais-lidos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 12px;
  border-right: 1px solid rgba(244,75,0,.3);
}

.mais-lidos-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.mais-lidos-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.mais-lidos-item:hover {
  background: rgba(244,75,0,.12);
  border-color: rgba(244,75,0,.3);
}

.mais-lidos-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  opacity: .8;
}

.mais-lidos-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--cream);
  opacity: .8;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .mais-lidos-label { display: none; }
  .mais-lidos-item { padding: 5px 12px; }
  .mais-lidos-title { max-width: 140px; font-size: 11px; }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(10,10,10,.97) 0%,
      rgba(10,10,10,.82) 45%,
      rgba(20,10,5,.92) 100%),
    url("https://kmvsexshop.com.br/wp-content/uploads/2026/04/kmv-sex-shop-blog.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,75,0,.18) 0%, transparent 70%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-copy { max-width: 760px; }

.hero-copy .eyebrow { margin-bottom: 28px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-dim);
  max-width: 580px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-panel {
  padding: 32px;
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-lg);
  background: rgba(244,75,0,.05);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-panel > span {
  display: block;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}

.hero-panel p {
  color: var(--ink-dim);
  font-size: 14px;
  margin-top: 10px;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.button,
.read-link,
.search-page-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button::after, .read-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.button:hover,
.read-link:hover,
.search-page-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(244,75,0,.35);
  color: #fff;
}

.button:hover::after, .read-link:hover::after { opacity: 1; }

.button-ghost {
  background: transparent;
  border: 1px solid rgba(242,237,232,.2);
  color: var(--cream);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(242,237,232,.4);
  box-shadow: none;
}

.button-ghost-dark {
  background: transparent;
  border: 1px solid rgba(244,75,0,.35);
  color: var(--accent);
  box-shadow: none;
}

.button-ghost-dark:hover {
  background: rgba(244,75,0,.08);
  border-color: var(--accent);
  box-shadow: none;
}

.read-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
  padding: 10px 20px;
}

/* ══════════════════════════════════════════════════════════
   EDITORIAL SHELL / HOME LAYOUT
══════════════════════════════════════════════════════════ */
.editorial-shell { padding: 80px 0 16px; }

.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
}

.content-section { padding: 40px 0; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-header h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-top: 10px;
  letter-spacing: -.01em;
}

.section-header > span,
.page-hero p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* ── FEATURED ARTICLE ────────────────────────────────────── */
.featured-article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-warm);
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
}

.featured-article::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,.98) 0%, rgba(20,10,5,.94) 100%),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1400&q=80") center/cover;
  z-index: 0;
}

.featured-article::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), transparent);
  z-index: 2;
}

.featured-content,
.featured-article > a {
  position: relative;
  z-index: 1;
}

.featured-article .eyebrow { margin-bottom: 16px; }

.featured-article h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.featured-article h2 a { color: inherit; text-decoration: none; }
.featured-article h2 a:hover { color: var(--accent); }

.featured-article p {
  color: var(--ink-dim);
  font-size: 16px;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 18px;
}

.featured-article .card-meta {
  color: rgba(242,237,232,.35);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── ARTICLE GRID ────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── ARTICLE CARD ────────────────────────────────────────── */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  min-height: 400px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.article-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--accent);
  transition: height var(--transition);
  z-index: 2;
}

.article-card:hover { background: var(--surface-soft); }
.article-card:hover::after { height: 2px; }

.card-cover {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.card-cover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(.4,0,.2,1), filter 400ms ease;
  filter: brightness(.85) saturate(.9);
}

.article-card:hover .card-cover img {
  transform: scale(1.04);
  filter: brightness(.95) saturate(1.05);
}

.card-visual {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(244,75,0,.22) 0%, rgba(10,10,10,.98) 100%),
    url("https://images.unsplash.com/photo-1504194104404-433180773017?auto=format&fit=crop&w=800&q=80") center/cover;
  flex-shrink: 0;
}

.card-visual span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242,237,232,.4);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}

.article-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.28;
  color: var(--cream);
  margin: 12px 0 10px;
  letter-spacing: -.01em;
}

.article-card h2 a { color: inherit; text-decoration: none; }
.article-card h2 a:hover { color: var(--accent); }

.article-card p {
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.category-pill {
  align-self: flex-start;
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(244,75,0,.1);
  border: 1px solid rgba(244,75,0,.2);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}

.category-pill:hover {
  background: rgba(244,75,0,.18);
  border-color: rgba(244,75,0,.4);
}

.card-meta,
.article-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════════ */
.blog-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.sidebar-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.sidebar-box .eyebrow { margin-bottom: 10px; }

.sidebar-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.sidebar-box > p {
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 300;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-dim);
  background: transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  letter-spacing: .04em;
}

.category-list a:hover {
  color: var(--accent);
  border-color: rgba(244,75,0,.3);
  background: rgba(244,75,0,.05);
}

.mini-post {
  display: block;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: opacity var(--transition);
}

.mini-post:hover { opacity: .75; }

.mini-post strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 5px;
}

.mini-post span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
}

.page-hero-inner { padding: 64px 0 48px; }

.page-hero h1 {
  max-width: 860px;
  margin-top: 14px;
}

/* ── SEARCH FORM ─────────────────────────────────────────── */
.search-page-form {
  display: flex;
  gap: 10px;
  max-width: 640px;
  margin-top: 28px;
}

.search-page-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--surface-mid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
}

.search-page-form input::placeholder { color: var(--muted); }
.search-page-form input:focus { border-color: rgba(244,75,0,.4); }

/* ══════════════════════════════════════════════════════════
   ARTICLE PAGE
══════════════════════════════════════════════════════════ */
.article-page { padding: 56px 0 32px; }

.article-container {
  max-width: 820px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.article-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 40%, transparent 80%);
}

.article-header {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.article-container h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 20px 0 16px;
  letter-spacing: -.02em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.article-lead {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
}

.article-content {
  font-size: 17px;
  font-weight: 300;
  color: rgba(242,237,232,.8);
  line-height: 1.85;
}

.article-content p { margin: 0 0 24px; }

.article-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin: 44px 0 16px;
  letter-spacing: -.01em;
  line-height: 1.18;
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin: 36px 0 12px;
  line-height: 1.18;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin: 0 0 24px;
}

.article-content li { margin-bottom: 10px; }

.article-content blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: rgba(244,75,0,.04);
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* Imagem de capa do artigo */
.article-cover {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.article-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-content img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(0,0,0,.4);
}

.article-section-image {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.article-content a {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid rgba(244,75,0,.3);
  transition: border-color var(--transition), color var(--transition);
}

.article-content a:hover {
  color: var(--cream);
  border-color: rgba(242,237,232,.3);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color var(--transition);
  text-decoration: none;
}

.back-link:hover { color: var(--accent); }

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(244,75,0,.04);
  border: 1px solid rgba(244,75,0,.14);
  position: relative;
  overflow: hidden;
}
/* texto do CTA: base 280px, encolhe/cresce mas nunca vira um filete (empurra os botões
   pra próxima linha em vez de espremer palavra por linha em larguras intermediárias) */
.article-cta > div:first-child { flex: 1 1 280px; }

.article-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.article-cta h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--cream);
  margin: 4px 0 8px;
}

.article-cta p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 1 auto;
}

.related-section { padding-top: 48px; }

/* ══════════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.pagination a:hover {
  border-color: rgba(244,75,0,.3);
  color: var(--accent);
  background: rgba(244,75,0,.05);
}

/* ══════════════════════════════════════════════════════════
   EMPTY STATE / 404
══════════════════════════════════════════════════════════ */
.empty-state {
  background: var(--surface);
  border: 1px dashed rgba(242,237,232,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--muted);
  font-weight: 400;
}

.empty-state-large { padding: 56px; }

.empty-state h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  margin: 10px 0 12px;
}

.empty-state p {
  max-width: 640px;
  color: var(--ink-dim);
  font-size: 15px;
  font-weight: 300;
  margin: 0 0 24px;
}

.quiet-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.not-found { min-height: 60vh; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  margin-top: 80px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent-dark) 60%, transparent);
}

.footer-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.footer-about strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.footer-about p,
.footer-copy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 6px;
  flex-direction: column;
}

.footer-links a {
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color var(--transition);
  text-decoration: none;
  border-bottom: none;
}

.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════════ */
/* ── WHATSAPP PULSE ANIMATION ───────────────────────────── */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes waStop {
  to { animation-name: none; }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cpath d='M16 2C8.28 2 2 8.28 2 16c0 2.46.66 4.77 1.8 6.77L2 30l7.45-1.77A13.93 13.93 0 0 0 16 30c7.72 0 14-6.28 14-14S23.72 2 16 2zm7.21 19.29c-.3.84-1.76 1.62-2.42 1.72-.62.1-1.4.14-2.26-.14-.52-.17-1.18-.39-2.04-.76-3.58-1.55-5.92-5.15-6.1-5.39-.18-.24-1.46-1.94-1.46-3.7s.92-2.63 1.25-2.99c.33-.36.72-.45.96-.45h.69c.22 0 .52-.08.81.62.3.72 1.02 2.49 1.11 2.67.09.18.15.39.03.63-.12.24-.18.39-.36.6-.18.21-.38.47-.54.63-.18.18-.37.38-.16.74.21.36.94 1.55 2.02 2.51 1.39 1.24 2.56 1.62 2.92 1.8.36.18.57.15.78-.09.21-.24.9-1.05 1.14-1.41.24-.36.48-.3.81-.18.33.12 2.1.99 2.46 1.17.36.18.6.27.69.42.09.15.09.87-.21 1.71z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 34px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  animation: waPulse 1.4s ease-out 11;
  animation-iteration-count: 11;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1fbd59;
  box-shadow: 0 12px 36px rgba(37,211,102,.45);
}

/* esconde o conteúdo HTML interno (span W + strong WhatsApp) */
.whatsapp-float > * {
  display: none;
}

.whatsapp-float.reels-open {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* ══════════════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════════════ */
.is-loading { opacity: .6; pointer-events: none; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-copy { animation: fadeUp .9s cubic-bezier(.4,0,.2,1) both; }
.hero-panel { animation: fadeUp .9s .15s cubic-bezier(.4,0,.2,1) both; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — tablet
══════════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
    min-height: auto;
  }

  .main-nav { justify-content: flex-start; }
  .search-mini input { width: 100%; }

  .hero-inner,
  .home-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-inner { padding: 80px 0 64px; }
  .hero-panel { position: static; max-width: 320px; }
  .blog-sidebar { position: static; }

  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — mobile
══════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  .container { width: min(100% - 32px, 1200px); }

  .brand { width: 100%; justify-content: center; }
  .brand img { width: 44px; }

  .main-nav { gap: 4px; }
  .main-nav a { padding: 7px 10px; font-size: 12px; }
  .main-nav .store-link { order: -1; }

  .search-mini,
  .search-mini input { width: 100%; }

  .hero { min-height: auto; }
  .hero-inner { padding: 64px 0 48px; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }

  .article-grid,
  .related-grid { grid-template-columns: 1fr; }

  .card-cover { height: 200px; overflow: hidden; }
  .card-cover img { height: 200px; width: 100%; object-fit: cover; object-position: center; }

  .article-cover { height: 220px; }
  .article-cover-img { height: 220px; }

  .featured-article,
  .footer-inner { grid-template-columns: 1fr; }

  .article-container { padding: 28px 24px; }
  .article-container h1 { font-size: 32px; }
  .page-hero h1 { font-size: 28px; }

  .section-header,
  .search-page-form,
  .cta-actions { flex-direction: column; align-items: flex-start; }

  .search-page-form button,
  .cta-actions .button { width: 100%; }

  .editorial-shell { padding: 48px 0 8px; }

  .empty-state-large,
  .sidebar-box { padding: 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .footer-links { flex-direction: row; flex-wrap: wrap; }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ══════════════════════════════════════════════════════════
   LINK VÍDEOS (nav)
══════════════════════════════════════════════════════════ */
.videos-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.videos-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(244,75,0,.15);
  border: 1px solid rgba(244,75,0,.3);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   MODAL VÍDEOS EM BREVE
══════════════════════════════════════════════════════════ */
.modal-videos {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.modal-videos.is-open {
  display: flex;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .2s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--line-warm);
  border-radius: 8px;
  padding: 48px 40px 40px;
  text-align: center;
  animation: slideUp .25s cubic-bezier(.4,0,.2,1) both;
  /* garante que fica acima do backdrop */
  isolation: isolate;
}

.modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 8px 8px 0 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.modal-close:hover {
  color: var(--cream);
  border-color: rgba(242,237,232,.25);
}

.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(244,75,0,.08);
  border: 1px solid rgba(244,75,0,.2);
  color: var(--accent);
  margin-bottom: 20px;
}

.modal-icon svg {
  width: 28px;
  height: 28px;
}

.modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.modal-box h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.modal-box p {
  color: var(--ink-dim);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .modal-box {
    padding: 40px 24px 32px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   KMV REELS MODAL — desktop + mobile
   Acionado pelo botão "Vídeos" no menu superior
   ============================================================ */

.videos-link {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(242, 237, 232, .65);
  padding: 8px 14px;
  border-radius: var(--radius);
  line-height: inherit;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition), background var(--transition);
}
.videos-link:hover { color: var(--cream); background: rgba(255,255,255,.04); }

.kmv-reels-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.kmv-reels-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.kmv-reels-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(env(safe-area-inset-top, 0px) + 14px) 18px 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.70), transparent);
  font-family: 'DM Sans', system-ui, sans-serif;
}

.kmv-reels-close,
.kmv-reels-seller-top {
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  color: #fff !important;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  cursor: pointer;
  padding: 6px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  -webkit-tap-highlight-color: transparent;
}
.kmv-reels-close { font-size: 16px; }
.kmv-reels-seller-top { font-size: 14px; }
.kmv-reels-close:hover,
.kmv-reels-seller-top:hover { opacity: 0.82; }

.kmv-reels-track {
  height: 100dvh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.kmv-reels-track::-webkit-scrollbar { display: none; }

.kmv-reel-slide {
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.kmv-reel-media {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

/* Desktop: vídeo em proporção portrait centralizado */
@media (min-width: 600px) {
  .kmv-reel-media {
    width: auto;
    max-width: min(100vw, calc(100dvh * 9 / 16));
    margin: 0 auto;
  }
}

.kmv-reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.kmv-reel-actions {
  position: absolute;
  right: 14px;
  bottom: 160px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.kmv-reel-action {
  appearance: none;
  -webkit-appearance: none;
  width: 52px;
  min-height: 52px;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.kmv-reel-action svg {
  width: 28px; height: 28px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.38));
}
.kmv-reel-action span {
  font-size: 11px; font-weight: 800; line-height: 1;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.kmv-reel-like.is-liked,
.kmv-reel-like.is-liked svg {
  color: #F44B00 !important;
  fill: #F44B00;
  stroke: #F44B00;
}

.kmv-reel-sound {
  position: absolute;
  right: 14px; bottom: 92px;
  z-index: 4;
  width: 52px; height: 52px;
  appearance: none; -webkit-appearance: none;
  border: 0 !important; outline: 0 !important;
  box-shadow: none !important; background: transparent !important;
  color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.kmv-reel-sound svg {
  width: 26px; height: 26px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.38));
}
.kmv-reel-sound .kmv-sound-icon--on { display: none; }
.kmv-reel-sound[data-muted="false"] .kmv-sound-icon--muted { display: none; }
.kmv-reel-sound[data-muted="false"] .kmv-sound-icon--on { display: block; }

.kmv-reel-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 80px 16px calc(env(safe-area-inset-bottom, 0px) + 24px);
  background: linear-gradient(to top, rgba(0,0,0,0.80), transparent);
  pointer-events: none;
}
.kmv-reel-caption {
  display: flex; flex-direction: column; gap: 4px;
  color: #fff; font-family: 'DM Sans', system-ui, sans-serif;
  max-width: calc(100% - 80px);
}
.kmv-reel-caption strong { font-size: 14px; font-weight: 800; line-height: 1.2; }
.kmv-reel-caption span   { font-size: 12.5px; line-height: 1.35; opacity: 0.9; }

.kmv-reels-hint {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: #fff; font-family: 'DM Sans', system-ui, sans-serif;
  opacity: 0; visibility: hidden; pointer-events: none;
}
.kmv-reels-hint.is-show {
  visibility: visible;
  animation: kmvReelsHint 2.2s ease forwards;
}
.kmv-reels-hint__arrow { font-size: 30px; line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,0.45); }
.kmv-reels-hint__text {
  font-size: 15px; font-weight: 700;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(20,20,20,0.48);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
@keyframes kmvReelsHint {
  0%   { opacity: 0; transform: translate(-50%, calc(-50% + 24px)); }
  18%  { opacity: 1; transform: translate(-50%, -50%); }
  72%  { opacity: 1; transform: translate(-50%, calc(-50% - 50px)); }
  100% { opacity: 0; transform: translate(-50%, calc(-50% - 80px)); }
}

.kmv-toast {
  position: absolute;
  left: 50%; bottom: 36px;
  transform: translateX(-50%) translateY(16px);
  z-index: 7;
  background: rgba(20,20,20,0.90);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 10px 16px; border-radius: 999px;
  opacity: 0; pointer-events: none; white-space: nowrap;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.kmv-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }