/* ==========================================================================
   İç sayfa başlık bandı (breadcrumb + başlık)
   Full-width arka plan, header'ın altına oturur.
   Admin'den: görsel, renk ve overlay ayarlanabilir.
   Tüm sayfalar (ürünler, kategoriler, kurumsal) aynı yapıyı kullanır.
   ========================================================================== */
.page-header {
  position: relative;
  width: 100%;
  float: left;
  clear: both;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 300px;
  background-color: #e8e9ea;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Tema clearfix / pseudo temizliği */
.page-header::before,
.page-header::after {
  display: none !important;
  content: none !important;
}

/* page-header'dan sonraki ilk element: float temizle + üst boşluk */
.page-header + main,
.page-header + .main-content,
.page-header + .sv-page {
  clear: both;
  padding-top: 0;
}

/* --- Overlay --- */
.page-header__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Görsel varken overlay: koyu karartma + ince nokta deseni */
.page-header.has-bg-image .page-header__overlay {
  background-color: rgba(0, 0, 0, 0.45);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

/* Renk (görsel yok) varken overlay: hafif karartma */
.page-header.has-bg-color .page-header__overlay {
  background-color: rgba(0, 0, 0, 0.15);
}

/* --- Inner container --- */
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
}

.page-header__inner::before,
.page-header__inner::after {
  display: none !important;
  content: none !important;
}

.page-header__content {
  text-align: center;
  width: 100%;
}

/* --- Başlık --- */
.page-header .page-header__title {
  margin: 0 0 0.6rem 0;
  color: #1a1a1a;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* --- Breadcrumb (tüm sayfalar için ortak) --- */
.page-header .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.5;
  background: transparent !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  text-align: center;
}

.page-header .breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-header .breadcrumb a:hover {
  color: #60b1ab;
}

.page-header .breadcrumb__sep {
  color: rgba(0, 0, 0, 0.35);
  margin: 0 0.4rem;
  user-select: none;
}

.page-header .breadcrumb span:last-of-type {
  color: #1a1a1a;
  font-weight: 600;
}

/* --- Görsel veya koyu renk arka planlı varyant: beyaz metin --- */
.page-header.has-bg-image .page-header__title,
.page-header.has-bg-color .page-header__title {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.page-header.has-bg-image .breadcrumb a,
.page-header.has-bg-color .breadcrumb a {
  color: rgba(255,255,255,0.85);
}
.page-header.has-bg-image .breadcrumb a:hover,
.page-header.has-bg-color .breadcrumb a:hover {
  color: #fff;
}

.page-header.has-bg-image .breadcrumb__sep,
.page-header.has-bg-color .breadcrumb__sep {
  color: rgba(255,255,255,0.45);
}

.page-header.has-bg-image .breadcrumb span:last-of-type,
.page-header.has-bg-color .breadcrumb span:last-of-type {
  color: rgba(255,255,255,0.95);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .page-header {
    min-height: 160px;
  }
  .page-header__inner {
    padding: 3.5rem 1rem 1.5rem;
    min-height: 160px;
  }
  .page-header .page-header__title {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   Savilva blok tasarım sistemi  (sv-)
   Tüm bloklar tema float grid'inden bağımsız, CSS Grid / Flexbox tabanlı.
   Container standardı: max-width 1400px, ortalanmış.
   ========================================================================== */

/* --- Sayfa kabı --- */
.sv-page {
  width: 100%;
  clear: both;
}

.sv-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .sv-container { padding: 1.5rem 1rem 2rem; }
}

/* --- Ortak blok boşluk --- */
.sv-block {
  margin-bottom: 2.5rem;
}
.sv-block:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Başlık bloğu (.sv-heading)
   ========================================================================== */
.sv-heading__title {
  font-weight: 700;
  color: #1a2f3d;
  margin: 0 0 0.35rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
h2.sv-heading__title { font-size: 1.75rem; }
h3.sv-heading__title { font-size: 1.35rem; }
h4.sv-heading__title { font-size: 1.1rem; }
h5.sv-heading__title { font-size: 1rem; }
h6.sv-heading__title { font-size: 0.9rem; }

/* ==========================================================================
   Zengin metin bloğu (.sv-richtext)
   ========================================================================== */
.sv-richtext__body {
  font-size: 0.975rem;
  line-height: 1.8;
  color: #444;
}
.sv-richtext__body p { margin: 0 0 1rem; }
.sv-richtext__body h2,
.sv-richtext__body h3,
.sv-richtext__body h4 { color: #1a2f3d; margin: 1.75rem 0 0.5rem; font-weight: 700; }
.sv-richtext__body h3 { font-size: 1.2rem; }
.sv-richtext__body ul,
.sv-richtext__body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.sv-richtext__body li { margin-bottom: 0.35rem; }
.sv-richtext__body img { max-width: 100%; height: auto; border-radius: 8px; }
.sv-richtext__body a { color: #60b1ab; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.sv-richtext__body a:hover { border-bottom-color: #60b1ab; }
.sv-richtext__body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #60b1ab;
  background: #f8fafa;
  border-radius: 0 8px 8px 0;
  color: #555;
  font-style: italic;
}

/* ==========================================================================
   Görsel + metin bloğu (.sv-imgtext)
   ========================================================================== */
.sv-imgtext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.sv-imgtext--reverse {
  direction: rtl;
}
.sv-imgtext--reverse > * {
  direction: ltr;
}

.sv-imgtext__media {
  border-radius: 12px;
  overflow: hidden;
  background: #f4f5f6;
}

.sv-imgtext__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

.sv-imgtext:hover .sv-imgtext__media img {
  transform: scale(1.03);
}

.sv-imgtext__placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 3rem;
}

.sv-imgtext__icon {
  display: inline-block;
  font-size: 2rem;
  color: #60b1ab;
  margin-bottom: 0.75rem;
}

.sv-imgtext__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2f3d;
  margin: 0 0 1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.sv-imgtext__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
}
.sv-imgtext__text p { margin: 0 0 0.75rem; }

@media (max-width: 767px) {
  .sv-imgtext {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sv-imgtext--reverse { direction: ltr; }
}

/* ==========================================================================
   SSS / Akordeon bloğu (.sv-faq)
   ========================================================================== */
.sv-faq__item {
  border: 1px solid #e8e9ea;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sv-faq__item[open] {
  border-color: #60b1ab;
  box-shadow: 0 2px 12px rgba(96, 177, 171, 0.08);
}

.sv-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.975rem;
  font-weight: 600;
  color: #1a2f3d;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}
.sv-faq__question::-webkit-details-marker { display: none; }

.sv-faq__question:hover { color: #60b1ab; }

.sv-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #999;
}

.sv-faq__item[open] .sv-faq__chevron {
  transform: rotate(180deg);
  color: #60b1ab;
}

.sv-faq__answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.925rem;
  line-height: 1.75;
  color: #555;
}

/* ==========================================================================
   İletişim bilgi kartları (.sv-contact-cards)
   ========================================================================== */
.sv-contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.sv-contact-cards__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.sv-contact-cards__card:hover {
  border-color: #60b1ab;
}

.sv-contact-cards__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(96, 177, 171, 0.12);
  color: #60b1ab;
  font-size: 1.25rem;
}

.sv-contact-cards__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2f3d;
  margin: 0 0 0.5rem;
}

.sv-contact-cards__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ==========================================================================
   İletişim formu (.sv-form)
   ========================================================================== */
.sv-contact-form {
  max-width: 640px;
}
.sv-contact-form__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2f3d;
  margin: 0 0 0.5rem;
}
.sv-contact-form__description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.sv-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 567px) {
  .sv-form__row { grid-template-columns: 1fr; }
}

