/* Sosyal Login Butonları */
.auth-social {
  margin-bottom: 18px;
}
.auth-social-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #94A3B8;
  font-size: 12.5px;
}
.auth-social-divider::before,
.auth-social-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E2E8F0;
}
.auth-social-btns {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  background: #fff;
  color: #0F172A;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  cursor: pointer;
}
.auth-social-btn:hover {
  border-color: #0E9F8E;
  background: #F0FDFA;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}
.auth-social-btn.google:hover { border-color: #4285F4; background: #F8FAFF; }
.auth-social-btn.facebook:hover { border-color: #1877F2; background: #F0F4FF; }
.auth-social-btn svg { flex-shrink: 0; }
.auth-social-note {
  text-align: center;
  font-size: 11.5px;
  color: #94A3B8;
  margin-top: 6px;
}

/* Quick View Butonu */
.pd-quick-view {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: all .2s;
  z-index: 5;
  color: #0F172A;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.pd-quick-view:hover {
  background: #0E9F8E;
  color: #fff;
  border-color: #0E9F8E;
}
.pd-product-card:hover .pd-quick-view,
.pd-card:hover .pd-quick-view {
  opacity: 1;
  transform: translateY(0);
}
.pd-product-card,
.pd-card {
  position: relative;
}

/* Quick View Modal */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: qvFadeIn .2s;
}
.qv-overlay.show { display: flex; }
@keyframes qvFadeIn { from { opacity: 0 } to { opacity: 1 } }
.qv-card {
  background: #fff;
  border-radius: 18px;
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  animation: qvSlideUp .25s;
}
@keyframes qvSlideUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@media (max-width: 768px) {
  .qv-card { grid-template-columns: 1fr; }
}
.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: rgba(0,0,0,.7);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  display: grid;
  place-items: center;
  z-index: 5;
  line-height: 1;
}
.qv-img {
  background: #F0FDFA;
  display: grid;
  place-items: center;
  padding: 24px;
  min-height: 360px;
}
.qv-img img { max-width: 100%; max-height: 360px; object-fit: contain; }
.qv-body { padding: 24px 26px 26px; }
.qv-body h3 { margin: 0 0 8px; font-size: 19px; color: #0F172A; }
.qv-brand { font-size: 12px; color: #94A3B8; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.qv-price { font-size: 26px; font-weight: 800; color: #0E9F8E; margin: 12px 0; }
.qv-old-price { font-size: 15px; color: #94A3B8; text-decoration: line-through; margin-left: 8px; font-weight: 500; }
.qv-desc { font-size: 13.5px; color: #475569; line-height: 1.55; margin: 12px 0 16px; max-height: 110px; overflow: hidden; }
.qv-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.qv-meta span { font-size: 12px; padding: 4px 10px; background: #F1F5F9; border-radius: 99px; color: #475569; }
.qv-actions { display: flex; gap: 10px; }
.qv-actions a, .qv-actions button { flex: 1; padding: 12px; border-radius: 10px; font-size: 13.5px; font-weight: 600; text-align: center; border: 0; cursor: pointer; }
.qv-actions .qv-cart { background: #0E9F8E; color: #fff; }
.qv-actions .qv-cart:hover { background: #0A6F62; }
.qv-actions .qv-detail { background: #F1F5F9; color: #0F172A; }
.qv-actions .qv-detail:hover { background: #E2E8F0; }

/* Cross-sell */
.cs-block {
  background: linear-gradient(135deg, #F0FDFA, #fff);
  border: 1.5px solid #99F6E4;
  border-radius: 14px;
  padding: 20px;
  margin-top: 20px;
}
.cs-title { font-size: 16px; font-weight: 700; color: #0F172A; margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.cs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.cs-item { background: #fff; border-radius: 10px; padding: 12px; text-align: center; border: 1px solid #E2E8F0; transition: all .15s; }
.cs-item:hover { border-color: #0E9F8E; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,.06); }
.cs-item img { width: 100%; height: 100px; object-fit: contain; margin-bottom: 8px; }
.cs-item .cs-n { font-size: 12.5px; color: #0F172A; line-height: 1.3; min-height: 32px; max-height: 32px; overflow: hidden; }
.cs-item .cs-p { font-size: 14px; font-weight: 700; color: #0E9F8E; margin-top: 6px; }
.cs-item .cs-add { background: #0E9F8E; color: #fff; border: 0; padding: 6px 10px; border-radius: 6px; font-size: 11.5px; font-weight: 600; cursor: pointer; margin-top: 6px; }
.cs-item .cs-add:hover { background: #0A6F62; }
