/*
Theme Name: Luminous Custom Theme
Theme URI: https://example.com/luminous-custom-theme
Author: Luminous
Description: High-performance neon dark theme for DMM affiliate site
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: luminous-custom-theme
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --black: #000000;
  --dark-purple: #0d0719;
  --card-bg: #110b1e;
  --card-bg-hover: #1a1030;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255, 0, 127, 0.4);

  --pink: #ff007f;
  --pink-bright: #ff479a;
  --pink-soft: #ff8fc4;
  --pink-deep: #c90063;
  --purple: #a855f7;
  --purple-dark: #7c3aed;
  --cyan: #00ecff;
  --cyan-dim: rgba(0, 236, 255, 0.15);

  --text: #f0e8ff;
  --text-muted: rgba(240, 232, 255, 0.5);
  --text-dim: rgba(240, 232, 255, 0.25);

  --glow-pink: 0 0 12px var(--pink), 0 0 30px rgba(255,0,127,0.3);
  --glow-purple: 0 0 12px var(--purple), 0 0 30px rgba(168,85,247,0.3);
  --glow-cyan: 0 0 12px var(--cyan), 0 0 24px rgba(0,236,255,0.3);

  --font-display: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--pink-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pink); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { color: var(--text); font-family: var(--font-display); line-height: 1.3; }

.site-wrap { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-title a {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.main-navigation ul { list-style: none; display: flex; gap: 8px; }
.main-navigation a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all var(--transition);
}
.main-navigation a:hover, .main-navigation .current-menu-item a {
  color: var(--text);
  background: rgba(168,85,247,0.15);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,85,247,0.15) 0%, transparent 70%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.25;
}
.hero-glow-left  { left: -100px; top: -50px; background: var(--purple); }
.hero-glow-right { right: -100px; bottom: -50px; background: var(--pink); }

.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title-line1 {
  display: block;
  color: var(--text);
}
.hero-title-sep {
  display: block;
  font-size: 0.5em;
  color: var(--text-muted);
  letter-spacing: 0;
  margin: 4px 0;
}
.hero-title-line2 {
  display: block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-sub { color: var(--text-muted); font-size: 18px; margin-bottom: 36px; }

.hero-search { margin-bottom: 28px; }
.hero-search-inner {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 8px 6px 20px;
  max-width: 540px;
  margin: 0 auto;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-search-inner:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,0,127,0.12);
}

.search-icon { color: var(--text-muted); flex-shrink: 0; width: 18px; height: 18px; margin-right: 12px; }

.hero-search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
}
.hero-search-inner input::placeholder { color: var(--text-dim); }

.search-btn {
  background: linear-gradient(135deg, var(--pink), var(--purple-dark));
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.search-btn:hover { opacity: 0.85; }

.hero-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.tab-btn:hover, .tab-btn.active {
  background: rgba(255, 0, 127, 0.12);
  border-color: var(--pink);
  color: var(--pink-bright);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; padding: 0 40px; }
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ============================================================
   SECTION BLOCKS
   ============================================================ */
.section-block { padding: 60px 0; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
}

.glow-text {
  background: linear-gradient(135deg, var(--pink-bright), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.section-sub { color: var(--text-muted); font-weight: 400; margin-left: 8px; }
.section-more { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.section-more:hover { color: var(--pink-bright); }

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.filter-label { font-size: 13px; color: var(--text-muted); margin-right: 8px; }

.filter-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
}
.filter-select:focus { outline: none; border-color: var(--purple); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  transition: opacity 0.3s ease;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.product-card:hover {
  border-color: rgba(255,0,127,0.35);
  box-shadow: 0 4px 30px rgba(255,0,127,0.12);
  transform: translateY(-3px);
}

.card-thumb-link { display: block; }

.card-thumbnail {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a0f2e;
}
.card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .card-thumbnail img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
}
.badge-video {
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.75);
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.badge-type {
  top: 8px;
  right: 8px;
  background: rgba(168,85,247,0.8);
  color: #fff;
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.product-card:hover .card-hover-overlay { opacity: 1; }
.hover-cta {
  background: var(--pink);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--glow-pink);
}

.card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.card-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--pink-bright); }

.card-actresses { display: flex; flex-wrap: wrap; gap: 4px; }
.actress-tag {
  font-size: 11px;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--purple);
  padding: 2px 8px;
  border-radius: 20px;
  transition: all var(--transition);
}
.actress-tag:hover {
  background: rgba(168,85,247,0.25);
  color: #d8b4fe;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.card-price {
  font-weight: 700;
  color: var(--pink-bright);
  font-size: 14px;
}
.card-duration { font-size: 11px; color: var(--text-muted); }