.sv-form__group {
  display: flex;
  flex-direction: column;
}

.sv-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2f3d;
  margin-bottom: 0.35rem;
}

.sv-form__req { color: #e74c3c; }

.sv-form__input,
.sv-form__textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.925rem;
  border: 1px solid #d5d8dc;
  border-radius: 8px;
  background: #fff;
  color: #333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.sv-form__input:focus,
.sv-form__textarea:focus {
  outline: none;
  border-color: #60b1ab;
  box-shadow: 0 0 0 3px rgba(96, 177, 171, 0.12);
}

.sv-form__input--error,
.sv-form__textarea.sv-form__input--error {
  border-color: #e74c3c;
}

.sv-form__select {
  appearance: auto;
  cursor: pointer;
}

.sv-form__hint {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.25rem;
}

.sv-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.sv-form__error {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.25rem;
}

.sv-form__submit {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: #60b1ab;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.sv-form__submit:hover {
  background: #4d9b95;
  transform: translateY(-1px);
}

.sv-form__alert {
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.sv-form__alert--success {
  background: #d1f2eb;
  color: #0e6251;
  border: 1px solid #a3e4d7;
}

/* İletişim sayfası: compact iki sütun */
.sv-page--contact .sv-contact-page__row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .sv-page--contact .sv-contact-page__row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.sv-page--contact .sv-contact-page__info {
  display: block;
  position: sticky;
  top: 1rem;
}
@media (max-width: 767px) {
  .sv-page--contact .sv-contact-page__info {
    position: static;
  }
}
.sv-page--contact .sv-contact-page__form .sv-contact-form {
  max-width: none;
  padding: 0;
}

/* Sol: bilgi kartları – compact */
.sv-page--contact .sv-contact-cards__grid {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.sv-page--contact .sv-contact-cards__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 1rem;
  text-align: left;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}

.sv-page--contact .sv-contact-cards__card:hover {
  border-color: #60b1ab;
}

.sv-page--contact .sv-contact-cards__icon {
  margin: 0;
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(96, 177, 171, 0.12);
  color: #60b1ab;
}

.sv-page--contact .sv-contact-cards__body {
  flex: 1;
  min-width: 0;
}

.sv-page--contact .sv-contact-cards__title {
  margin: 0 0 0.25rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}

.sv-page--contact .sv-contact-cards__text {
  margin: 0;
  font-size: 0.85rem;
  color: #5b5b5b;
  line-height: 1.45;
}

/* Sağ: form – compact ve modern */
.sv-page--contact .sv-contact-form__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
  color: #1a1a1a;
}

.sv-page--contact .sv-contact-form__description {
  font-size: 0.875rem;
  color: #5b5b5b;
  margin: 0 0 1rem 0;
  line-height: 1.45;
}

.sv-page--contact .sv-contact-form .sv-form {
  gap: 0.75rem;
}

.sv-page--contact .sv-contact-form .sv-form__row {
  gap: 0.75rem;
}

.sv-page--contact .sv-contact-form .sv-form__label {
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6b7280;
}

.sv-page--contact .sv-contact-form .sv-form__input,
.sv-page--contact .sv-contact-form .sv-form__textarea,
.sv-page--contact .sv-contact-form .sv-form__select {
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 7px;
  border-color: #d1d5db;
  background-color: #f9fafb;
}

.sv-page--contact .sv-contact-form .sv-form__textarea {
  min-height: 100px;
  resize: vertical;
}

.sv-page--contact .sv-contact-form .sv-form__submit {
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 8px;
}
.sv-page--contact .sv-contact-form .sv-form__submit:hover {
  transform: none;
}

.sv-page--contact .sv-contact-form .sv-form__input:focus,
.sv-page--contact .sv-contact-form .sv-form__textarea:focus,
.sv-page--contact .sv-contact-form .sv-form__select:focus {
  border-color: #60b1ab;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(96, 177, 171, 0.35);
}

.sv-page--contact .sv-contact-form .sv-form__input::placeholder,
.sv-page--contact .sv-contact-form .sv-form__textarea::placeholder {
  color: #9ca3af;
}

.sv-page--contact .sv-contact-form .sv-form__alert {
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.sv-page--contact .sv-contact-form .sv-form__hint,
.sv-page--contact .sv-contact-form .sv-form__error {
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

/* ==========================================================================
   Galeri bloğu (.sv-gallery)
   ========================================================================== */
.sv-gallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--sv-gallery-cols, 3), 1fr);
  gap: 1rem;
}

