/*
Theme Name: DomainBazaar
Theme URI: https://domainbazaar.local
Author: DomainBazaar
Author URI: https://domainbazaar.local
Description: Premium ikinci el domain alım satım teması. Koyu, modern ve profesyonel tasarım.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: domainbazaar
Tags: dark, marketplace, domain, e-commerce, modern
*/

/* =====================================================
   CSS VARIABLES - DARK THEME
   ===================================================== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-elevated: #1c1c28;
  --bg-hover: #22222f;

  --accent-primary: #6c63ff;
  --accent-secondary: #00d4aa;
  --accent-danger: #ff4d6d;
  --accent-warning: #ffb347;
  --accent-glow: rgba(108, 99, 255, 0.3);
  --accent-glow2: rgba(0, 212, 170, 0.2);

  --text-primary: #f0f0f8;
  --text-secondary: #9090aa;
  --text-muted: #55556a;
  --text-accent: #6c63ff;

  --border-subtle: rgba(255,255,255,0.06);
  --border-medium: rgba(255,255,255,0.1);
  --border-strong: rgba(108,99,255,0.4);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-elevated: 0 8px 48px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 40px rgba(108,99,255,0.15);

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--accent-secondary); }

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

ul { list-style: none; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { gap: 12px; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent-primary); }
.text-success { color: var(--accent-secondary); }
.text-danger { color: var(--accent-danger); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,99,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,99,255,0.5);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}
.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

.btn-success {
  background: linear-gradient(135deg, var(--accent-secondary), #00b894);
  color: #0a0a0f;
  font-weight: 700;
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,212,170,0.4);
  color: #0a0a0f;
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}
.btn-outline:hover {
  background: var(--accent-primary);
  color: #fff;
}

.btn-danger {
  background: var(--accent-danger);
  color: #fff;
}
.btn-danger:hover {
  background: #ff2d52;
  color: #fff;
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* =====================================================
   CARDS
   ===================================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: var(--transition);
}
.card:hover::before { opacity: 1; }

/* =====================================================
   BADGES
   ===================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-premium { background: rgba(108,99,255,0.15); color: var(--accent-primary); border: 1px solid rgba(108,99,255,0.3); }
.badge-sold { background: rgba(255,77,109,0.15); color: var(--accent-danger); border: 1px solid rgba(255,77,109,0.3); }
.badge-new { background: rgba(0,212,170,0.15); color: var(--accent-secondary); border: 1px solid rgba(0,212,170,0.3); }
.badge-hot { background: rgba(255,179,71,0.15); color: var(--accent-warning); border: 1px solid rgba(255,179,71,0.3); }
.badge-negotiable { background: rgba(255,255,255,0.07); color: var(--text-secondary); border: 1px solid var(--border-subtle); }

/* =====================================================
   FORMS
   ===================================================== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-display);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
}
.form-control::placeholder { color: var(--text-muted); }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239090aa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
}

.site-logo a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.site-logo span { color: var(--accent-primary); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-weight: 600;
}

.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--accent-primary) 70%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Hero Search Box */
.hero-search {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
}
.hero-search:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15), var(--shadow-elevated);
}
.hero-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
}
.hero-search input::placeholder { color: var(--text-muted); }
.hero-search .search-icon { color: var(--text-muted); flex-shrink: 0; }

/* Stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* =====================================================
   DOMAIN LISTING CARD
   ===================================================== */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.domain-card:hover {
  border-color: rgba(108,99,255,0.3);
  box-shadow: 0 8px 40px rgba(108,99,255,0.12);
  transform: translateY(-4px);
}
.domain-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(108,99,255,0.05), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.domain-card:hover::after { opacity: 1; }

.domain-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.domain-name {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  word-break: break-all;
}
.domain-name .tld { color: var(--accent-primary); }

.domain-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.domain-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.domain-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.domain-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-secondary);
}
.domain-price .currency { font-size: 0.9rem; color: var(--text-muted); margin-right: 2px; }

.domain-actions { display: flex; gap: 8px; }

/* Wishlist button */
.wishlist-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-btn:hover, .wishlist-btn.active {
  color: var(--accent-danger);
  border-color: rgba(255,77,109,0.3);
  background: rgba(255,77,109,0.1);
}

/* =====================================================
   DOMAIN DETAIL PAGE
   ===================================================== */
