/* ==========================================================================
   TecnoVista - Main Stylesheet
   Spanish Tech Review Website
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. External Font & Icon Imports
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* --------------------------------------------------------------------------
   2. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg-primary:    #0d0d0d;
  --bg-secondary:  #1a1a1a;
  --bg-tertiary:   #121212;
  --card-surface:  #1e1e1e;

  /* Brand Colours */
  --accent-primary:   #FF6B2C;
  --accent-secondary: #00C9DB;

  /* Gradients */
  --gradient-a: linear-gradient(135deg, #FF6B2C, #FFB800);
  --gradient-b: linear-gradient(135deg, #0066FF, #00C9DB);
  --gradient-c: linear-gradient(135deg, #D946EF, #FF6B9D);

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted:     #6B6B6B;

  /* UI */
  --border:             #2a2a2a;
  --star:               #FFB800;
  --success:            #22C55E;
  --warning:            #EAB308;
  --danger:             #EF4444;
  --border-radius-card: 12px;
  --border-radius-btn:  8px;
  --transition:         all 0.3s ease;
}

/* --------------------------------------------------------------------------
   3. CSS Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 72px;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   4. Layout Helpers
   -------------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */
h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--border-radius-btn);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient-a);
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 44, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
  background: rgba(255, 107, 44, 0.1);
  color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 44, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-secondary);
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   7. Cards (Base)
   -------------------------------------------------------------------------- */
.card {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   8. Header & Navigation
   -------------------------------------------------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

#site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.site-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.logo-dot {
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-cta {
  color: var(--accent-primary) !important;
  font-weight: 600 !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* Mobile Menu Overlay */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

#mobile-menu.open {
  display: flex;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu-links li {
  margin: 16px 0;
}

.mobile-menu-links a {
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.mobile-menu-links a:hover {
  color: var(--accent-primary);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* --------------------------------------------------------------------------
   9. Skip Link (Accessibility)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-primary);
  color: #ffffff;
  padding: 8px 16px;
  z-index: 10001;
  transition: top 0.2s ease;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0 0 var(--border-radius-btn) 0;
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   10. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 107, 44, 0.02) 0px,
    rgba(255, 107, 44, 0.02) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-label {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 107, 44, 0.2));
}

/* --------------------------------------------------------------------------
   11. Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 0;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   12. Category Cards
   -------------------------------------------------------------------------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  padding: 32px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: var(--text-primary);
  border-top: 3px solid transparent;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  color: var(--text-primary);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.category-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.category-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.category-badge {
  display: inline-block;
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-secondary);
  background: rgba(0, 201, 219, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Category card border variants */
.border-a {
  border-top-color: #FF6B2C;
}

.border-b {
  border-top-color: #00C9DB;
}

.border-c {
  border-top-color: #D946EF;
}

/* --------------------------------------------------------------------------
   13. Analysis Badges
   -------------------------------------------------------------------------- */
.analysis-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Badge colour variants by category */
.badge-smartphones {
  background: rgba(255, 107, 44, 0.15);
  color: #FF6B2C;
}

.badge-electrodomesticos {
  background: rgba(0, 102, 255, 0.15);
  color: #00C9DB;
}

.badge-audio {
  background: rgba(217, 70, 239, 0.15);
  color: #D946EF;
}

.badge-informatica {
  background: rgba(255, 107, 44, 0.15);
  color: #FFB800;
}

.badge-hogar {
  background: rgba(0, 102, 255, 0.15);
  color: #0066FF;
}

.badge-pequeno {
  background: rgba(217, 70, 239, 0.15);
  color: #FF6B9D;
}

.badge-analisis {
  background: rgba(255, 107, 44, 0.15);
  color: #FF6B2C;
}

.badge-guia {
  background: rgba(0, 201, 219, 0.15);
  color: #00C9DB;
}

.badge-comparativa {
  background: rgba(217, 70, 239, 0.15);
  color: #D946EF;
}

/* --------------------------------------------------------------------------
   14. Featured Analysis Section
   -------------------------------------------------------------------------- */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Large card spans the left column vertically */
.featured-card-large {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.featured-card-large .card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  flex-shrink: 0;
}

.featured-card-large .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Right column: stack of small cards */
.featured-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Small card: horizontal layout */
.featured-card-small {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  height: 160px;
}

.featured-card-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.featured-card-small .card-image-wrapper {
  width: 35%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.featured-card-small .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-small .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Featured card HTML class aliases (match the HTML generated by agents) */
.featured-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.featured-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-card-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.featured-small-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featured-card-small-image {
  width: 35%;
  flex-shrink: 0;
  overflow: hidden;
}

.featured-card-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-small-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Score displays */
.score-large {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  color: var(--star);
  font-weight: 500;
  line-height: 1;
}

.score-small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.25rem;
  color: var(--star);
  font-weight: 500;
}