.sv-gallery__item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f5f6;
  cursor: pointer;
}

.sv-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
  transition: transform 0.4s ease;
}

.sv-gallery__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .sv-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Video bloğu (.sv-video)
   ========================================================================== */
.sv-video__wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.sv-video__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   CTA / Buton bloğu (.sv-cta)
   ========================================================================== */
.sv-cta {
  text-align: center;
  padding: 1rem 0;
}

.sv-cta__btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: #fff;
  background: #60b1ab;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.sv-cta__btn:hover {
  background: #4d9b95;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96, 177, 171, 0.25);
  color: #fff;
}

/* ==========================================================================
   Görsel bloğu (.sv-image)
   ========================================================================== */
.sv-image__fig {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}
.sv-image__fig img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Ayırıcı (.sv-separator)
   ========================================================================== */
.sv-separator__line {
  border: none;
  border-top: 1px solid #e4e4e4;
  margin: 0;
}

/* ==========================================================================
   Harita bloğu (.sv-map)
   ========================================================================== */
.sv-map__wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #e8e9ea;
  line-height: 0;
}
.sv-map__wrap iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Ürün bloğu (.sv-products)
   ========================================================================== */
.sv-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 967px) {
  .sv-products__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 567px) {
  .sv-products__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Ekip bloğu (.sv-team) – modern kart tasarımı
   ========================================================================== */
.sv-team {
  width: 100%;
}

.sv-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sv-team__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-team__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.sv-team__photo {
  position: relative;
  aspect-ratio: 3 / 3.4;
  overflow: hidden;
  background: #f4f5f6;
}

.sv-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.sv-team__card:hover .sv-team__photo img {
  transform: scale(1.05);
}

.sv-team__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfc4c8;
}
.sv-team__placeholder svg {
  width: 40%;
  height: auto;
}

