/* GORUCK REVIEW SPECIFIC STYLES */

/* Mobile Navigation Toggle - Extracted from inline styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e63946;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  text-shadow: 0 0 4px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

/* Scroll Reveal Integration for Articles */
.article-premium section.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.article-premium section.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhance existing premium styles for better flow */
.article-body-premium section {
  margin-bottom: 4rem;
}

/* Add subtle hover effects to key elements */
.highlight-box-premium {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.verdict-box-premium:hover {
  transform: scale(1.02);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #2a9d8f;
}

.breadcrumbs .separator {
  color: #4b5563;
}

.breadcrumbs .current {
  color: #e9ecef;
  font-weight: 500;
}

/* ===== QUICK SPECS BOX ===== */
.quick-specs-box {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
  border: 1px solid rgba(42, 157, 143, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.quick-specs-box h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #2a9d8f;
  font-weight: 700;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 1rem;
  font-weight: 600;
  color: #e9ecef;
}

.spec-value.rating {
  color: #fbbf24;
  font-size: 1.1rem;
}

.specs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #2a9d8f 0%, #1f7a6d 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.specs-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
}

/* ===== TABLE OF CONTENTS ===== */
.article-toc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.article-toc h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #e9ecef;
  font-weight: 700;
}

.article-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: decimal;
}

.article-toc li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.article-toc a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.article-toc a:hover {
  color: #2a9d8f;
}

/* ===== PRICE COMPARISON BOX ===== */
.price-comparison-box {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.price-comparison-box h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #fbbf24;
  font-weight: 700;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.price-table th,
.price-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-table th {
  color: #9ca3af;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-table td {
  color: #e9ecef;
}

.price-table td small {
  color: #9ca3af;
  font-size: 0.8em;
}

.price-table .highlight-row {
  background: rgba(42, 157, 143, 0.1);
}

.price-table .highlight-row td {
  color: #2a9d8f;
}

.price-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #d1d5db;
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-articles h3 {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  color: #e9ecef;
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.related-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(42, 157, 143, 0.3);
  transform: translateY(-3px);
}

.related-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.related-content h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #e9ecef;
  font-weight: 600;
}

.related-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.4;
}

/* ===== ARTICLE CTA BOX ===== */
.article-cta-box {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(230, 57, 70, 0.05) 100%);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.article-cta-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #e9ecef;
  font-weight: 700;
}

.article-cta-box p {
  margin: 0 0 1.5rem;
  color: #d1d5db;
  font-size: 0.95rem;
}

.article-cta-box .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 640px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-table {
    font-size: 0.8rem;
  }
  
  .price-table th,
  .price-table td {
    padding: 0.5rem 0.5rem;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .article-toc {
    padding: 1.25rem 1.5rem;
  }
  
  .quick-specs-box {
    padding: 1.25rem;
  }
}