.card-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
  align-items: center;
}

.btn-detail {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.btn-detail:hover { border-color: var(--border-hover); color: var(--text); }

.btn-affiliate {
  flex: 1;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pink), var(--purple-dark));
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.btn-affiliate:hover { opacity: 0.85; }
.btn-arrow { font-size: 12px; }

.btn-mylist {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.btn-mylist:hover, .btn-mylist.in-mylist {
  background: rgba(255,0,127,0.12);
  border-color: var(--pink);
  color: var(--pink);
}
.btn-mylist.in-mylist { color: var(--pink); }

/* ============================================================
   LOAD MORE
   ============================================================ */
.load-more-wrap { display: flex; justify-content: center; margin-top: 40px; }

.btn-load-more {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 12px 40px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-load-more:hover {
  border-color: var(--purple);
  color: var(--text);
  background: rgba(168,85,247,0.08);
}
.lm-spinner { animation: spin 0.8s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   ACTRESS GRID (homepage)
   ============================================================ */
.actress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.actress-grid.small { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }

.actress-card { display: flex; flex-direction: column; gap: 8px; }

.actress-thumb {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a0f2e;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.actress-card:hover .actress-thumb {
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 4px 20px rgba(168,85,247,0.15);
}
.actress-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.actress-card:hover .actress-thumb img { transform: scale(1.06); }

.actress-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.actress-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-purple), #2d1a4a);
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
}

.actress-info { text-align: center; }
.actress-name { display: block; font-size: 12px; font-weight: 700; color: var(--text); }
.actress-count { display: block; font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   GENRE TAG CLOUD
   ============================================================ */
.genre-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.genre-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.genre-tag:hover {
  background: rgba(0,236,255,0.08);
  border-color: rgba(0,236,255,0.3);
  color: var(--cyan);
}
.genre-count {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
  color: var(--text-dim);
}

/* ============================================================
   ARCHIVE LAYOUT (list page with sidebar)
   ============================================================ */
.archive-layout {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.filter-sidebar {
  width: 260px;
  flex-shrink: 0;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  transition: transform 0.3s ease;
}

.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.sidebar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sidebar-title { font-size: 16px; font-weight: 700; }
.sidebar-reset {
  font-size: 11px;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.sidebar-reset:hover { border-color: var(--pink); color: var(--pink); }

.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.filter-group:last-of-type { border-bottom: none; }
.filter-group-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.group-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 0 4px;
}

.filter-options { display: flex; flex-direction: column; gap: 4px; }
.filter-options.collapsed { display: none; }

.filter-checkbox, .filter-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.filter-checkbox:hover, .filter-radio:hover { background: rgba(255,255,255,0.04); }

.filter-checkbox input, .filter-radio input { accent-color: var(--pink); flex-shrink: 0; }
.check-label { font-size: 13px; flex: 1; }
.check-count { font-size: 10px; color: var(--text-dim); background: rgba(255,255,255,0.05); border-radius: 8px; padding: 1px 6px; }

.filter-search-wrap input, .filter-inner-search {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 8px;
}
.filter-search-wrap input:focus, .filter-inner-search:focus { border-color: var(--purple); }

.btn-apply-filter {
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--purple-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  font-family: var(--font-body);
  transition: opacity var(--transition);
}
.btn-apply-filter:hover { opacity: 0.85; }

/* ARCHIVE MAIN */
.archive-main { flex: 1; min-width: 0; padding: 24px; }

.archive-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.archive-title { font-size: 22px; font-weight: 800; }

.archive-controls { display: flex; align-items: center; gap: 16px; }

.sidebar-toggle-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
}

.result-count { font-size: 13px; color: var(--text-muted); }

.active-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.active-tag {
  font-size: 12px;
  background: rgba(255,0,127,0.1);
  border: 1px solid rgba(255,0,127,0.25);
  color: var(--pink-bright);
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--transition);
}
.active-tag:hover { background: rgba(255,0,127,0.2); }

.grid-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.spinner-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.pagination-wrap { margin-top: 40px; display: flex; justify-content: center; }
.pagination-wrap .nav-links { display: flex; gap: 8px; }
.pagination-wrap .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  transition: all var(--transition);
}
.pagination-wrap .page-numbers:hover, .pagination-wrap .page-numbers.current {
  background: rgba(168,85,247,0.15);
  border-color: var(--purple);
  color: var(--text);
}
.pagination-wrap .prev, .pagination-wrap .next { width: auto; padding: 0 16px; }

.no-results { grid-column: 1 / -1; text-align: center; padding: 80px; color: var(--text-muted); }
.no-results p { font-size: 16px; }

/* ============================================================
   CONTROLS BAR (archive-product + genre/actress pages)
   ============================================================ */
.archive-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.sort-control { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.single-product-wrap { max-width: 1200px; margin: 0 auto; padding: 24px; }

.breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--pink-bright); }
.bc-sep { opacity: 0.4; }
.bc-current { color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

/* VIDEO PLAYER */
.video-player-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-video { width: 100%; height: 100%; object-fit: contain; }
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
  transition: background var(--transition);
}
.video-overlay:hover { background: rgba(0,0,0,0.45); }
.video-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-pink);
  transition: transform var(--transition);
}
.video-overlay:hover .video-play-btn { transform: scale(1.1); }
.video-label { font-size: 13px; color: rgba(255,255,255,0.7); }

