/* ClitorisCam.com — Design System */
/* Light theme, category-discovery lens, stand-alone Chaturbate domain */

:root {
  --bg: #f8f9fb;
  --bg2: #ffffff;
  --bg3: #f0f1f5;
  --text: #1a1d2e;
  --text2: #3d4259;
  --muted: #6b7194;
  --accent: #e63976;
  --accent-hover: #d42d66;
  --accent-soft: #fdf0f4;
  --accent2: #7c5cfc;
  --accent2-soft: #f3f0ff;
  --border: #e2e4ec;
  --border2: #d0d3e0;
  --card-shadow: 0 1px 3px rgba(26,29,46,.06);
  --card-shadow-hover: 0 8px 24px rgba(26,29,46,.10);
  --radius: 12px;
  --radius-lg: 16px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === HEADER === */
.site-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.site-brand:hover { text-decoration: none; }
.brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #f472b6);
}
.site-nav { display: flex; gap: 6px; }
.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all .15s;
}
.site-nav a:hover { background: var(--bg3); color: var(--text); text-decoration: none; }
.site-nav a.active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .site-nav.open { display: flex; }
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--accent); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* === MODEL DISCOVERY PAGE === */
.model-hero {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 860px) {
  .model-hero { grid-template-columns: 1fr; }
}

.model-hero h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.25;
}
.model-hero .hero-tagline {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

/* Profile summary block */
.profile-summary {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.profile-summary .ps-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--bg3);
}
.profile-summary .ps-row:last-child { border-bottom: none; }
.profile-summary .ps-label { color: var(--muted); font-weight: 500; }
.profile-summary .ps-value { color: var(--text); font-weight: 600; text-align: right; }

/* Preview image */
.model-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
}
.model-preview img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.model-preview { position: relative; cursor: pointer; display: block; }
.model-preview:hover img { filter: brightness(0.85); transition: filter .2s; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; background: rgba(0,0,0,.55); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 3px; }
.model-preview:hover .play-btn { background: rgba(230,57,118,.85); transform: translate(-50%,-50%) scale(1.08); }

/* Discovery text */
.discovery-text {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.discovery-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 12px;
}
.discovery-text p:last-child { margin-bottom: 0; }

/* Category chips */
.category-routes {
  margin: 20px 0;
}
.category-routes h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  transition: all .15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); text-decoration: none; }

/* Partner CTA */
.partner-cta {
  margin: 28px 0;
  text-align: center;
}
.btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-partner:hover { background: var(--accent-hover); text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(230,57,118,.25); }
.btn-partner svg { width: 18px; height: 18px; fill: currentColor; }

/* === MODEL CARD GRID === */
.grid-models {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .grid-models { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .grid-models { grid-template-columns: repeat(2, 1fr); } }

.model-card {
  display: block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
  box-shadow: var(--card-shadow);
}
.model-card:hover {
  text-decoration: none;
  border-color: var(--border2);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}
.mc-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  overflow: hidden;
  position: relative;
}
.mc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mc-live {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.7);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mc-live .dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: livepulse 1.5s infinite; }
@keyframes livepulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); } }
.mc-body { padding: 10px 12px 12px; }
.mc-name { font-weight: 700; font-size: 14px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-age { color: var(--muted); font-size: 13px; margin-left: 5px; }
.mc-meta { color: var(--muted); font-size: 12px; margin-top: 4px; }
.mc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.mc-tag {
  padding: 2px 7px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text2);
  font-weight: 500;
}
.mc-followers { color: var(--muted); font-size: 12px; margin-top: 6px; }

/* === SECTION HEADERS === */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-top: 8px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.section-head .view-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* === CATEGORY CARDS (homepage + index) === */
.grid-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .grid-categories { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-categories { grid-template-columns: 1fr; } }

.cat-card {
  display: block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all .2s;
  box-shadow: var(--card-shadow);
}
.cat-card:hover {
  text-decoration: none;
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-1px);
}
.cat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.cat-card .cat-count { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.cat-card .cat-desc { font-size: 13px; color: var(--text2); line-height: 1.55; }

/* === COLLECTION CARDS === */
.grid-collections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 640px) { .grid-collections { grid-template-columns: 1fr; } }

.coll-card {
  display: block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: all .2s;
  box-shadow: var(--card-shadow);
}
.coll-card:hover {
  text-decoration: none;
  border-color: var(--accent2);
  box-shadow: var(--card-shadow-hover);
}
.coll-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.coll-card .coll-count { font-size: 13px; color: var(--accent2); font-weight: 600; margin-bottom: 6px; }
.coll-card .coll-desc { font-size: 13px; color: var(--text2); line-height: 1.55; }

/* === CATEGORY PAGE === */
.cat-hero {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.cat-hero h1 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cat-hero .cat-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text2);
  max-width: 800px;
}
.cat-hero .cat-stats {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.cat-hero .cat-stats strong { color: var(--text); }

/* === COLLECTION PAGE === */
.coll-hero {
  background: var(--accent2-soft);
  border: 1px solid #d8d0f8;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.coll-hero h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.coll-hero .coll-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text2);
  max-width: 800px;
}

/* === HOMEPAGE HERO === */
.home-hero {
  text-align: center;
  padding: 40px 20px 32px;
}
.home-hero h1 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.home-hero p {
  font-size: 16px;
  color: var(--text2);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === METHODOLOGY BLOCK === */
.method-block {
  margin: 36px 0 20px;
  padding: 24px 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent2);
}
.method-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.method-block p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* === RELATED SECTION === */
.related-section {
  margin: 32px 0;
}
.related-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 36px 0 20px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  background: var(--bg2);
}
.pagination a:hover { text-decoration: none; border-color: var(--accent); color: var(--accent); }
.pagination .active { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination .dots { border: none; background: none; padding: 9px 6px; }

/* === FOOTER === */
.site-footer {
  margin-top: 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 36px 0 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 24px; } }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: var(--text2); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 16px 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* === UTILITY === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.small { font-size: 13px; color: var(--muted); }
