/* =========================================
   VENUS TAROT - ANA CSS
   Turuncu Spiritüel Tema
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Lato:wght@300;400;700&family=Dancing+Script:wght@400;700&display=swap');

:root {
  --primary: #ff6b35;
  --primary-dark: #e55a26;
  --primary-light: #ff8c5a;
  --secondary: #ffd700;
  --accent: #c0392b;
  --bg-dark: #0d0520;
  --bg-card: rgba(255, 107, 53, 0.08);
  --bg-card-hover: rgba(255, 107, 53, 0.15);
  --text-light: #f5e6d3;
  --text-muted: rgba(245, 230, 211, 0.6);
  --border-color: rgba(255, 107, 53, 0.3);
  --gold: #ffd700;
  --purple-dark: #1a0a2e;
  --purple-mid: #2d1052;
  --font-title: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- CANVAS STAR BACKGROUND ---- */
#starCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page-wrapper {
  position: relative;
  z-index: 1;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-title);
  color: var(--text-light);
}

.script-font { font-family: var(--font-script); }

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

/* ---- NAVBAR ---- */
.navbar {
  background: rgba(13, 5, 32, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
}

.navbar-brand span.gold { color: var(--gold); }

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--primary) !important;
  background: var(--bg-card);
}

.nav-link.active {
  color: var(--primary) !important;
}

.btn-nav-randevu {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn-nav-randevu:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,53,0.4);
}

.badge-vip {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a2e;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
  vertical-align: middle;
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid var(--border-color);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse-glow 2s infinite;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 15px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-crystal {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.crystal-ball {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,215,0,0.4), rgba(255,107,53,0.3), rgba(13,5,32,0.9));
  border: 2px solid rgba(255,107,53,0.4);
  box-shadow: 0 0 60px rgba(255,107,53,0.3), 0 0 120px rgba(255,215,0,0.1), inset 0 0 60px rgba(255,107,53,0.1);
  animation: crystal-float 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}

.crystal-ball::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 20%;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.crystal-ring {
  position: absolute;
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 50%;
  animation: ring-rotate 8s linear infinite;
}

.crystal-ring:nth-child(1) { width: 420px; height: 420px; }
.crystal-ring:nth-child(2) { width: 490px; height: 490px; animation-direction: reverse; animation-duration: 12s; }
.crystal-ring:nth-child(3) { width: 560px; height: 560px; animation-duration: 16s; }

/* ---- BUTTONS ---- */
.btn-primary-venus {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-venus:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,107,53,0.5);
  color: white;
}

.btn-outline-venus {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-venus:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a2e;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,215,0,0.5);
  color: #1a0a2e;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37,211,102,0.4);
  color: white;
}

/* ---- CARDS ---- */
.venus-card {
  background: rgba(255,107,53,0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.venus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.venus-card:hover {
  background: rgba(255,107,53,0.12);
  border-color: rgba(255,107,53,0.6);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.venus-card:hover::before { opacity: 1; }

.card-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,215,0,0.1));
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.venus-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(255,107,53,0.4), rgba(255,215,0,0.2));
  box-shadow: 0 0 20px rgba(255,107,53,0.3);
  transform: scale(1.1) rotate(5deg);
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body { padding: 25px; }

.service-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-title);
}

.service-price.vip {
  color: var(--gold);
}

/* ---- PRODUCT CARDS ---- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,5,32,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-card-overlay { opacity: 1; }

.badge-new {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-vip-product {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a2e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid var(--border-color);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title span { color: var(--primary); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 20px auto;
  border-radius: 2px;
}

/* ---- APPOINTMENT SECTION ---- */
.randevu-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: var(--transition);
}

.step-item.active { opacity: 1; }

.step-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.step-item.active .step-circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255,107,53,0.4);
}

.step-connector {
  flex: 1;
  height: 2px;
  background: var(--border-color);
  margin-top: 25px;
  max-width: 60px;
}

/* ---- FORMS ---- */
.form-venus .form-label {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-venus .form-control,
.form-venus .form-select {
  background: rgba(255,107,53,0.06);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  padding: 12px 16px;
  transition: var(--transition);
}

.form-venus .form-control:focus,
.form-venus .form-select:focus {
  background: rgba(255,107,53,0.1);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
  color: var(--text-light);
  outline: none;
}

.form-venus .form-control::placeholder { color: var(--text-muted); }

.form-venus .form-select option {
  background: var(--purple-dark);
  color: var(--text-light);
}

/* ---- STATS ---- */
.stat-item {
  text-align: center;
  padding: 30px;
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---- VIP SECTION ---- */
.vip-card {
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,107,53,0.1));
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.vip-card::before {
  content: '👑';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 150px;
  opacity: 0.05;
}

.vip-badge-large {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a2e;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ---- PRICING ---- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,215,0,0.08));
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: '⭐ Önerilen';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-price {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px;
}

.stars-row { color: var(--gold); font-size: 1.2rem; margin-bottom: 15px; }

.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---- FOOTER ---- */
.footer {
  background: rgba(13,5,32,0.98);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  position: relative;
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
}