.product-main-image { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* SAMPLE GALLERY */
.sample-gallery { margin-top: 16px; }
.gallery-heading { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; font-weight: 500; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 6px; }
.gallery-thumb {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.gallery-thumb:hover { border-color: var(--pink); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-thumb:hover .thumb-overlay { opacity: 1; }

/* PRODUCT INFO PANEL */
.product-info-panel { display: flex; flex-direction: column; gap: 20px; }

.type-badge {
  display: inline-block;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

.product-title { font-size: 22px; font-weight: 800; line-height: 1.4; }

.info-row { display: flex; align-items: flex-start; gap: 12px; }
.info-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.actress-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.stars { display: flex; gap: 2px; }
.star { font-size: 18px; line-height: 1; }
.star.filled { color: #fbbf24; }
.star.half { color: #fbbf24; opacity: 0.5; }
.star.empty { color: var(--text-dim); }
.rating-num { font-size: 14px; color: var(--text-muted); margin-left: 8px; align-self: center; }

.price-meta-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.product-price { margin-bottom: 12px; }
.price-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; display: block; margin-bottom: 4px; }
.price-amount { font-size: 28px; font-weight: 800; color: var(--pink-bright); }

.product-meta-list { display: flex; flex-direction: column; gap: 8px; }
.meta-item { display: flex; gap: 12px; font-size: 13px; }
.meta-label { color: var(--text-muted); flex-shrink: 0; width: 70px; }
.meta-value { color: var(--text); }
.meta-link { color: var(--purple); }
.meta-link:hover { color: #d8b4fe; }

.genres-block { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.genres-label { font-size: 12px; color: var(--text-muted); flex-shrink: 0; margin-top: 6px; }
.genre-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* CTA BLOCK */
.cta-block { display: flex; flex-direction: column; gap: 12px; }

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pink), var(--purple-dark));
  color: #fff !important;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255,0,127,0.3);
  transition: opacity var(--transition), box-shadow var(--transition);
}
.btn-buy:hover {
  opacity: 0.9;
  box-shadow: 0 6px 30px rgba(255,0,127,0.5);
}

.btn-mylist-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-mylist-large:hover, .btn-mylist-large.in-mylist {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255,0,127,0.06);
}
.mylist-icon { font-size: 16px; }

.affiliate-notice { font-size: 10px; color: var(--text-dim); }

/* AI DESCRIPTION */
.product-description-section { margin-bottom: 60px; }
.desc-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.product-description {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(240,232,255,0.8);
  white-space: pre-wrap;
}
.product-description p { margin-bottom: 1em; }

/* RELATED */
.related-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 16px;
}
#lightbox-img { max-width: 80vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
}
.lightbox-prev, .lightbox-next {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-counter { position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============================================================
   ACTRESS ARCHIVE
   ============================================================ */
.actress-archive-wrap {}
.actress-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 40px 24px;
  overflow: hidden;
  background: var(--dark-purple);
}
.actress-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--actress-bg, '') center/cover no-repeat;
  opacity: 0.12;
  filter: blur(8px);
  transform: scale(1.1);
}
.actress-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
}
.actress-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.actress-avatar {
  width: 120px;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--purple);
  flex-shrink: 0;
  box-shadow: var(--glow-purple);
}
.actress-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-purple), #2d1a4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--purple);
}