.sv-team__social {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(26, 47, 61, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sv-team__card:hover .sv-team__social {
  opacity: 1;
}

.sv-team__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1a2f3d;
  font-size: 15px;
  text-decoration: none;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.sv-team__card:hover .sv-team__social a {
  transform: translateY(0);
  opacity: 1;
}
.sv-team__card:hover .sv-team__social a:nth-child(2) { transition-delay: 0.05s; }
.sv-team__card:hover .sv-team__social a:nth-child(3) { transition-delay: 0.1s; }
.sv-team__card:hover .sv-team__social a:nth-child(4) { transition-delay: 0.15s; }

.sv-team__social a:hover {
  background: #60b1ab;
  color: #fff;
}

.sv-team__info {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
}

.sv-team__name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2f3d;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.sv-team__role {
  display: block;
  font-size: 0.825rem;
  font-weight: 500;
  color: #60b1ab;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 967px) {
  .sv-team__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 567px) {
  .sv-team__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .sv-team__photo { aspect-ratio: 1; }
}

/* ==========================================================================
   Kategori sidebar – kart görünümü (koleksiyon sayfaları)
   ========================================================================== */
.collection_sidebar {
  padding: 1.5rem !important;
  background: #fafafa !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.collection_sidebar h3 {
  margin: 0 0 1rem 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #1a2f3d !important;
}

.collection_sidebar ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.collection_sidebar li {
  margin-bottom: 0.5rem !important;
}

.collection_sidebar a {
  color: #444 !important;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.collection_sidebar a:hover,
.collection_sidebar a[style*="60b1ab"] {
  color: #60b1ab !important;
}

/* ==========================================================================
   Ana sayfa layout (.sv-home)
   ========================================================================== */
.sv-home {
  width: 100%;
  clear: both;
}

.sv-home-catalog-cta {
  background: #f7fafb;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.sv-home-catalog-cta__inner {
  max-width: 800px;
  margin: 0 auto;
}

.sv-home-catalog-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2f3d;
  margin: 0 0 0.75rem;
}

.sv-home-catalog-cta__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 1.5rem;
}

/* ==========================================================================
   Ürün kart bileşeni (.sv-product-card)
   Flat, gölgesiz, beyaz zeminli görseller için optimize.
   ========================================================================== */
.sv-product-card {
  list-style: none;
}

.sv-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sv-product-card__link:hover {
  border-color: #60b1ab;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sv-product-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.sv-product-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sv-product-card__info {
  display: block;
  padding: 0.75rem 0.85rem;
  text-align: center;
}

.sv-product-card__title {
  font-size: 0.8rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.sv-product-card__link:hover .sv-product-card__title {
  color: #60b1ab;
}

/* ==========================================================================
   Ürün listesi grid (.sv-product-grid)
   ========================================================================== */
.sv-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sv-product-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
  font-size: 0.95rem;
}

@media (max-width: 1199px) {
  .sv-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .sv-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 400px) {
  .sv-product-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Ürün detay sayfası (.sv-product-detail)
   ========================================================================== */
.sv-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 767px) {
  .sv-product-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.sv-product-detail__gallery {
  position: sticky;
  top: 1.5rem;
}

/* ==========================================================================
   Ürün galeri viewer (.sv-gallery-viewer)
   Ana görsel + alt thumbnail strip — e-ticaret standardı
   ========================================================================== */
.sv-gallery-viewer__main {
  border: 1px solid #ebebeb;
  background: #fff;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.sv-gallery-viewer__main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  padding: 1.5rem;
}

.sv-gallery-viewer__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.sv-gallery-viewer__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  margin: 0;
  border: 2px solid #ebebeb;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.sv-gallery-viewer__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  padding: 4px;
}

.sv-gallery-viewer__thumb:hover {
  border-color: #999;
}

.sv-gallery-viewer__thumb.is-active {
  border-color: #60b1ab;
}

.sv-gallery-viewer__empty {
  aspect-ratio: 1;
  background: #f4f5f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-gallery-viewer__empty svg {
  width: 40%;
  height: auto;
}

@media (max-width: 767px) {
  .sv-gallery-viewer__thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }
}

