/* WC Social Login — Frontend Styles */
:root {
  --wcsl-radius: 8px;
  --wcsl-gap: 12px;
  --wcsl-transition: 0.2s ease;
}

.wcsl-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 18px;
  color: #888;
  font-size: 13px;
}

.wcsl-divider::before,
.wcsl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.wcsl-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--wcsl-gap);
  margin-bottom: 20px;
}

/* Base button */
.wcsl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--wcsl-radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  transition:
    transform var(--wcsl-transition),
    box-shadow var(--wcsl-transition),
    background var(--wcsl-transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.wcsl-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  text-decoration: none !important;
}

.wcsl-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Google */
.wcsl-btn--google {
  background: #fff;
  color: #1f1f1f !important;
  border-color: #dadce0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.wcsl-btn--google:hover {
  background: #f8f9fa;
  border-color: #c1c7d0;
}

/* Facebook */
.wcsl-btn--facebook {
  background: #1877f2;
  color: #fff !important;
  box-shadow: 0 1px 3px rgba(24, 119, 242, 0.25);
}

.wcsl-btn--facebook:hover {
  background: #1668d8;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.35);
}

/* Icons */
.wcsl-btn svg {
  flex-shrink: 0;
}

/* Responsive */
@media (min-width: 600px) {
  .wcsl-buttons {
    flex-direction: row;
  }
  .wcsl-btn {
    flex: 1;
  }
}