.actress-hero-info { flex: 1; }
.actress-category { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 4px; }
.actress-name { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.actress-bio { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

.actress-stats { display: flex; gap: 24px; }
.a-stat { text-align: center; }
.a-stat-num { display: block; font-size: 22px; font-weight: 800; color: var(--cyan); }
.a-stat-label { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   GENRE ARCHIVE
   ============================================================ */
.genre-archive-wrap { padding: 40px 0; }
.genre-archive-header {
  text-align: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.08) 0%, transparent 70%);
  margin-bottom: 40px;
}
.genre-category-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.genre-archive-title { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.genre-description { font-size: 14px; color: var(--text-muted); max-width: 600px; margin: 0 auto 12px; }
.genre-count { font-size: 13px; color: var(--text-muted); }
.related-terms { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 20px; }
.related-label { font-size: 12px; color: var(--text-dim); align-self: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 60px;
}
.site-footer a { color: var(--text-dim); }
.site-footer a:hover { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .product-hero { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; width: 0; padding: 0; border: none; }
  .filter-sidebar.open {
    display: block;
    position: fixed;
    left: 0;
    top: 60px;
    height: calc(100vh - 60px);
    width: 280px;
    z-index: 200;
    padding: 24px 20px;
    background: #0d0719;
    border-right: 1px solid var(--border);
  }
  .sidebar-toggle-btn { display: flex; }
  .archive-main { padding: 16px; }
}

@media (max-width: 768px) {
  .actress-hero-content { flex-direction: column; align-items: flex-start; }
  .actress-avatar { width: 80px; height: 110px; }
  .actress-name { font-size: 26px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .gallery-thumbs { grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); }
  .hero { padding: 60px 16px 40px; }
  .hero-tabs { gap: 6px; }
  .stats-bar { padding: 16px; }
  .stat-item { padding: 0 20px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .actress-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
}

/* ============================================================
   STATIC PAGES (Contact / Privacy / Disclaimer / Terms)
   ============================================================ */
.static-page-wrap { max-width: 860px; margin: 0 auto; padding: 40px 24px 80px; }

.static-page-header { text-align: center; padding: 40px 0 48px; }
.static-page-title { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.static-page-desc { color: var(--text-muted); font-size: 14px; }

.static-page-content { display: flex; flex-direction: column; gap: 0; }

.policy-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}
.policy-section:last-child { border-bottom: none; }
.policy-section h2 {
    font-size: 17px;
    font-weight: 700;
    color: var(--pink-bright);
    margin-bottom: 12px;
}
.policy-section p { color: rgba(240,232,255,0.8); line-height: 1.85; margin-bottom: 10px; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.policy-section ul li { color: rgba(240,232,255,0.75); line-height: 1.7; }
.policy-section a { color: var(--purple); text-decoration: underline; }
.policy-section a:hover { color: #d8b4fe; }

.policy-contact {
    margin-top: 32px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* CONTACT FORM */
.contact-wrap { max-width: 640px; margin: 0 auto; }

.contact-errors {
    background: rgba(255,0,0,0.08);
    border: 1px solid rgba(255,0,0,0.3);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 28px;
}
.contact-errors ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.contact-errors li { color: #ff6b6b; font-size: 14px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.required { color: var(--pink); margin-left: 4px; }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: #1a0f2e; color: var(--text); }

.form-privacy {
    padding: 4px 0;
}
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
}
.form-check input { width: auto; accent-color: var(--pink); }
.form-check a { color: var(--purple); text-decoration: underline; }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pink), var(--purple-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    box-shadow: 0 4px 20px rgba(255,0,127,0.25);
    transition: opacity var(--transition);
    align-self: flex-start;
}
.btn-submit:hover { opacity: 0.85; }

.contact-success {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: var(--radius);
}
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: var(--glow-pink);
}
.contact-success h2 { font-size: 24px; margin-bottom: 12px; }
.contact-success p { color: var(--text-muted); line-height: 1.8; }

/* FOOTER LINKS */
.footer-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 12px; align-items: center; }
.footer-links a { color: var(--text-muted); font-size: 12px; transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-sep { color: var(--text-dim); font-size: 10px; }
.footer-copy { margin-bottom: 8px; }
.footer-age { font-size: 11px; color: var(--text-dim); max-width: 600px; margin: 0 auto; line-height: 1.5; }
