/* ═══════════════════════════════════════════
   ESTETIK HIZMET KATALOĞU — STYLES
   ═══════════════════════════════════════════ */

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

:root {
  /* Lacivert & Beyaz — premium klinik paleti */
  --navy: #150f3d;
  --navy-light: #1f174d;
  --navy-soft: #e8e6f0;
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-hero: #ffffff;
  --bg-modal: #ffffff;
  --bg-pill: #f0f3f7;
  --bg-pill-active: #150f3d;
  --text: #150f3d;
  --text-secondary: #2d2660;
  --text-muted: #5c5480;
  --accent: #150f3d;
  --accent-light: #e8ecf2;
  --border: #e2e7ee;
  --shadow: 0 2px 12px rgba(21, 15, 61, 0.06);
  --shadow-lg: 0 8px 32px rgba(21, 15, 61, 0.1);
  --wa-green: #25d366;
  --wa-green-dark: #1ebe57;
  --danger: #c53030;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;

  /* Mermer doku (hafif gri-beyaz geçiş) */
  --marble-bg: linear-gradient(160deg, #f8f9fb 0%, #f0f2f5 35%, #f5f6f8 70%, #fafbfc 100%);

  /* Typography — Serif + Script + Sans */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Landing alias */
  --clr-bg: var(--bg);
  --clr-cream: #f8f9fb;
  --clr-heading: var(--navy);
  --clr-text-soft: var(--text-secondary);
  --clr-card: var(--bg-card);
  --clr-border: var(--border);
  --clr-accent: var(--navy);
  --clr-pill: var(--bg-pill);
  --clr-text: var(--text);
  --ff-serif: var(--font-serif);
}

[data-theme="dark"] {
  --bg: #0f1623;
  --bg-card: #161f2e;
  --bg-hero: #0f1623;
  --bg-modal: #161f2e;
  --bg-pill: #1e2a3d;
  --bg-pill-active: #1f174d;
  --text: #e8ecf2;
  --text-secondary: #b8c4d4;
  --text-muted: #7d8fa3;
  --navy: #e8ecf2;
  --navy-light: #b8c4d4;
  --navy-soft: #2a3548;
  --accent: #5b8fd6;
  --accent-light: #150f3d;
  --border: #2a3548;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
  --marble-bg: linear-gradient(135deg, #131b28 0%, #161f2e 100%);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  transition: background var(--transition), color var(--transition);
  padding-bottom: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── HERO (lacivert & beyaz, mermer) ── */
.hero {
  background: var(--marble-bg);
  padding: 52px 16px 40px;
  text-align: center;
  position: relative;
}

.hero__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-decoration: none;
  background: transparent;
}

.hero__logo {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  vertical-align: middle;
}

.hero__logo--light {
  background: transparent;
}

/* Gece modu: beyaz logoyu göster (tema html'de data-theme="dark") */
.hero__logo--dark {
  display: none;
}
[data-theme="dark"] .hero__logo--light {
  display: none;
}
[data-theme="dark"] .hero__logo--dark {
  display: block;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
}

.hero__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero__ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(21, 15, 61, 0.25);
}

.hero__ai-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(21, 15, 61, 0.35);
}

.hero__print-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.hero__print-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg-card);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 10;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

.theme-toggle__icon--moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__icon--sun {
  display: none;
}

[data-theme="dark"] .theme-toggle__icon--moon {
  display: inline;
}

/* ── SEARCH BAR ── */
.search-bar {
  padding: 16px 0 0;
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--bg);
  transition: background var(--transition);
}

.search-bar__wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-bar__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-bar__input {
  width: 100%;
  padding: 12px 40px 12px 44px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--bg-card);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-bar__input::placeholder {
  color: var(--text-muted);
}

.search-bar__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(21, 15, 61, 0.12);
}

.search-bar__clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: var(--bg-pill);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.search-bar__clear.visible {
  display: flex;
}

.search-bar__clear:hover {
  background: var(--accent-light);
  color: var(--text);
}

/* ── CATEGORY BAR ── */
.category-bar {
  position: sticky;
  top: 56px;
  z-index: 89;
  background: var(--bg);
  padding: 12px 0;
  transition: background var(--transition);
}

.category-bar__scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-bar__scroll::-webkit-scrollbar {
  display: none;
}

.pill {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--bg-pill);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pill--active {
  background: var(--bg-pill-active);
  color: #fff;
  border-color: var(--bg-pill-active);
}

.pill--fav {
  background: transparent;
  border-color: var(--danger);
  color: var(--danger);
}

.pill--fav.pill--active {
  background: var(--danger);
  color: #fff;
}

/* ── QUICK FILTERS ── */
.quick-filters {
  padding: 8px 0 4px;
}

.quick-filters .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-filters__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.quick-filters__list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.qf-pill {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.qf-pill:hover {
  border-color: var(--accent);
}

.qf-pill--active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── RESULTS COUNT ── */
.results-count {
  padding: 10px 0 2px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 12px 0 24px;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ── SERVICE CARD ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
  transition: transform var(--transition);
}

[data-theme="dark"] .card__fav {
  background: rgba(42, 35, 24, 0.85);
}

.card__fav:hover {
  transform: scale(1.15);
}

.card__fav--active {
  animation: heartPop 0.35s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card__image:hover img {
  transform: scale(1.04);
}

.card__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-pill) 0%, var(--accent-light) 100%);
}

.card__image-icon {
  font-size: 2.2rem;
  line-height: 1;
  filter: grayscale(0.2);
}