.sv-product-detail__title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #1a2f3d;
  margin: 0 0 1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.sv-product-detail__desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e9ea;
}

.sv-product-detail__section-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a2f3d;
  margin: 0 0 0.75rem;
}

.sv-product-detail__options {
  margin-bottom: 1.5rem;
}

.sv-product-detail__option-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
}

.sv-product-detail__option-label {
  font-weight: 600;
  color: #333;
}

.sv-product-detail__option-values {
  color: #555;
}

.sv-product-detail__option-sep {
  color: #ccc;
}

.sv-product-detail__swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
  margin-right: 2px;
}

.sv-product-detail__variants {
  margin-bottom: 1.5rem;
}

.sv-product-detail__table-wrap {
  overflow-x: auto;
  border: 1px solid #e8e9ea;
  border-radius: 8px;
}

.sv-product-detail__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.sv-product-detail__table th {
  padding: 0.6rem 1rem;
  text-align: left;
  background: #f8f9fa;
  font-weight: 600;
  color: #1a2f3d;
  border-bottom: 1px solid #e8e9ea;
}

.sv-product-detail__table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
}

.sv-product-detail__table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   Ürün detay tab sistemi (.sv-product-tabs)
   ========================================================================== */
.sv-product-tabs {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e9ea;
}

.sv-product-tabs__item {
  border: 1px solid #e8e9ea;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.sv-product-tabs__item[open] {
  border-color: #60b1ab;
  box-shadow: 0 2px 12px rgba(96, 177, 171, 0.08);
}

.sv-product-tabs__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2f3d;
  list-style: none;
  user-select: none;
}
.sv-product-tabs__trigger::-webkit-details-marker { display: none; }

.sv-product-tabs__chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #999;
}

.sv-product-tabs__item[open] .sv-product-tabs__chevron {
  transform: rotate(180deg);
  color: #60b1ab;
}

.sv-product-tabs__content {
  padding: 0 1.25rem 1.25rem;
}

.sv-product-promo {
  margin-top: 2rem;
}

/* ==========================================================================
   Pagination (.sv-pagination)
   ========================================================================== */
.sv-pagination {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e9ea;
  text-align: center;
}

.sv-pagination nav {
  display: inline-flex;
  gap: 0.25rem;
}

.sv-pagination span,
.sv-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.sv-pagination a {
  color: #555;
  background: #f4f5f6;
}

.sv-pagination a:hover {
  background: #60b1ab;
  color: #fff;
}

.sv-pagination span[aria-current="page"],
.sv-pagination .active > span {
  background: #60b1ab;
  color: #fff;
  font-weight: 600;
}

.sv-pagination .disabled > span {
  color: #ccc;
  background: transparent;
}


/* ==========================================================================
   Kategori şeridi – üstte yuvarlak tıklanabilir kategoriler (ürün listesi sayfası)
   ========================================================================== */
.category-strip {
  padding: 1.25rem 0;
  background: #fff;
  width: 100%;
  overflow: hidden;
}

.category-strip .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.category-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  align-items: flex-start;
}

.category-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #444;
  transition: color 0.2s ease, transform 0.15s ease;
  max-width: 88px;
  flex-shrink: 0;
}

.category-strip__item:hover {
  color: #60b1ab;
  transform: translateY(-2px);
}

.category-strip__item.is-active {
  color: #60b1ab;
}

.category-strip__item.is-active .category-strip__circle {
  border-color: #60b1ab;
  box-shadow: 0 0 0 2px rgba(96, 177, 171, 0.3);
}

.category-strip__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8e8e8;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.category-strip__item:hover .category-strip__circle {
  border-color: #60b1ab;
  background: #f0f9f8;
}

.category-strip__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-strip__circle .fas,
.category-strip__circle .fa {
  font-size: 1.35rem;
  color: #60b1ab;
}

.category-strip__label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  word-break: break-word;
}