.article-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   15. Methodology Steps
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  position: relative;
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-text {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. Analysis Grid (Listings)
   -------------------------------------------------------------------------- */
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.analysis-card {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.analysis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.analysis-card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.analysis-card-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.analysis-card:hover .analysis-card-image {
  transform: scale(1.04);
}

.analysis-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

.analysis-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.analysis-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.analysis-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.analysis-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   17. Guides Grid
   -------------------------------------------------------------------------- */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.guide-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-primary);
  line-height: 1;
  display: block;
}

.guide-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Guide featured grid */
.guide-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.guide-featured-card {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.guide-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.guide-featured-card.border-a::before {
  background: var(--gradient-a);
}

.guide-featured-card.border-b::before {
  background: var(--gradient-b);
}

.guide-featured-card.border-c::before {
  background: var(--gradient-c);
}

.guide-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   18. CTA / Newsletter Section
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-a);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-a);
}

.cta-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form input {
  background: var(--card-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--border-radius-btn);
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.cta-form input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.15);
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.legal-note {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 8px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   19. Forms (General)
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.925rem;
}

.form-control {
  width: 100%;
  background: #1e1e1e;
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--border-radius-btn);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-select {
  width: 100%;
  background: #1e1e1e;
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--border-radius-btn);
  padding: 14px 40px 14px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.form-check-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  cursor: pointer;
}

.form-error {
  display: none;
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 6px;
  align-items: center;
  gap: 6px;
}

.form-error.visible {
  display: flex;
  align-items: center;
  gap: 6px;
}

.success-message {
  background: var(--card-surface);
  border-left: 4px solid var(--success);
  padding: 20px 24px;
  border-radius: 0 var(--border-radius-btn) var(--border-radius-btn) 0;
  display: none;
  align-items: center;
  gap: 16px;
}

.success-message.visible {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   20. Filter Bar
   -------------------------------------------------------------------------- */
.filter-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.filter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.filter-pill.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #ffffff;
}

.filter-sort select {
  background: var(--card-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--border-radius-btn);
  outline: none;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* --------------------------------------------------------------------------
   21. Pagination
   -------------------------------------------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

.page-btn:hover {
  background: var(--border);
  color: var(--text-primary);
}

.page-btn.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #ffffff;
}

.page-btn-arrow {
  border-radius: var(--border-radius-btn);
  width: auto;
  padding: 8px 16px;
}

/* --------------------------------------------------------------------------
   22. Analysis Detail Page
   -------------------------------------------------------------------------- */
.detail-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

/* Product Gallery */
.product-gallery {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  padding: 24px;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-thumbnail {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--border-radius-btn);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.product-thumbnail.active,
.product-thumbnail:hover {
  opacity: 1;
  border-color: var(--accent-primary);
}

/* Score Block */
.score-block {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  padding: 24px;
  margin: 24px 0;
}

.score-main {
  font-family: 'JetBrains Mono', monospace;
  font-size: 4rem;
  color: var(--star);
  line-height: 1;
  font-weight: 500;
}

.score-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 4px;
}

/* Mini score bars */
.mini-scores {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.mini-score-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-score-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  min-width: 120px;
  flex-shrink: 0;
}

.mini-score-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.mini-score-fill {
  height: 100%;
  background: var(--gradient-a);
  border-radius: 3px;
  width: 0;
  transition: width 1s ease;
}

.mini-score-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--star);
  min-width: 30px;
  text-align: right;
  flex-shrink: 0;
}