.card__image-hint {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}


.card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__category {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.card__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.card__price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.card__price-note {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.card__wa {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--wa-green);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}

.card__wa:hover {
  background: var(--wa-green-dark);
  transform: scale(1.1);
}

.card__wa svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── MODAL / BOTTOM SHEET ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-modal);
  width: 100%;
  max-height: 92vh;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .modal-overlay {
    align-items: center;
  }

  .modal {
    max-width: 640px;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    transform: translateY(30px) scale(0.97);
    opacity: 0;
  }

  .modal-overlay.open .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal__close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px 0 0;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-pill);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}

.modal__close:hover {
  background: var(--accent-light);
}

.modal__body {
  padding: 20px 20px 32px;
}

.modal__handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 16px;
}

@media (min-width: 768px) {
  .modal__handle {
    display: none;
  }
}

.modal__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.modal__cat {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 16px;
}

.modal__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.modal__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.modal__meta-icon {
  font-size: 1.1rem;
}

.modal__price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.modal__price-note {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal__section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 20px 0 8px;
  color: var(--text);
}

.modal__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 16px 0;
  cursor: col-resize;
  background: var(--bg-pill);
  touch-action: none;
}

.ba-slider__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-slider__after-wrap .ba-slider__img {
  width: 200%;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}

.ba-slider__handle::after {
  content: "⟨ ⟩";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 4px;
}

.ba-slider__label {
  position: absolute;
  bottom: 8px;
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 3;
}

.ba-slider__label--before {
  left: 8px;
}

.ba-slider__label--after {
  right: 8px;
}

.ba-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: var(--bg-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 16px 0;
}

/* Modal Actions */
.modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.btn--wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}

.btn--wa:hover {
  background: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
  color: #fff;
}

.btn--compare {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--compare.added {
  background: var(--accent);
  color: #fff;
}

/* Related chips */
.modal__related {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.related-chip {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-pill);
  color: var(--text-secondary);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.related-chip:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── COMPARE BAR ── */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.compare-bar.visible {
  transform: translateY(0);
}

.compare-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.compare-bar__items {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}

.compare-bar__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-pill);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text);
}

.compare-bar__chip-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0;
  line-height: 1;
}

.compare-bar__chip-remove:hover {
  color: var(--danger);
}

.compare-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-bar__total {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  white-space: nowrap;
}

/* ── COMPARE TABLE OVERLAY ── */
.compare-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.compare-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.compare-table-wrap {
  background: var(--bg-modal);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.compare-overlay.open .compare-table-wrap {
  transform: scale(1);
}

.compare-table__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.compare-table-scroll {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.compare-table td {
  color: var(--text);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

/* ── FIXED WhatsApp FAB ── */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 100;
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.fab-wa.shifted {
  bottom: 90px;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg-card);
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-secondary);
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOAST ── */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 10px 20px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.85rem;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-10px);
  animation: toastIn 0.3s ease forwards, toastOut 0.3s ease 2.5s forwards;
  pointer-events: auto;
  white-space: nowrap;
}

@keyframes toastIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* ── PRINT ── */
@media print {
  .no-print,
  .fab-wa,
  .float-wa,
  .float-ig,
  .scroll-top,
  .compare-bar,
  .toast-container {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    padding-bottom: 0;
  }

  .hero {
    background: none;
    padding: 24px 0;
  }

  .hero__title {
    color: #000;
    font-size: 1.8rem;
  }

  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card__wa {
    display: none;
  }

  .card__fav {
    display: none;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.4s ease both;
}

.card:nth-child(2) { animation-delay: 0.05s; }
.card:nth-child(3) { animation-delay: 0.1s; }
.card:nth-child(4) { animation-delay: 0.15s; }
.card:nth-child(5) { animation-delay: 0.2s; }
.card:nth-child(6) { animation-delay: 0.25s; }

/* ── FOOTER ── */
.site-footer {
  text-align: center;
  padding: 32px 16px 16px;
}

.site-footer__admin {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.site-footer__admin:hover {
  opacity: 1;
  color: var(--accent);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 12px;
}

.site-footer__nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__nav a:hover {
  color: var(--accent);
}

/* ── Çerez banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  padding: 14px 20px;
  background: var(--bg-card, #1a1a1a);
  color: var(--text-soft, #ccc);
  font-size: 0.875rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner__text {
  margin: 0;
}

.cookie-banner__text a {
  color: var(--accent, #c76b8a);
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  opacity: 0.9;
}

.cookie-banner__btn {
  padding: 8px 18px;
  background: var(--accent, #c76b8a);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  opacity: 0.95;
}

/* ─── Floating WhatsApp (tüm sayfalarda) ─── */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green, #25d366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  font-size: 1.75rem;
  line-height: 1;
}

.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.float-wa:focus-visible {
  outline: 2px solid var(--wa-green, #25d366);
  outline-offset: 3px;
}

/* ─── Floating Instagram (WhatsApp'ın solunda) ─── */
.float-ig {
  position: fixed;
  bottom: 1.5rem;
  right: 5rem;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(188, 24, 136, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.float-ig:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(188, 24, 136, 0.5);
}

.float-ig:focus-visible {
  outline: 2px solid #dc2743;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .float-wa {
    bottom: 1rem;
    right: 1rem;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
  .float-ig {
    bottom: 1rem;
    right: 4.25rem;
    width: 52px;
    height: 52px;
  }
  .float-ig svg {
    width: 24px;
    height: 24px;
  }
}