/* Mobil: yatay kaydırma ile tek satır, sıkışma yok */
@media (max-width: 767px) {
  .category-strip {
    padding: 1rem 0;
  }
  .category-strip .container {
    padding: 0 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .category-strip__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 0.25rem;
    min-width: min-content;
  }
  .category-strip__item {
    max-width: 72px;
  }
  .category-strip__circle {
    width: 56px;
    height: 56px;
  }
  .category-strip__label {
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   Blog – liste ve yazı sayfası (SEO uyumlu, erişilebilir)
   ========================================================================== */
.sv-blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.sv-blog-cats__item {
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  color: #555;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.sv-blog-cats__item:hover {
  color: #60b1ab;
}
.sv-blog-cats__item.is-active {
  background: #60b1ab;
  color: #fff;
}

.sv-blog-list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .sv-blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sv-blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sv-blog-card {
  list-style: none;
}
.sv-blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #ebebeb;
  transition: border-color 0.2s;
  height: 100%;
}
.sv-blog-card__link:hover {
  border-color: #60b1ab;
}
.sv-blog-card__img-wrap {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8eaed;
}
.sv-blog-card__img-wrap a {
  display: block;
  height: 100%;
  text-decoration: none;
}
.sv-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Anasayfa Son Yazılar: aynı yükseklik (blog listesi ile aynı aspect-ratio) */
.blog-post-type-4 .home-blog-image.sv-blog-card__img-wrap {
  width: 100%;
}
.blog-post-type-4 .home-blog-image.sv-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-blog-card__body {
  display: block;
  padding: 1rem 1.1rem;
}
.sv-blog-card__category {
  font-size: 0.75rem;
  color: #60b1ab;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.35rem;
}
.sv-blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sv-blog-card__link:hover .sv-blog-card__title {
  color: #60b1ab;
}
.sv-blog-card__excerpt {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 0.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sv-blog-card__date {
  font-size: 0.8rem;
  color: #999;
}
.sv-blog-list__empty {
  padding: 2rem;
  text-align: center;
  color: #666;
}

.sv-blog-post__featured {
  margin-bottom: 1.5rem;
  border: 1px solid #ebebeb;
  overflow: hidden;
  background: #fff;
}
.sv-blog-post__featured img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.sv-blog-post__header {
  margin-bottom: 1.5rem;
}
.sv-blog-post__category {
  font-size: 0.8rem;
  color: #60b1ab;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.sv-blog-post__category:hover {
  text-decoration: underline;
}
.sv-blog-post__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.sv-blog-post__date {
  font-size: 0.9rem;
  color: #777;
}
.sv-blog-post__body {
  margin-top: 1rem;
}
.sv-blog-post__body h2 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}
.sv-blog-post__body h3 {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
}
.sv-blog-post__body p {
  margin: 0 0 1rem;
  line-height: 1.65;
}
.sv-blog-post__body img {
  max-width: 100%;
  height: auto;
}

/* Blog detay – iki sütun: sol sidebar (kategori + benzer), sağ içerik */
.sv-page--blog-detail .sv-blog-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 992px) {
  .sv-page--blog-detail .sv-blog-detail {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }
}
.sv-blog-detail__sidebar {
  position: sticky;
  top: 1.5rem;
}
@media (max-width: 991px) {
  .sv-blog-detail__sidebar {
    position: static;
    order: 1;
  }
  .sv-blog-detail__main {
    order: 0;
  }
}

/* Sidebar kategorileri – ana listedeki .sv-blog-cats ile aynı stil, dikey sıralı */
.sv-blog-detail__sidebar-cats.sv-blog-cats {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.sv-blog-detail__sidebar-cats .sv-blog-cats__item {
  display: block;
  text-align: left;
}

/* Sidebar benzer yazılar – ana listedeki kart stili, görsel ve özet yok */
.sv-blog-detail__sidebar-related {
  margin-top: 0;
}
.sv-blog-detail__sidebar-related-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2f3d;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #60b1ab;
}
.sv-blog-detail__sidebar .sv-blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.sv-blog-post__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.sv-blog-post__back {
  font-size: 0.95rem;
  color: #60b1ab;
  text-decoration: none;
}
.sv-blog-post__back:hover {
  text-decoration: underline;
}

/* Blog detay – ilgili yazılar */
.sv-blog-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.sv-blog-related__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: #1a2f3d;
}
.sv-blog-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sv-blog-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* (eski collection/product CSS kaldırıldı — artık sv-product-* kullanılıyor) */
