/* Public marketplace custom styles */
.line-clamp-1 { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-grid > .col-span-full {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .product-grid .product-card {
    min-width: 0;
  }

  .mobile-product-row .mobile-product-item:nth-child(n+10) { display: none; }
  .mobile-product-row.show-all .mobile-product-item { display: block; }
}
  --brand-glow: rgba(37, 99, 235, 0.12);
  --accent-glow: rgba(255, 122, 0, 0.15);
}

body {
  background:
    radial-gradient(circle at 0% 0%, var(--brand-glow), transparent 35%),
    radial-gradient(circle at 100% 10%, var(--accent-glow), transparent 30%),
    #f4f8ff;
}

.glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.hero-gradient {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 122, 0, 0.18), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.22), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 55%, #fff7ef 100%);
}

.stat-pill {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #eceef2;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.search-bar {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #ff7a00);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.footer-link {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  transform: translateX(3px);
}

.google-auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin: 0 0 18px;
  border-top: 1px solid #eceef2;
  border-bottom: 1px solid #eceef2;
}

.google-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: 260px;
  max-width: 100%;
  padding: 11px 20px;
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: #ffffff;
  color: #3c4043;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.google-auth-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 6px rgba(60, 64, 67, 0.12);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eceef2;
}
