/* ============================================================
   ŞILE PLİSE PERDE — MAIN CSS
   Sayfa özel stilleri ve ek bileşenler
   ============================================================ */

/* ── Placeholder görsel düzeltmesi ──────────────────────── */
.gallery-item { position: relative; }

/* ── Scroll smooth anchor offset (sticky header) ──────── */
[id] { scroll-margin-top: 80px; }

/* ── Accordion hover ───────────────────────────────────── */
.accordion-item:hover .accordion-btn:not(.active) {
  background: var(--color-gray-50);
}

/* ── Tab nav scrollbar gizle ───────────────────────────── */
.tabs-nav::-webkit-scrollbar { display: none; }
.tabs-nav { -ms-overflow-style: none; scrollbar-width: none; }

/* ── Region tag hover rengi ────────────────────────────── */
.region-tag:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ── Step line desktop ──────────────────────────────────── */
@media (min-width: 769px) {
  .step-line { display: block !important; }
}

/* ── Galeri placeholder her zaman flex ──────────────────── */
.gallery-item img + .gallery-placeholder {
  display: none;
}

/* ── Swatch hover gölge ─────────────────────────────────── */
.swatch:hover .swatch__color {
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* ── Product card visual pattern ────────────────────────── */
.product-card__visual {
  background: linear-gradient(135deg, var(--color-bg-section) 0%, var(--color-primary-xlight) 100%);
}

/* ── Montaj card hover fix ──────────────────────────────── */
.montaj-card:hover {
  box-shadow: var(--shadow-md);
}

/* ── Focus ring global ──────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .site-header, .floating-actions, .scroll-top, .mobile-nav { display: none !important; }
  body { font-size: 12pt; }
  .section { padding-block: 1.5rem; }
}

/* ── Animasyon: section fade-in ─────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .card, .product-card, .montaj-card, .step-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .card.visible, .product-card.visible, .montaj-card.visible, .step-item.visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Prefers reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