.footer-tagline {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1rem;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* ---- ALERTS & FLASH ---- */
.alert-venus {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-success {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
}

.alert-error {
  background: rgba(255,68,68,0.1);
  border: 1px solid rgba(255,68,68,0.3);
  color: #ff4444;
}

.alert-warning {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
}

.alert-info {
  background: rgba(255,107,53,0.1);
  border: 1px solid var(--border-color);
  color: var(--primary);
}

/* ---- ADMIN PANEL ---- */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: rgba(13,5,32,0.98);
  border-right: 1px solid var(--border-color);
  padding: 20px 0;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  transition: var(--transition);
}

.admin-sidebar-logo {
  padding: 20px 25px 30px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.admin-sidebar-logo .brand {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
}

.admin-sidebar-logo .subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-script);
}

.admin-nav-section {
  padding: 0 15px;
  margin-bottom: 5px;
}

.admin-nav-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 10px 5px;
  font-weight: 600;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 3px;
  text-decoration: none;
}

.admin-nav-link:hover {
  background: var(--bg-card);
  color: var(--text-light);
}

.admin-nav-link.active {
  background: rgba(255,107,53,0.15);
  color: var(--primary);
  font-weight: 600;
}

.admin-nav-link .icon { font-size: 1.1rem; width: 20px; text-align: center; }

.admin-nav-badge {
  margin-left: auto;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 700;
}