.domain-detail { padding: 48px 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.detail-main {}
.detail-sidebar {}

.detail-domain-name {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  word-break: break-all;
}
.detail-domain-name .tld { color: var(--accent-primary); }

.detail-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

.detail-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
}
.detail-tab {
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.detail-tab:hover { color: var(--text-secondary); }
.detail-tab.active {
  color: var(--accent-primary);
  border-bottom-color: var(--accent-primary);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.domain-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stat-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.stat-box-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 6px; }
.stat-box-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }

/* Purchase Box */
.purchase-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.purchase-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-secondary);
  margin-bottom: 4px;
  line-height: 1;
}
.purchase-price-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.purchase-box .btn { margin-bottom: 12px; }
.purchase-divider { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin: 16px 0; position: relative; }
.purchase-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--border-subtle);
}
.purchase-divider span { background: var(--bg-card); padding: 0 12px; position: relative; }

.trust-items { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.trust-icon { color: var(--accent-secondary); flex-shrink: 0; }

/* =====================================================
   FILTERS & SEARCH
   ===================================================== */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}
.filter-group { flex: 1; min-width: 160px; }
.filter-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; }

.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input { width: 90px; }
.price-range span { color: var(--text-muted); font-size: 0.85rem; }

.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.sort-bar .results-count { color: var(--text-muted); font-size: 0.9rem; }
.sort-bar select { min-width: 180px; }

/* =====================================================
   SUBMIT DOMAIN PAGE
   ===================================================== */
.submit-page { padding: 60px 0; }
.submit-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.submit-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 25%; right: 25%;
  height: 2px;
  background: var(--border-subtle);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 160px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.step.active .step-num {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(108,99,255,0.4);
}
.step.done .step-num {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  color: #0a0a0f;
}
.step-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-align: center; }

.submit-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}

/* =====================================================
   WATCHLIST / OFFERS
   ===================================================== */
.offer-form { margin-top: 20px; }
.offer-input-group {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.offer-currency {
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 12px 16px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
}
.offer-input-group input {
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.offer-input-group .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* =====================================================
   SELLER PROFILE
   ===================================================== */
.seller-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.seller-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.seller-info .name {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
}
.seller-info .meta { font-size: 0.8rem; color: var(--text-muted); }
.seller-rating { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; }
.star { color: var(--accent-warning); }

/* =====================================================
   NOTIFICATIONS
   ===================================================== */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.notice-info { background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.2); color: #a89dff; }
.notice-success { background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.2); color: var(--accent-secondary); }
.notice-error { background: rgba(255,77,109,0.1); border: 1px solid rgba(255,77,109,0.2); color: var(--accent-danger); }
.notice-warning { background: rgba(255,179,71,0.1); border: 1px solid rgba(255,179,71,0.2); color: var(--accent-warning); }

/* WP admin bar compat */
body.admin-bar #site-header { top: 32px; }
body.admin-bar.mobile #site-header { top: 46px; }

/* =====================================================
   CATEGORY BOXES
   ===================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.category-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-slow);
  text-decoration: none;
}
.category-box:hover {
  border-color: var(--accent-primary);
  background: var(--bg-elevated);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108,99,255,0.12);
}
.category-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
}
.category-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.category-count { font-size: 0.8rem; color: var(--text-muted); }

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-brand .logo span { color: var(--accent-primary); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-secondary); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
  .purchase-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions .btn-secondary { display: none; }
  .mobile-menu-toggle { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 60px 0; }
  .hero-stats { gap: 24px; }
  .filter-bar { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .submit-form-card { padding: 24px; }
}
@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-search { flex-direction: column; padding: 16px; border-radius: var(--radius-lg); }
  .hero-search .btn { width: 100%; }
}

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,15,0.97);
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
  padding: 10px;
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover { border-color: var(--accent-primary); color: var(--accent-primary); }
.page-btn.active { background: var(--accent-primary); border-color: var(--accent-primary); color: #fff; }
.page-btn.disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* =====================================================
   WooCommerce / WP overrides
   ===================================================== */
.woocommerce-message,
.woocommerce-info {
  background: var(--bg-elevated);
  border-top: 3px solid var(--accent-primary);
  color: var(--text-secondary);
}
.woocommerce-error { border-top-color: var(--accent-danger); }