/* Table of Contents Sidebar */
.toc-sidebar {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.toc-sidebar h4 {
  margin-bottom: 16px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: block;
}

.toc-list a:hover,
.toc-list a.active {
  color: var(--accent-primary);
}

/* Analysis Content Layout */
.analysis-content {
  max-width: 800px;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 1.75rem;
}

.content-section h2 i {
  color: var(--accent-primary);
  font-size: 1.5rem;
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.pros-box,
.cons-box {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  padding: 24px;
}

.pros-box h4,
.cons-box h4 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-primary);
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.925rem;
  border-bottom: 1px solid var(--border);
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

.pros-list li i {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.cons-list li i {
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Comparison & Specs Tables */
.comparison-table,
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

.comparison-table th,
.specs-table th {
  background: #2a2a2a;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.comparison-table td,
.specs-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.comparison-table tr:nth-child(even) td,
.specs-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:last-child td,
.specs-table tr:last-child td {
  border-bottom: none;
}

/* Verdict Block */
.verdict-block {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  padding: 32px;
  border-top: 3px solid var(--accent-primary);
}

/* --------------------------------------------------------------------------
   23. Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--accent-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--text-primary);
}

.breadcrumb span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.breadcrumb i {
  color: var(--text-muted);
  font-size: 0.6rem;
}

/* --------------------------------------------------------------------------
   24. Page Header
   -------------------------------------------------------------------------- */
.page-header {
  background: var(--bg-primary);
  padding: 60px 0;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   25. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  transition: background 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.accordion-header i {
  transition: transform 0.3s ease;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body.open {
  max-height: 500px;
}

.accordion-body-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   26. Process Steps (Solicitud / Detail)
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
}

.process-step-icon {
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.process-step-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------------------------------------------------
   27. Contact Info
   -------------------------------------------------------------------------- */

/* Contact page two-column grid (info panel + form) */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
}

/* Guías page — "Gadgets por menos de 100€" two-column layout */
.guide-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item i {
  color: var(--accent-primary);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-info-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-text strong {
  color: var(--text-primary);
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   28. Legal Pages
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 48px;
  font-size: 1.5rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-secondary);
  padding-left: 24px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent-secondary);
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: var(--text-primary);
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 48px;
}

/* --------------------------------------------------------------------------
   29. Cookie Banner & Modal
   -------------------------------------------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-surface);
  border-top: 1px solid var(--border);
  z-index: 9999;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.875rem;
  min-width: 200px;
  margin: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal-overlay.visible {
  display: flex;
}

.cookie-modal {
  background: #1e1e1e;
  border-radius: var(--border-radius-card);
  padding: 32px;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.cookie-modal > p {
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}

.cookie-toggle-row:last-of-type {
  border-bottom: none;
}

.cookie-toggle-info h5 {
  color: var(--text-primary);
  font-size: 0.925rem;
  margin-bottom: 4px;
}

.cookie-toggle-info p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2a2a2a;
  border-radius: 13px;
  transition: background 0.3s ease;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   30. Scroll Reveal Animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   31. Decorative Elements
   -------------------------------------------------------------------------- */
.gradient-divider {
  height: 2px;
  max-width: 200px;
  margin: 32px auto 0;
  background: var(--gradient-a);
  border: none;
  border-radius: 1px;
  display: block;
}

/* Star rating display */
.star-display {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--star);
  font-size: 0.875rem;
}

/* Reading time / meta info pill */
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   32. Utility Classes
   -------------------------------------------------------------------------- */
.text-muted     { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-accent    { color: var(--accent-primary); }
.text-cyan      { color: var(--accent-secondary); }
.text-success   { color: var(--success); }
.text-warning   { color: var(--warning); }
.text-danger    { color: var(--danger); }
.text-star      { color: var(--star); }
.text-center    { text-align: center; }
.text-right     { text-align: right; }
.mt-auto        { margin-top: auto; }
.mb-0           { margin-bottom: 0 !important; }
.fw-mono        { font-family: 'JetBrains Mono', monospace; }

.bg-secondary   { background: var(--bg-secondary); }
.bg-tertiary    { background: var(--bg-tertiary); }
.bg-card        { background: var(--card-surface); }

.d-flex         { display: flex; }
.align-center   { align-items: center; }
.justify-between{ justify-content: space-between; }
.gap-8          { gap: 8px; }
.gap-12         { gap: 12px; }
.gap-16         { gap: 16px; }

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   33. Accessible Focus Styles
   -------------------------------------------------------------------------- */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   34. Footer
   -------------------------------------------------------------------------- */
#site-footer {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h5 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   35. Analysis Detail - Full Layout
   -------------------------------------------------------------------------- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.detail-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Buy box / affiliate CTA */
.buy-box {
  background: var(--card-surface);
  border-radius: var(--border-radius-card);
  padding: 24px;
  border-top: 3px solid var(--accent-primary);
}

.buy-box-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 4px;
}

.buy-box-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

/* Tag / pill elements */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--border);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* Notification / Alert strips */
.alert {
  padding: 16px 20px;
  border-radius: var(--border-radius-btn);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.alert-info {
  background: rgba(0, 201, 219, 0.08);
  border-left: 3px solid var(--accent-secondary);
  color: var(--text-secondary);
}

.alert-success {
  background: rgba(34, 197, 94, 0.08);
  border-left: 3px solid var(--success);
  color: var(--text-secondary);
}

.alert-warning {
  background: rgba(234, 179, 8, 0.08);
  border-left: 3px solid var(--warning);
  color: var(--text-secondary);
}

.alert i {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--card-surface) 25%,
    #2a2a2a 50%,
    var(--card-surface) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Back-to-top button */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 500;
  font-size: 1rem;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: #e55a1f;
}

/* --------------------------------------------------------------------------
   36. Social Share Buttons
   -------------------------------------------------------------------------- */
.share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--border-radius-btn);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: #ffffff;
}

.share-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #ffffff;
}

.share-twitter  { background: #1d9bf0; }
.share-facebook { background: #1877f2; }
.share-whatsapp { background: #25d366; }
.share-copy     { background: var(--border); color: var(--text-secondary); }

/* Section padding utility */
.section { padding: 100px 0; }