.admin-content {
  flex: 1;
  margin-left: 260px;
  background: linear-gradient(135deg, #0d0520 0%, #1a0a2e 100%);
  min-height: 100vh;
}

.admin-topbar {
  background: rgba(13,5,32,0.95);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 99;
}

.admin-page-content {
  padding: 30px;
}

.admin-page-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.admin-breadcrumb {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Admin Stats Cards */
.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.admin-stat-card:hover { border-color: var(--primary); }

.admin-stat-icon {
  width: 60px; height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.admin-stat-icon.orange { background: rgba(255,107,53,0.2); }
.admin-stat-icon.gold { background: rgba(255,215,0,0.2); }
.admin-stat-icon.green { background: rgba(37,211,102,0.2); }
.admin-stat-icon.blue { background: rgba(100,149,237,0.2); }
.admin-stat-icon.purple { background: rgba(147,112,219,0.2); }

.admin-stat-number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.admin-stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Admin Tables */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th {
  background: rgba(255,107,53,0.1);
  color: var(--primary);
  font-weight: 600;
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255,107,53,0.08);
  color: var(--text-light);
  vertical-align: middle;
}

.admin-table tr:hover td { background: rgba(255,107,53,0.05); }

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-active { background: rgba(37,211,102,0.15); color: #25d366; }
.status-pending { background: rgba(255,215,0,0.15); color: var(--gold); }
.status-inactive { background: rgba(255,68,68,0.15); color: #ff4444; }
.status-completed { background: rgba(100,149,237,0.15); color: #6495ed; }
.status-cancelled { background: rgba(255,68,68,0.15); color: #ff4444; }
.status-paid { background: rgba(37,211,102,0.15); color: #25d366; }
.status-vip { background: rgba(255,215,0,0.15); color: var(--gold); }

/* ---- CART ---- */

/* ── Navbar Sepet Butonu ────────────────────── */
.nav-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.4);
  color: var(--primary) !important;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none !important;
  position: relative;
  transition: all 0.25s ease;
}
.nav-cart-btn:hover {
  background: rgba(255,107,53,0.28);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.nav-cart-btn i { font-size: 1rem; }
.nav-cart-btn .cart-count {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: .68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-cart-label { font-size: .82rem; }
@media (max-width: 991px) {
  .nav-cart-btn { padding: 6px 12px; }
  .nav-cart-label { display: none; }
}

.cart-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.cart-item-img {
  width: 80px; height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.qty-input {
  width: 60px;
  background: rgba(255,107,53,0.1);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-light);
  text-align: center;
  padding: 6px;
}

/* ---- ORDER SUMMARY ---- */
.order-summary {
  background: rgba(255,107,53,0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 25px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,107,53,0.1);
  color: var(--text-muted);
}

.order-summary-row.total {
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.2rem;
  border-bottom: none;
  margin-top: 5px;
}

.order-summary-row.total span:last-child { color: var(--primary); }

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 25px rgba(37,211,102,0.5);
  animation: float-bounce 3s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  color: white;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(13,5,32,0.95);
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  border: 1px solid var(--border-color);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- ACCOUNT ---- */
.account-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 25px;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: var(--transition);
  margin-bottom: 5px;
  text-decoration: none;
}

.account-nav-link:hover, .account-nav-link.active {
  background: rgba(255,107,53,0.1);
  color: var(--primary);
}

/* ---- ANIMATIONS ---- */
@keyframes crystal-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255,107,53,0.3); }
  50% { box-shadow: 0 0 30px rgba(255,107,53,0.6); }
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .crystal-ball { width: 250px; height: 250px; font-size: 80px; }
  .crystal-ring:nth-child(1) { width: 300px; height: 300px; }
  .crystal-ring:nth-child(2) { width: 360px; height: 360px; }
  .crystal-ring:nth-child(3) { width: 420px; height: 420px; }
}

@media (max-width: 768px) {
  .hero { padding: 80px 0 40px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-color); }
  .stat-item:last-child { border-bottom: none; }
  .pricing-card.featured { transform: scale(1); }
  .randevu-steps { gap: 10px; }
  .step-connector { max-width: 30px; }
}

/* ---- LOADING ---- */
.loading-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 20px;
}

.loading-spinner {
  width: 60px; height: 60px;
  border: 3px solid rgba(255,107,53,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- MODAL ---- */
.modal-venus .modal-content {
  background: var(--purple-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.modal-venus .modal-header {
  border-bottom: 1px solid var(--border-color);
}

.modal-venus .modal-footer {
  border-top: 1px solid var(--border-color);
}

.modal-venus .btn-close {
  filter: invert(1);
}

/* ---- CALENDAR ---- */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.calendar-day.available {
  border-color: var(--border-color);
  color: var(--text-light);
}

.calendar-day.available:hover {
  background: rgba(255,107,53,0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.calendar-day.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.calendar-day.disabled {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-day.today {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- TIME SLOTS ---- */
.time-slots { display: flex; flex-wrap: wrap; gap: 10px; }
.time-slot {
  padding: 10px 18px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text-light);
}

.time-slot.available:hover {
  border-color: var(--primary);
  background: rgba(255,107,53,0.1);
  color: var(--primary);
}

.time-slot.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.time-slot.booked {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Geçmiş saat (bugün, önceki saatler) */
.time-slot.past {
  opacity: 0.2;
  cursor: not-allowed;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- BREADCRUMB ---- */
.breadcrumb-venus {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb-venus a { color: var(--text-muted); }
.breadcrumb-venus a:hover { color: var(--primary); }
.breadcrumb-venus .sep { color: rgba(255,255,255,0.2); }
.breadcrumb-venus .current { color: var(--primary); }

/* ---- PAGINATION ---- */
.pagination-venus {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.page-btn:hover, .page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ---- NOTIFICATION ---- */
.notification-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

/* ---- LEGAL PAGES ---- */
.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  line-height: 1.9;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 30px 0 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.legal-content p { color: var(--text-muted); margin-bottom: 15px; }
.legal-content ul { color: var(--text-muted); margin-bottom: 15px; padding-left: 20px; }
.legal-content li { margin-bottom: 8px; }

/* Admin mobile toggle */
.admin-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-light);
  padding: 6px 12px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .admin-mobile-toggle { display: block; }
}

/* Quantity buttons */
.qty-btn {
  width: 32px; height: 32px;
  background: rgba(255,107,53,0.1);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  font-size: 1rem;
  padding: 0;
}

.qty-btn:hover { background: var(--primary); border-color: var(--primary); }

/* ==============================
   ADMIN EKSİK STILLER - FIX
   ============================== */

/* Form Input */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  display: block;
}
.form-input:focus {
  border-color: var(--primary);
  background: rgba(255,107,53,0.05);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
select.form-input option { background: #1a0a2e; color: var(--text-light); }
textarea.form-input { resize: vertical; }

/* Status badges - eksik olanlar */
.status-confirmed { background: rgba(37,211,102,0.15); color: #25d366; }
.status-processing { background: rgba(100,149,237,0.15); color: #6495ed; }
.status-shipped { background: rgba(147,112,219,0.15); color: #9370db; }
.status-delivered { background: rgba(37,211,102,0.2); color: #00c851; }
.status-approved { background: rgba(37,211,102,0.15); color: #25d366; }
.status-rejected { background: rgba(255,68,68,0.15); color: #ff4444; }
.status-unpaid { background: rgba(255,215,0,0.15); color: var(--gold); }
.status-vip { background: rgba(255,215,0,0.15); color: var(--gold); }
.status-standard { background: rgba(255,255,255,0.1); color: var(--text-muted); }

/* Admin Alert */
.admin-alert {
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.admin-alert.success { background: rgba(37,211,102,.15); border: 1px solid #25d366; color: #25d366; }
.admin-alert.error { background: rgba(255,68,68,.15); border: 1px solid #ff4444; color: #ff4444; }
.admin-alert.info { background: rgba(100,149,237,.15); border: 1px solid #6495ed; color: #6495ed; }

/* Admin Pagination */
.admin-pagination {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 20px;
}
.admin-pagination a {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-light);
  text-decoration: none;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  transition: var(--transition);
}
.admin-pagination a.active,
.admin-pagination a:hover { background: var(--primary); border-color: var(--primary); }

/* Admin action buttons */
.admin-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.admin-action-btn:hover { background: rgba(255,255,255,0.1); }

/* Responsive fixes */
@media (max-width: 992px) {
  .admin-content { margin-left: 0 !important; }
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-page-content { padding: 15px; }
}

/* ==============================
   HERO CRYSTAL BALL - RESİM MODU
   ============================== */
.crystal-ball-img {
  background: none !important;
  box-shadow: 0 0 60px rgba(255,107,53,0.4), 0 0 120px rgba(255,215,0,0.15), inset 0 0 40px rgba(255,107,53,0.1) !important;
  border: 3px solid rgba(255,107,53,0.5) !important;
  overflow: hidden;
  padding: 0 !important;
  font-size: 0 !important;
}
.crystal-ball-img::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 35%;
  height: 25%;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent);
  border-radius: 50%;
  transform: rotate(-30deg);
  z-index: 2;
  pointer-events: none;
}
.crystal-ball-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ── Checkout Adım Göstergesi ───────────────────── */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.checkout-step {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}
.checkout-step.active {
  background: rgba(255,107,53,.15);
  border-color: var(--primary);
  color: var(--primary);
}
.checkout-step.done {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.4);
  color: #25d366;
}
.checkout-step-sep {
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* ── Ödeme Yöntemi Kartı ────────────────────────── */
.payment-method-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s ease;
  width: 100%;
  background: rgba(255,255,255,.03);
  color: var(--text-light);
}
.payment-method-card input[type=radio] { display: none; }
.payment-method-card:hover {
  border-color: rgba(255,107,53,.5);
  background: rgba(255,107,53,.06);
}
.payment-method-card.selected {
  border-color: var(--primary);
  background: rgba(255,107,53,.1);
  box-shadow: 0 0 0 1px var(--primary);
}

/* ================================================================
   TAM MOBİL UYUM — VENUS TAROT
   Breakpoints: 576px (xs), 768px (sm/md), 992px (lg)
   ================================================================ */

/* ── Genel ──────────────────────────────────────── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  img  { max-width: 100%; height: auto; }

  .container { padding-left: 16px; padding-right: 16px; }

  .section { padding: 50px 0; }

  /* Büyük başlıklar küçülsün */
  h1 { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; }
  h2 { font-size: clamp(1.3rem, 5vw, 2rem) !important; }
  h3 { font-size: clamp(1.1rem, 4vw, 1.6rem) !important; }
}

/* ── Navbar ─────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar { padding: 8px 0; }
  .navbar-brand { font-size: 1.25rem; }
  .navbar-brand .logo-icon { width: 32px; height: 32px; }

  /* Hamburger menü açıkken arka plan */
  .navbar-collapse {
    background: rgba(13,5,32,0.98);
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding: 12px 16px 16px;
    border-radius: 0 0 12px 12px;
  }
  .navbar-nav { gap: 2px; }
  .nav-link { padding: 10px 14px !important; border-radius: 8px; }
  .nav-link:hover { background: rgba(255,107,53,0.08); }

  /* Randevu Al butonu tam genişlik */
  .btn-nav-randevu {
    display: block;
    text-align: center;
    margin-top: 10px;
    width: 100%;
  }

  /* Sepet butonu → sağa daysın, label gizle */
  .nav-cart-btn { padding: 6px 12px; }
  .nav-cart-label { display: none; }

  /* Kullanıcı dropdown tam genişlik */
  .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    background: rgba(26,10,46,0.95);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 4px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .navbar-brand span { font-size: 1.1rem; }
}

/* ── Hero Section ───────────────────────────────── */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 100px 0 50px;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin: 0 auto 30px; max-width: 100%; }
  .hero-crystal { margin-top: 40px; }

  /* Kristal topun halkalarını gizle küçük ekranda */
  .crystal-ring { display: none; }
  .crystal-ball, .crystal-ball-img {
    width: 220px !important;
    height: 220px !important;
    font-size: 70px !important;
  }
}

@media (max-width: 576px) {
  .hero { padding: 90px 0 40px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .hero-subtitle { font-size: 1.1rem !important; }
  .hero-desc { font-size: .95rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn-primary-venus,
  .hero-btns .btn-outline-venus { width: 100%; max-width: 300px; justify-content: center; }
  .crystal-ball, .crystal-ball-img {
    width: 180px !important;
    height: 180px !important;
    font-size: 60px !important;
  }
}

/* ── Page Hero (Alt sayfa başlıkları) ───────────── */
@media (max-width: 768px) {
  .page-hero { padding: 80px 0 30px; }
  .page-hero-title { font-size: clamp(1.5rem, 6vw, 2.2rem) !important; }
}

/* ── Hizmet Kartları ────────────────────────────── */
@media (max-width: 768px) {
  .service-card-img { height: 160px; }
  .service-card-body { padding: 16px; }
  .service-card-body h5 { font-size: 1rem; }
}

@media (max-width: 576px) {
  .service-card-img { height: 140px; }
}

/* ── Ürün Kartları ──────────────────────────────── */
@media (max-width: 576px) {
  .product-card-img { height: 160px; }
  .product-card { border-radius: 10px; }
}

/* ── Stats (Sayaçlar) ───────────────────────────── */
@media (max-width: 768px) {
  .stats-section .col-6,
  .stats-section .col-md-3 { border-right: none; }
  .stat-item { padding: 20px 10px; }
  .stat-number { font-size: 2rem !important; }
}

/* ── Randevu Adımları ───────────────────────────── */
@media (max-width: 768px) {
  .randevu-steps {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .step-item { min-width: 70px; }
  .step-label { font-size: .68rem; }
  .step-connector { max-width: 20px; min-width: 10px; }

  /* Hizmet seçim kartları */
  .service-select-card {
    padding: 14px 12px !important;
  }
  .service-select-card .service-name { font-size: .9rem; }
  .service-select-card .service-price { font-size: 1rem; }

  /* Takvim */
  .calendar-grid { gap: 3px; }
  .calendar-day { font-size: .78rem; border-radius: 6px; }

  /* Zaman slotları */
  .time-slots { gap: 7px; }
  .time-slot { padding: 8px 10px; font-size: .8rem; }
}

@media (max-width: 576px) {
  /* Randevu wizard adımları yatay scroll */
  .randevu-wizard-step { padding: 16px !important; }

  /* Takvim ayın adı */
  .calendar-nav { font-size: .85rem; }

  /* Zaman slotları 3 kolon */
  .time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .time-slot { text-align: center; justify-content: center; }
}

/* ── Sepet Sayfası ──────────────────────────────── */
@media (max-width: 768px) {
  .cart-item {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px;
  }
  .cart-item-img { width: 64px; height: 64px; }
  .cart-item > div:first-of-type { flex: 1; min-width: 120px; }

  /* Miktar kontrol + silme → alt satır */
  .cart-item .qty-btn,
  .cart-item .qty-input { font-size: .85rem; }

  .order-summary { padding: 20px 16px; }
}

@media (max-width: 576px) {
  .cart-item { padding: 12px; }
  .cart-item-img { width: 55px; height: 55px; }
}

/* ── Sepet Bildirimi (Popup) ────────────────────── */
@media (max-width: 576px) {
  .cart-notif-popup {
    right: 8px !important;
    left: 8px !important;
    max-width: none !important;
    min-width: auto !important;
    top: 70px !important;
  }
  .cart-notif-popup a { font-size: .78rem !important; padding: 8px 10px !important; }
}

/* ── Ödeme Bilgileri (Checkout) ─────────────────── */
@media (max-width: 768px) {
  .checkout-steps { gap: 4px; margin-bottom: 24px; }
  .checkout-step { padding: 6px 12px; font-size: .75rem; }
  .checkout-step-sep { font-size: 1rem; }

  /* Sipariş özeti sticky kaldır */
  .order-summary[style*="sticky"] { position: static !important; }
}

@media (max-width: 576px) {
  .payment-method-card { padding: 12px 14px; gap: 10px; }
  .payment-method-card > span:first-of-type { font-size: 1.2rem; }
}

/* ── Footer ─────────────────────────────────────── */
@media (max-width: 768px) {
  .footer { padding: 40px 0 20px; }
  .footer-brand { font-size: 1.4rem; }
  .footer-bottom .row { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom [class*="col-"] { text-align: center !important; }
  .social-links { justify-content: center; }

  /* Footer linkler yatay */
  .footer-links { display: flex; flex-wrap: wrap; gap: 6px 16px; }
  .footer-links li { margin-bottom: 0; }
  .footer-links a { font-size: .82rem; }
}

/* ── Hizmetler Sayfası ──────────────────────────── */
@media (max-width: 768px) {
  .hizmet-icon { font-size: 2.5rem !important; margin-bottom: 12px; }
  .hizmet-price-badge { font-size: .85rem; padding: 6px 12px; }
  .feature-list li { font-size: .85rem; }
}

/* ── Hakkımızda ─────────────────────────────────── */
@media (max-width: 768px) {
  .about-img { border-radius: 16px; margin-bottom: 24px; }
  .timeline-item { padding-left: 50px; }
  .timeline-dot { left: 12px; }
}

/* ── İletişim ───────────────────────────────────── */
@media (max-width: 768px) {
  .contact-info-item { padding: 16px; }
  .contact-form .venus-card { padding: 20px 16px; }
}

/* ── Admin Panel Mobil ──────────────────────────── */
@media (max-width: 992px) {
  .admin-content { margin-left: 0 !important; padding: 16px; }
  .admin-sidebar {
    transform: translateX(-100%);
    z-index: 1100;
    width: 260px;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-page-title { font-size: 1.3rem; }
  .admin-table { font-size: .82rem; }
  .admin-table th, .admin-table td { padding: 10px 8px; }
  .venus-card { padding: 16px; }
}

@media (max-width: 576px) {
  /* Admin tabloları yatay scroll */
  .table-responsive-venus { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 500px; }

  .admin-stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .stat-card { padding: 14px; }
}

/* ── Genel Buton Düzenlemeleri ──────────────────── */
@media (max-width: 576px) {
  .btn-primary-venus,
  .btn-outline-venus {
    padding: 11px 20px;
    font-size: .88rem;
  }

  /* Form kontrolleri */
  .form-control, .form-input {
    font-size: 16px !important; /* iOS zoom önle */
    padding: 10px 12px;
  }
  select.form-control, select.form-input {
    font-size: 16px !important;
  }
  textarea.form-control, textarea.form-input {
    font-size: 16px !important;
  }
}

/* ── WhatsApp Float Butonu ──────────────────────── */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    bottom: 16px !important;
    right: 16px !important;
    font-size: 1.5rem !important;
  }
  .whatsapp-float-tooltip { display: none !important; }
}

/* ── Küçük Yardımcılar ──────────────────────────── */
@media (max-width: 576px) {
  .hide-xs { display: none !important; }
  .text-center-xs { text-align: center !important; }
  .w-100-xs { width: 100% !important; }
  .mt-3-xs { margin-top: 1rem !important; }
  .gap-sm-xs { gap: .5rem !important; }

  /* Kartlar tam kenar boşluğu */
  .venus-card { padding: 16px 14px; border-radius: 12px; }

  /* Row gutter azalt */
  .row.g-4 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
  .row.g-3 { --bs-gutter-x: .75rem; --bs-gutter-y: .75rem; }
}

/* ── Tablo Overflow (Genel) ─────────────────────── */
@media (max-width: 768px) {
  .table-overflow-mobile {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
  }
}

/* ── Fiyatlandırma Kartları ─────────────────────── */
@media (max-width: 768px) {
  .pricing-card { margin-bottom: 16px; }
  .pricing-card.featured { transform: scale(1) !important; }
  .pricing-price { font-size: 2rem !important; }
}

/* ── Urun Detay ─────────────────────────────────── */
@media (max-width: 768px) {
  .product-detail-img { border-radius: 12px; margin-bottom: 20px; }
  .product-detail-price { font-size: 1.6rem !important; }
}


/* ── Hamburger Toggler Mobil ────────────────────── */
.navbar-toggler {
  background: rgba(255,107,53,0.1) !important;
  border: 1px solid rgba(255,107,53,0.3) !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  color: var(--primary) !important;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255,107,53,0.2) !important; }

/* Navbar mobil sağ taraf: sepet + toggler hizala */
@media (max-width: 991px) {
  .navbar > .container,
  .navbar > .container-fluid {
    display: flex;
    align-items: center;
  }
  /* Sepet ve toggler sağa yasla */
  .navbar-toggler { order: 3; margin-left: 8px; }
  .nav-cart-btn-wrapper { order: 2; margin-left: auto; }
}

/* ================================================================
   ANA SAYFA TAM MOBİL — index.php
   ================================================================ */

/* ── HERO: Mini Stats Kutuları ──────────────────── */
@media (max-width: 576px) {
  .hero .row.g-3.mt-4 .col-4 > div {
    padding: 10px 6px !important;
  }
  .hero .stat-number { font-size: 1.15rem !important; }
  .hero .col-4 > div > div:last-child { font-size: .65rem !important; }
}

/* ── HİZMETLER SECTION ──────────────────────────── */
@media (max-width: 768px) {
  #services .section-header { margin-bottom: 32px; }
  .section-title  { font-size: clamp(1.4rem, 5vw, 2.2rem) !important; }
  .section-subtitle { font-size: .92rem; }

  .service-card { margin-bottom: 0; }
  .service-card-img { height: 170px; }
  .service-card-body { padding: 18px; }
  .service-card-body h4 { font-size: .98rem; margin-bottom: 8px; }
  .service-card-body p  { font-size: .84rem; line-height: 1.55; margin-bottom: 12px; }
  .service-price { font-size: 1.15rem; }

  /* Randevu Al butonu tam genişlik */
  .service-card-body .btn-primary-venus {
    width: 100% !important;
    justify-content: center !important;
    font-size: .82rem !important;
    padding: 9px !important;
  }
}

@media (max-width: 576px) {
  /* 2 kolonlu grid */
  #services .row.g-4 > [class*="col-lg-4"] {
    width: 50% !important;
    padding-left: 8px;
    padding-right: 8px;
  }
  .service-card-img { height: 130px; }
  .service-card-body { padding: 12px; }
  .service-card-body h4 { font-size: .85rem; }
  .service-card-body p  { display: none; } /* küçük ekranda açıklamayı gizle */
  .service-price { font-size: 1rem; }
  .service-card-body .card-icon { width: 36px !important; height: 36px !important; font-size: 1.1rem !important; margin-bottom: 8px !important; }
}

/* ── NASIL ÇALIŞIR ──────────────────────────────── */
@media (max-width: 576px) {
  /* Adım kartları yatay scroll yerine 1 kolon */
  .how-it-works .col-lg-3 { width: 100% !important; }
  .how-it-works .venus-card { padding: 20px 16px; display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .how-it-works .card-icon { width: 50px !important; height: 50px !important; flex-shrink: 0; margin-bottom: 0 !important; }
  .how-it-works .step-number { font-size: 1.5rem !important; margin-bottom: 4px !important; }
  .how-it-works h5 { font-size: .95rem; margin-bottom: 4px; }
  .how-it-works p  { font-size: .82rem; margin-bottom: 0; }
}

/* ── VIP SECTION ────────────────────────────────── */
@media (max-width: 768px) {
  .vip-card { padding: 24px 18px; }
  .vip-card::before { font-size: 100px; opacity: .04; top: -10px; right: -10px; }
  .vip-badge-large { font-size: .8rem; padding: 6px 14px; margin-bottom: 14px; }

  /* VIP fiyat kutuları yatay sıralanır */
  .vip-card .d-flex.align-items-center.gap-4 {
    gap: 20px !important;
    flex-direction: row !important;
    justify-content: flex-start;
  }
  .vip-card .d-flex.align-items-center.gap-4 > div > div:last-child {
    font-size: 1.5rem !important;
  }

  /* VIP buton tam genişlik */
  .vip-card .mt-4 .btn-gold,
  .vip-card .mt-4 .btn-outline-venus {
    display: block;
    width: 100%;
    text-align: center;
    margin-right: 0 !important;
    margin-bottom: 10px;
  }

  /* VIP faydalar listesi */
  .vip-card ul li {
    padding: 8px 0 !important;
    font-size: .88rem;
  }
  .vip-card ul li span:first-child { font-size: 1.1rem !important; }

  /* Sağ taraftaki büyük crown ikonu mobilde gizle */
  #vip .col-lg-6:last-child { display: none; }
}

@media (max-width: 576px) {
  .vip-card { padding: 18px 14px; }
  #vip .col-lg-6:first-child { width: 100% !important; }
}

/* ── ÖĞELER (How-It-Works) ──────────────────────── */
@media (max-width: 768px) {
  /* 3 kart yan yana (md-6 Bootstrap zaten yapar) */
  .section-header { margin-bottom: 28px; }
}

/* ── ÖNE ÇIKAN ÜRÜNLER ──────────────────────────── */
@media (max-width: 576px) {
  /* 2 kolon zaten var (col-6), görsel kısalt */
  .product-card-img { height: 140px !important; }
  .product-card .p-3 { padding: 10px !important; }
  .product-card h6 { font-size: .78rem !important; margin-bottom: 6px !important; }
  .product-card .d-flex span { font-size: .85rem !important; }
  .product-card button { padding: 5px 10px !important; font-size: .7rem !important; }
}

/* ── YORUMLAR ───────────────────────────────────── */
@media (max-width: 768px) {
  .testimonial-card { padding: 20px 16px; }
  .testimonial-card p { font-size: .85rem; }
  .testimonial-avatar { width: 42px !important; height: 42px !important; font-size: 1rem !important; }
}

@media (max-width: 576px) {
  /* Yorumlar tek kolon */
  #yorumlar .col-lg-4 { width: 100% !important; }
  .stars-row { font-size: 1rem; }
}

/* ── CTA SECTION ────────────────────────────────── */
@media (max-width: 576px) {
  .cta-section .d-flex { flex-direction: column; align-items: center; }
  .btn-whatsapp, .cta-section .btn-primary-venus {
    width: 100% !important;
    max-width: 300px;
    justify-content: center;
  }
  .cta-section h2 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }
}

/* ── SCROLL İNDİKATÖR ───────────────────────────── */
@media (max-width: 576px) {
  .hero > div[style*="position:absolute"] { display: none; }
}

/* ── GENEL ROW BOŞLUKLAR ─────────────────────────── */
@media (max-width: 576px) {
  .row.g-5 { --bs-gutter-x: 1rem; --bs-gutter-y: 1.5rem; }
  .section { padding: 42px 0; }
}


/* ── Hero Kristal Top Mobil ─────────────────────── */
@media (max-width: 991px) {
  /* Tablet: kristal topu küçük ve ortalı göster */
  .hero-crystal {
    margin-top: 30px;
    justify-content: center !important;
  }
  .crystal-ball, .crystal-ball-img {
    width: 200px !important;
    height: 200px !important;
    font-size: 65px !important;
    margin: 0 auto;
  }
  /* Hero col sırası: önce içerik, sonra kristal */
  .hero .col-lg-6.hero-crystal {
    order: 2;
  }
  .hero .col-lg-6.hero-content {
    order: 1;
  }
}

@media (max-width: 576px) {
  .hero-crystal {
    margin-top: 20px;
  }
  .crystal-ball, .crystal-ball-img {
    width: 150px !important;
    height: 150px !important;
    font-size: 50px !important;
  }
  /* Çok küçük ekranda kristali gizle, yer kazandır */
  .hero .col-lg-6.hero-crystal { display: none !important; }
}

/* ── Hizmetler 2 Kolon Mobil Düzeltme ────────────── */
@media (max-width: 480px) {
  #services .row.g-4 > [class*="col-lg-4"] {
    width: 100% !important;
  }
  .service-card-body p { display: block !important; font-size: .82rem; }
}

/* ======== DANIŞMAN KARTLARI ======== */
.consultant-select-card {
  transition: all .25s ease;
  border: 2px solid var(--border-color) !important;
}
.consultant-select-card:hover {
  border-color: var(--primary) !important;
  background: rgba(255,107,53,0.08) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.15);
}
.consultant-select-card.selected {
  border-color: var(--primary) !important;
  background: rgba(255,107,53,0.12) !important;
}
.consultant-select-card .avatar-ring {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin: 0 auto 12px;
  display: block;
}

/* 5 adımlı wizard step göstergesi */
.randevu-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.step-item.done .step-circle {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  border-color: #28a745 !important;
}
.step-item.done .step-circle::after {
  content: '✓';
  font-size: .8rem;
}

/* Mobil: 5 adım için daha küçük */
@media (max-width: 576px) {
  .step-circle {
    width: 32px !important;
    height: 32px !important;
    font-size: .8rem !important;
  }
  .step-connector {
    width: 20px !important;
    min-width: 20px !important;
  }
  .randevu-steps > div > div:last-child {
    font-size: .65rem !important;
  }
}

/* ======== DANIŞMAN OL BUTONU ======== */
.btn-consultant-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #6f42c1, #9b59b6);
  color: #fff !important;
  border: 2px solid #6f42c1;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  letter-spacing: .3px;
}
.btn-consultant-apply:hover {
  background: linear-gradient(135deg, #5a32a3, #8e44ad);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(111,66,193,.4);
  color: #fff !important;
  text-decoration: none;
}

/* Ana sayfada Danışman Ol öne çıkar kutusu */
.consultant-cta-banner {
  background: linear-gradient(135deg, rgba(111,66,193,.12), rgba(155,89,182,.06));
  border: 1px solid rgba(111,66,193,.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-top: 40px;
}
.consultant-cta-banner h4 { color: #9b59b6; font-size: 1.2rem; margin-bottom: 10px; }

/* Başvuru formu onay badge */
.app-status-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
}
.app-status-pending  { background:rgba(255,215,0,.15);  color:#ffd700; border:1px solid rgba(255,215,0,.3); }
.app-status-approved { background:rgba(40,167,69,.15);  color:#28a745; border:1px solid rgba(40,167,69,.3); }
.app-status-rejected { background:rgba(220,53,69,.15);  color:#dc3545; border:1px solid rgba(220,53,69,.3); }

@media (max-width: 576px) {
  .btn-consultant-apply { padding: 10px 18px; font-size: .85rem; }
}

/* ======== DANIŞMAN KARTI (VIP kartının yanında) ======== */
.consultant-card {
  background: linear-gradient(135deg,
    rgba(111,66,193,0.12) 0%,
    rgba(155,89,182,0.06) 50%,
    rgba(26,10,46,0.8) 100%
  );
  border: 1px solid rgba(111,66,193,0.35);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(111,66,193,0.15);
}
.consultant-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(111,66,193,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.consultant-badge-large {
  display: inline-block;
  background: linear-gradient(135deg, #6f42c1, #9b59b6);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.consultant-card .section-title span {
  color: #b388ff !important;
}
.consultant-card .section-divider {
  background: linear-gradient(90deg, #6f42c1, transparent) !important;
}

/* Mobil */
@media (max-width: 768px) {
  .consultant-card { padding: 22px; }
  .consultant-card .section-title { font-size: 1.5rem; }
}

/* =========================================================
   VENUS MOBILE FINAL FIX
   Ana sayfa hero yuvarlak resim mobilde kesin görünür.
   Önceki sürümde 576px altında .hero-crystal gizleniyordu.
   ========================================================= */
.hero-crystal,
.hero .col-lg-6.hero-crystal {
  visibility: visible;
}

.crystal-ball-img,
.crystal-ball-img img {
  display: block;
}

.crystal-ball-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 44px;
  }

  .hero .row {
    text-align: center;
  }

  .hero-content,
  .hero-desc {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-crystal,
  .hero .col-lg-6.hero-crystal {
    display: flex !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 180px;
    margin-top: 22px;
    overflow: visible !important;
    order: 2;
  }

  .crystal-ball,
  .crystal-ball-img {
    width: clamp(170px, 48vw, 240px) !important;
    height: clamp(170px, 48vw, 240px) !important;
    min-width: 170px;
    min-height: 170px;
    flex: 0 0 auto;
  }

  .crystal-ring {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 86px;
    padding-bottom: 36px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-desc {
    font-size: .95rem;
    line-height: 1.65;
  }

  .hero .col-lg-6.hero-crystal {
    display: flex !important;
    min-height: 165px;
    margin-top: 18px;
  }

  .crystal-ball,
  .crystal-ball-img {
    width: 160px !important;
    height: 160px !important;
    min-width: 160px;
    min-height: 160px;
    font-size: 48px !important;
  }

  .hero-btns a {
    width: 100%;
    justify-content: center;
  }
}


/* =========================================================
   VENUS MOBILE HERO IMAGE HARD FIX
   Mobilde PC'deki yuvarlak resim butonların üstünde görünür.
   Desktop tasarıma dokunmaz.
   ========================================================= */
.hero-mobile-crystal { display: none; }

@media (max-width: 991.98px) {
  .hero > .container > .row > .hero-crystal { display: none !important; }
  .hero-mobile-crystal {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 18px auto 24px !important;
    min-height: 170px !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
  .hero-mobile-crystal .crystal-ball,
  .hero-mobile-crystal .crystal-ball-img {
    width: clamp(165px, 48vw, 230px) !important;
    height: clamp(165px, 48vw, 230px) !important;
    min-width: 165px !important;
    min-height: 165px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }
  .hero-mobile-crystal .crystal-ball-img img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    max-width: none !important;
  }
}
@media (max-width: 576px) {
  .hero-mobile-crystal {
    margin-top: 14px !important;
    margin-bottom: 22px !important;
    min-height: 158px !important;
  }
  .hero-mobile-crystal .crystal-ball,
  .hero-mobile-crystal .crystal-ball-img {
    width: 156px !important;
    height: 156px !important;
    min-width: 156px !important;
    min-height: 156px !important;
  }
}
