/* Star Çelik — Bimos Diş Hekimi Sandalyeleri
   Temel stiller (Claude Design helmet base'inden birebir aktarıldı). */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #2f308c; }
a:hover { color: #00a9e8; }

/* ============ Ürün görsel slider'ı ============ */
[data-product-slider] { position: relative; }

.p-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #2f308c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s, box-shadow 0.2s;
}
[data-product-slider]:hover .p-arrow { opacity: 1; }
.p-arrow:hover { background: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12); }
.p-arrow--prev { left: 10px; }
.p-arrow--next { right: 10px; }

.p-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  gap: 6px;
  justify-content: center;
  z-index: 3;
}
.p-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(47, 48, 140, 0.22);
  cursor: pointer;
  padding: 0;
  transition: 0.25s;
}
.p-dot.is-active { background: #2f308c; width: 20px; border-radius: 4px; }

.p-swatch {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
.p-swatch:hover { transform: scale(1.18); }
.p-swatch.is-active { box-shadow: 0 0 0 2px #2f308c, 0 0 0 4px #fff, 0 1px 5px rgba(0, 0, 0, 0.16); }

/* ---- Ürün detay — büyük galeri varyantı ---- */
.pd-gallery .p-arrow {
  width: 44px;
  height: 44px;
  opacity: 1;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.pd-gallery .p-arrow--prev { left: 16px; }
.pd-gallery .p-arrow--next { right: 16px; }
.pd-gallery .p-arrow:hover { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16); }
.pd-gallery .p-dots { bottom: 18px; }

.pd-swatches .p-swatch {
  width: 26px;
  height: 26px;
  border: 3px solid #fff;
}
.pd-swatches .p-swatch.is-active {
  box-shadow: 0 0 0 2px #2f308c, 0 0 0 5px #fff, 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ============ Ürünler — kategori çipleri ============ */
.cat-chip {
  font-size: 0.84rem;
  font-weight: 500;
  color: #445164;
  background: #f1f2f2;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s;
}
.cat-chip:hover { color: #2f308c; background: #f0eef8; }
.cat-chip--active { color: #2f308c; background: #f0eef8; font-weight: 600; }

/* ============ Sabit iletişim kartı (sağ alt CTA) ============ */
.sc-sticky-help {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  width: min(320px, calc(100vw - 32px));
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(47, 48, 140, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
}
.sc-sticky-help--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
}
.sc-sticky-help__inner { padding: 18px 18px 16px; }
.sc-sticky-help__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.sc-sticky-help__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
  color: #333;
  letter-spacing: -0.02em;
  max-width: 190px;
}
.sc-sticky-help__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(47, 48, 140, 0.14);
  background: transparent;
  color: #2f308c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.25s;
}
.sc-sticky-help__close:hover {
  background: #f0eef8;
  border-color: rgba(47, 48, 140, 0.22);
}
.sc-sticky-help__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sc-sticky-help__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  text-decoration: none;
  transition: 0.25s;
}
.sc-sticky-help__link:hover { color: #2f308c; }
.sc-sticky-help__link-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f0eef8;
  color: #2f308c;
}
.sc-sticky-help__link--whatsapp { color: #445164; font-weight: 500; }
.sc-sticky-help__link--whatsapp .sc-sticky-help__link-icon { background: #25d366; color: #fff; }
.sc-sticky-help__link--accent { color: #2f308c; font-weight: 600; }
.sc-sticky-help__link--accent .sc-sticky-help__link-icon { background: rgba(0, 169, 232, 0.12); color: #00a9e8; }

/* FAB — varsayılan gizli; yalnızca mobilde, kart kapalıyken görünür */
.sc-sticky-help__fab { display: none; }

@media (max-width: 600px) {
  .sc-sticky-help { right: 16px; bottom: 16px; width: min(300px, calc(100vw - 32px)); border-radius: 20px; }
  .sc-sticky-help__inner { padding: 16px; }
  .sc-sticky-help__title { font-size: 1rem; max-width: 180px; }
  .sc-sticky-help__close { width: 34px; height: 34px; }
  .sc-sticky-help__link { font-size: 0.9rem; }

  /* Kapalı (FAB) durum — kartı gizle, yalnızca yuvarlak butonu göster */
  .sc-sticky-help.is-collapsed {
    width: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .sc-sticky-help.is-collapsed .sc-sticky-help__inner { display: none; }
  .sc-sticky-help__fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #2f308c;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(47, 48, 140, 0.4);
  }
  .sc-sticky-help:not(.is-collapsed) .sc-sticky-help__fab { display: none; }
}
