/* SharkByte - Shared Styles */

/* Base Typography */
body {
  font-family: 'Inter', sans-serif;
}

/* Hero Section Gradient Overlay */
.hero-gradient {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.85) 100%);
}

/* Glow Effect for Buttons */
.glow {
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.3);
}

/* Card Hover Effect */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Product Image Container */
.product-image-container {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

/* Price Tag Styling */
.price-tag {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Shop Button Primary */
.btn-shop {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  transition: all 0.3s ease;
}

.btn-shop:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

/* Technical Report Prose */
.prose-report {
  line-height: 1.8;
}

.prose-report h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose-report h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose-report p {
  margin-bottom: 1.25rem;
}

.prose-report ul, .prose-report ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose-report li {
  margin-bottom: 0.5rem;
}

/* Spec Table */
.spec-table {
  border-collapse: separate;
  border-spacing: 0;
}

.spec-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

/* Badge Styling */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-blue {
  background-color: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-green {
  background-color: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-amber {
  background-color: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Navigation Active State */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Quantity Selector */
.qty-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Feature Icon Container */
.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 0.75rem;
}

/* Animated Gradient Border */
.gradient-border {
  position: relative;
  background: #0f172a;
  border-radius: 1rem;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #3b82f6);
  border-radius: inherit;
  z-index: -1;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Sticky Header Blur */
.header-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Report Sidebar */
.report-sidebar {
  position: sticky;
  top: 6rem;
}

/* Scroll Margin for Anchors */
[id] {
  scroll-margin-top: 5rem;
}
