/*
Theme Name: Astra Child - ShotCamera
Description: Modern dark photography theme for shotecamera.com with logo branding
Version: 2.0
Template: astra
*/

@import url('../astra/style.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

/* ==========================================
   BRAND COLOR SYSTEM - ShotCamera Dark Theme
   ========================================== */
:root {
  --sc-black: #0A0A0A;
  --sc-dark: #1A1A1A;
  --sc-dark-2: #222222;
  --sc-orange: #FF6B35;
  --sc-orange-dark: #E55A2B;
  --sc-white: #FFFFFF;
  --sc-gray-light: #F5F5F5;
  --sc-gray: #888888;
  --sc-border: #2A2A2A;
  
  /* Legacy vars for backward compat */
  --primary-dark: #1A1A1A;
  --primary-light: #FAFAFA;
  --accent-orange: #FF6B35;
  --soft-gray: #F5F5F5;
  --text-gray: #888888;
  --border-light: #E5E5E5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Text', serif;
  line-height: 1.7;
  color: #222;
  background: #FAFAFA;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a { transition: color 0.3s ease; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--sc-orange) 0%, var(--sc-orange-dark) 100%);
  color: white !important;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--sc-orange) !important;
  padding: 14px 28px;
  border: 2px solid var(--sc-orange);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.btn-secondary:hover {
  background: var(--sc-orange);
  color: white !important;
  transform: translateY(-2px);
}

/* ==========================================
   SECTION LAYOUTS
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--sc-orange) 0%, var(--sc-orange-dark) 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1A1A1A;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--sc-gray);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-footer {
  text-align: center;
  margin-top: 50px;
}

/* ==========================================
   CARDS
   ========================================== */
.article-card,
.post-card,
.review-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
}

.article-card:hover,
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
  border-color: rgba(255,107,53,0.15);
}

/* ==========================================
   REVIEW CARD (AutoScribe)
   ========================================== */
.review-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: var(--sc-orange) !important;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: none !important;
  cursor: pointer;
  width: 100%;
}

.review-card__button:hover {
  background: var(--sc-orange-dark) !important;
  color: white !important;
}

/* ==========================================
   AUTOSCRIBE SHORTCODES
   ========================================== */
.autoscribe-trends-grid,
.asr-grid {
  display: grid !important;
  gap: 28px !important;
  margin: 40px 0 !important;
}

.autoscribe-trends-grid,
.asr-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
}

.trend-card,
.asr-card {
  background: white !important;
  border-radius: 14px !important;
  padding: 25px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
}

.trend-card:hover,
.asr-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12) !important;
}

.trend-card h3 a,
.asr-card h3 a {
  color: #1A1A1A !important;
  text-decoration: none !important;
  font-family: 'Inter', sans-serif !important;
}

.trend-card h3 a:hover,
.asr-card h3 a:hover {
  color: var(--sc-orange) !important;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #FF6B35, #E55A2B); border-radius: 4px; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .section-title { font-size: 1.9rem; }
  .section-subtitle { font-size: 1rem; }
  .autoscribe-trends-grid, .asr-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* ==========================================
   SHARED PAGE STYLES — all inner pages
   ========================================== */

/* Page Hero */
.sc-page-hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 60%, #222 100%);
    padding: 80px 0 70px;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FF6B35;
}
.sc-page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,.08), transparent 60%);
    pointer-events: none;
}
.sc-page-hero .sc-container { position: relative; z-index: 1; }
.sc-page-hero h1 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 900; margin: 16px 0 16px; color: #fff; letter-spacing: -.02em; line-height: 1.15; }
.sc-page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0; line-height: 1.7; }
.sc-highlight { color: #FF6B35; }

/* Breadcrumb */
.sc-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: #666; font-family: 'Inter',sans-serif; margin-bottom: 10px; }
.sc-breadcrumb a { color: #888; text-decoration: none; transition: color .2s; }
.sc-breadcrumb a:hover { color: #FF6B35; }
.sc-breadcrumb span { color: #555; }

/* Section wrappers */
.sc-section { padding: 90px 0; }
.sc-section--white { background: #fff; }
.sc-section--gray  { background: #f8f9fa; }
.sc-section--dark  { background: #1A1A1A; }

/* Section header */
.sc-section-header { text-align: center; margin-bottom: 56px; }
.sc-section-header h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: #1A1A1A; margin: 12px 0 0; letter-spacing: -.02em; }

/* Badge */
.sc-badge { display: inline-block; padding: 7px 18px; background: linear-gradient(135deg,#FF6B35,#E55A2B); color: #fff; border-radius: 50px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Inter',sans-serif; }

/* Split layout */
.sc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.sc-split__text h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: #1a1a1a; margin: 14px 0 20px; line-height: 1.2; }
.sc-split__text p { color: #666; line-height: 1.8; margin-bottom: 18px; font-size: 1.05rem; }
.sc-split__image img { width: 100%; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.12); }

/* Stats row */
.sc-stats-row { display: flex; gap: 30px; margin-top: 36px; }
.sc-stat { text-align: center; padding: 20px 24px; background: #f8f9fa; border-radius: 12px; flex: 1; border-bottom: 3px solid #FF6B35; }
.sc-stat__num { display: block; font-size: 2rem; font-weight: 900; color: #FF6B35; font-family: 'Inter',sans-serif; line-height: 1; }
.sc-stat__label { display: block; font-size: .82rem; color: #888; font-family: 'Inter',sans-serif; text-transform: uppercase; letter-spacing: .5px; margin-top: 6px; }

/* 4-col grid */
.sc-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* Value cards */
.sc-value-card { background: #fff; border-radius: 14px; padding: 32px 24px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.07); border-bottom: 3px solid transparent; transition: all .3s; }
.sc-value-card:hover { border-bottom-color: #FF6B35; transform: translateY(-4px); }
.sc-value-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.sc-value-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin: 0 0 10px; font-family: 'Inter',sans-serif; }
.sc-value-card p { color: #888; font-size: .9rem; margin: 0; line-height: 1.6; }

/* Team grid */
.sc-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.sc-team-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: transform .3s; }
.sc-team-card:hover { transform: translateY(-5px); }
.sc-team-card__img { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; border: 3px solid #FF6B35; }
.sc-team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sc-team-card h3 { font-size: 1.15rem; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; font-family: 'Inter',sans-serif; }
.sc-team-card__role { display: block; color: #FF6B35; font-weight: 600; font-size: .85rem; margin-bottom: 12px; font-family: 'Inter',sans-serif; }
.sc-team-card p { color: #888; font-size: .9rem; line-height: 1.6; margin: 0; }

/* CTA Strip */
.sc-cta-strip { background: linear-gradient(135deg,#1A1A1A,#0A0A0A); padding: 70px 0; border-top: 2px solid #FF6B35; }
.sc-cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.sc-cta-strip h2 { color: #fff; font-size: 1.8rem; margin: 0 0 8px; font-family: 'Inter',sans-serif; }
.sc-cta-strip p { color: #888; margin: 0; }

/* Archive grid */
.sc-archive-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 28px; }
.sc-archive-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: all .3s; border: 1px solid rgba(0,0,0,.05); display: flex; flex-direction: column; }
.sc-archive-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.sc-archive-card__img { height: 220px; overflow: hidden; }
.sc-archive-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.sc-archive-card:hover .sc-archive-card__img img { transform: scale(1.05); }
.sc-archive-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.sc-archive-card__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; font-size: .82rem; font-family: 'Inter',sans-serif; }
.sc-archive-card__date { color: #aaa; }
.sc-archive-card__cat { padding: 3px 10px; background: rgba(255,107,53,.1); color: #FF6B35; border-radius: 20px; font-weight: 700; font-size: .75rem; text-transform: uppercase; text-decoration: none; }
.sc-archive-card__title { font-size: 1.2rem; margin: 0 0 10px; line-height: 1.4; font-family: 'Inter',sans-serif; }
.sc-archive-card__title a { color: #1a1a1a; text-decoration: none; transition: color .2s; }
.sc-archive-card__title a:hover { color: #FF6B35; }
.sc-archive-card__excerpt { color: #888; font-size: .93rem; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.sc-read-more { color: #FF6B35; text-decoration: none; font-weight: 600; font-size: .9rem; font-family: 'Inter',sans-serif; margin-top: auto; transition: gap .2s; display: inline-flex; align-items: center; gap: 6px; }
.sc-read-more:hover { gap: 10px; }

/* Pagination */
.sc-pagination { margin-top: 50px; text-align: center; }
.sc-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.sc-pagination .page-numbers { padding: 10px 16px; border-radius: 8px; background: #fff; color: #555; text-decoration: none; font-family: 'Inter',sans-serif; font-weight: 500; box-shadow: 0 2px 8px rgba(0,0,0,.07); transition: all .2s; }
.sc-pagination .page-numbers.current,.sc-pagination .page-numbers:hover { background: #FF6B35; color: #fff; }

/* Empty state */
.sc-empty-state { text-align: center; padding: 80px 20px; }
.sc-empty-state__icon { font-size: 4rem; margin-bottom: 20px; }
.sc-empty-state h2 { font-size: 1.8rem; color: #1a1a1a; margin-bottom: 12px; }
.sc-empty-state p { color: #888; margin-bottom: 28px; }

/* Contact page */
.sc-contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.sc-contact-form-wrap h2,.sc-contact-info h2 { font-size: 1.6rem; color: #1a1a1a; margin-bottom: 24px; font-family: 'Inter',sans-serif; font-weight: 800; }
.sc-contact-form { background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.sc-form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sc-form-group { margin-bottom: 20px; }
.sc-form-group label { display: block; font-size: .85rem; font-weight: 600; color: #444; margin-bottom: 7px; font-family: 'Inter',sans-serif; }
.sc-form-group input,.sc-form-group select,.sc-form-group textarea { width: 100%; padding: 12px 15px; border: 1.5px solid #e5e5e5; border-radius: 8px; font-size: .95rem; font-family: 'Inter',sans-serif; color: #333; background: #fafafa; transition: border-color .2s; outline: none; }
.sc-form-group input:focus,.sc-form-group select:focus,.sc-form-group textarea:focus { border-color: #FF6B35; background: #fff; }
.sc-form-group textarea { resize: vertical; }
.sc-form-submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 6px; }
.sc-form-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #15803d; padding: 18px 22px; border-radius: 10px; font-weight: 600; font-family: 'Inter',sans-serif; margin-bottom: 20px; }
.sc-contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.sc-contact-card { background: #fff; border-radius: 12px; padding: 20px 22px; box-shadow: 0 3px 12px rgba(0,0,0,.06); display: flex; align-items: flex-start; gap: 16px; border-left: 3px solid #FF6B35; }
.sc-contact-card__icon { font-size: 1.6rem; flex-shrink: 0; }
.sc-contact-card h4 { margin: 0 0 4px; font-family: 'Inter',sans-serif; font-size: .9rem; font-weight: 700; color: #1a1a1a; }
.sc-contact-card p { margin: 0 0 3px; color: #FF6B35; font-weight: 600; font-size: .95rem; }
.sc-contact-card span { font-size: .8rem; color: #aaa; font-family: 'Inter',sans-serif; }
.sc-contact-note { background: rgba(255,107,53,.07); border: 1px solid rgba(255,107,53,.2); border-radius: 12px; padding: 20px; }
.sc-contact-note h4 { margin: 0 0 8px; font-family: 'Inter',sans-serif; font-size: .9rem; color: #1a1a1a; }
.sc-contact-note p { margin: 0; color: #888; font-size: .88rem; line-height: 1.6; }

/* Responsive */
@media(max-width:1024px) {
    .sc-grid-4 { grid-template-columns: repeat(2,1fr); }
    .sc-team-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
    .sc-section { padding: 60px 0; }
    .sc-split { grid-template-columns: 1fr; gap: 36px; }
    .sc-stats-row { flex-direction: column; gap: 14px; }
    .sc-grid-4 { grid-template-columns: 1fr 1fr; }
    .sc-team-grid { grid-template-columns: 1fr; }
    .sc-cta-strip__inner { flex-direction: column; text-align: center; }
    .sc-contact-grid { grid-template-columns: 1fr; }
    .sc-form-row--2col { grid-template-columns: 1fr; }
    .sc-archive-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
    .sc-grid-4 { grid-template-columns: 1fr; }
    .sc-page-hero h1 { font-size: 2rem; }
}

/* ==========================================
   CATEGORY PAGES — Camera, Lens, Tutorials, Gear
   ========================================== */

/* Hero icon */
.sc-hero-icon { font-size: 3.5rem; margin-bottom: 10px; display: block; }

/* Hero color accents per page */
.sc-page-hero--cameras { background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 100%); }
.sc-page-hero--lenses  { background: linear-gradient(135deg, #0A0A0A 0%, #1a2e1a 100%); }
.sc-page-hero--tutorials { background: linear-gradient(135deg, #0A0A0A 0%, #2e1a2e 100%); }
.sc-page-hero--gear    { background: linear-gradient(135deg, #0A0A0A 0%, #2e1a0a 100%); }

/* Hero pills */
.sc-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sc-hero-pills span { padding: 5px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 50px; font-size: .8rem; color: rgba(255,255,255,.7); font-family: 'Inter', sans-serif; }

/* Filter bar */
.sc-filter-bar { background: #fff; border-bottom: 1px solid #eee; padding: 14px 0; position: sticky; top: 78px; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.sc-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sc-filter-label { font-size: .82rem; font-weight: 700; color: #888; font-family: 'Inter', sans-serif; white-space: nowrap; margin-right: 4px; }
.sc-filter-btn { padding: 7px 16px; border: 1.5px solid #e5e5e5; border-radius: 50px; background: transparent; color: #666; font-size: .83rem; font-family: 'Inter', sans-serif; font-weight: 500; cursor: pointer; transition: all .2s; white-space: nowrap; }
.sc-filter-btn:hover, .sc-filter-btn.is-active { background: #FF6B35; border-color: #FF6B35; color: #fff; }

/* Featured Review */
.sc-featured-review { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 8px 30px rgba(0,0,0,.1); border: 1px solid rgba(255,107,53,.1); position: relative; margin-bottom: 20px; }
.sc-featured-review__badge { position: absolute; top: 20px; right: 20px; background: linear-gradient(135deg,#FF6B35,#E55A2B); color: #fff; padding: 6px 14px; border-radius: 50px; font-size: .78rem; font-weight: 700; font-family: 'Inter', sans-serif; }
.sc-featured-review__content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.sc-featured-review__text h2 { font-size: clamp(1.5rem,2.5vw,2rem); color: #1a1a1a; margin: 14px 0 16px; line-height: 1.25; }
.sc-featured-review__text p { color: #666; line-height: 1.7; margin-bottom: 20px; }
.sc-rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.sc-rating-stars { color: #FF6B35; font-size: 1.1rem; letter-spacing: 2px; }
.sc-rating-score { font-size: 1.1rem; font-weight: 800; color: #1a1a1a; font-family: 'Inter', sans-serif; }
.sc-rating-tag { padding: 4px 12px; background: rgba(34,197,94,.1); color: #15803d; border-radius: 20px; font-size: .78rem; font-weight: 700; font-family: 'Inter', sans-serif; }
.sc-spec-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.sc-spec-chips span { padding: 5px 12px; background: #f5f5f5; color: #444; border-radius: 6px; font-size: .8rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.sc-featured-review__img { position: relative; }
.sc-featured-review__img img { width: 100%; border-radius: 14px; object-fit: cover; max-height: 340px; }
.sc-price-tag { position: absolute; bottom: 14px; left: 14px; background: rgba(0,0,0,.8); color: #fff; padding: 8px 16px; border-radius: 8px; font-weight: 700; font-family: 'Inter', sans-serif; font-size: .9rem; }

/* Buying guide cards */
.sc-buying-guide-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.sc-buying-card { background: #f8f9fa; border-radius: 14px; padding: 28px 22px; border-bottom: 3px solid transparent; transition: all .3s; }
.sc-buying-card:hover { border-bottom-color: #FF6B35; transform: translateY(-3px); background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.sc-buying-card span { font-size: 2rem; display: block; margin-bottom: 12px; }
.sc-buying-card h4 { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; font-family: 'Inter', sans-serif; }
.sc-buying-card p { color: #888; font-size: .88rem; line-height: 1.5; margin: 0 0 14px; }

/* Lens comparison table */
.sc-lens-table-wrap { overflow-x: auto; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.sc-lens-table { width: 100%; border-collapse: collapse; background: #fff; }
.sc-lens-table thead { background: #1a1a1a; }
.sc-lens-table thead th { padding: 14px 18px; color: #ccc; font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; text-align: left; }
.sc-lens-table__row td { padding: 16px 18px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; font-family: 'Inter', sans-serif; font-size: .9rem; color: #444; }
.sc-lens-table__row td strong { display: block; color: #1a1a1a; font-weight: 700; margin-bottom: 2px; }
.sc-lens-table__row td span { font-size: .75rem; color: #FF6B35; font-weight: 600; }
.sc-lens-table__row--top { background: rgba(255,107,53,.04); }
.sc-lens-table__row:hover { background: #fafafa; }
.sc-score { padding: 4px 12px; border-radius: 20px; font-weight: 800; font-size: .9rem; }
.sc-score--high { background: rgba(34,197,94,.12); color: #15803d; }
.sc-score--med  { background: rgba(234,179,8,.12); color: #a16207; }
.sc-table-btn { padding: 7px 14px; background: #FF6B35; color: #fff; border-radius: 6px; text-decoration: none; font-size: .82rem; font-weight: 600; font-family: 'Inter', sans-serif; white-space: nowrap; transition: background .2s; }
.sc-table-btn:hover { background: #E55A2B; }

/* Learning paths */
.sc-learning-paths { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sc-path-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); display: flex; flex-direction: column; }
.sc-path-card__head { padding: 30px 28px 24px; border-bottom: 1px solid #f0f0f0; flex: 1; }
.sc-path-card--beginner .sc-path-card__head { border-top: 4px solid #22c55e; }
.sc-path-card--intermediate .sc-path-card__head { border-top: 4px solid #7c3aed; }
.sc-path-card--advanced .sc-path-card__head { border-top: 4px solid #0f766e; }
.sc-path-card__level { display: inline-block; font-size: .78rem; font-weight: 700; font-family: 'Inter', sans-serif; color: #888; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.sc-path-card__head h3 { font-size: 1.15rem; color: #1a1a1a; margin: 0 0 10px; font-family: 'Inter', sans-serif; font-weight: 800; }
.sc-path-card__head p { color: #888; font-size: .9rem; line-height: 1.6; margin: 0; }
.sc-path-card__steps { list-style: none; padding: 20px 28px; margin: 0; }
.sc-path-card__steps li { padding: 8px 0; border-bottom: 1px solid #f5f5f5; color: #555; font-size: .9rem; font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 8px; }
.sc-path-card__steps li::before { content: '✓'; color: #FF6B35; font-weight: 700; flex-shrink: 0; }
.sc-path-card .btn-primary { margin: 0 28px 28px; display: block; text-align: center; }

/* Gear showcase */
.sc-gear-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.sc-gear-pick--large { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); display: flex; flex-direction: column; }
.sc-gear-pick__img { position: relative; height: 260px; overflow: hidden; }
.sc-gear-pick__img img { width: 100%; height: 100%; object-fit: cover; }
.sc-gear-pick__badge { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,.75); color: #fff; padding: 6px 14px; border-radius: 50px; font-size: .78rem; font-weight: 700; font-family: 'Inter', sans-serif; }
.sc-gear-pick__info { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.sc-gear-pick__info h3 { font-size: 1.3rem; color: #1a1a1a; margin: 8px 0 0; font-family: 'Inter', sans-serif; font-weight: 800; }
.sc-gear-pick__info p { color: #666; line-height: 1.6; font-size: .95rem; margin: 0; flex: 1; }
.sc-gear-pick__meta { display: flex; align-items: center; justify-content: space-between; }
.sc-gear-pick__price { font-size: 1.1rem; color: #1a1a1a; font-family: 'Inter', sans-serif; }
.sc-gear-picks-side { display: flex; flex-direction: column; gap: 14px; }
.sc-gear-pick-sm { background: #fff; border-radius: 14px; padding: 18px; box-shadow: 0 4px 16px rgba(0,0,0,.06); display: flex; align-items: center; gap: 16px; transition: transform .25s; }
.sc-gear-pick-sm:hover { transform: translateY(-2px); }
.sc-gear-pick-sm img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.sc-gear-pick-sm__tag { display: block; font-size: .75rem; font-weight: 700; color: #FF6B35; font-family: 'Inter', sans-serif; margin-bottom: 4px; }
.sc-gear-pick-sm h4 { font-size: .95rem; color: #1a1a1a; margin: 0 0 5px; font-family: 'Inter', sans-serif; line-height: 1.3; }
.sc-gear-pick-sm strong { font-size: .9rem; color: #888; font-family: 'Inter', sans-serif; }

/* Responsive for category pages */
@media(max-width:1024px) {
    .sc-buying-guide-grid { grid-template-columns: repeat(2,1fr); }
    .sc-gear-showcase { grid-template-columns: 1fr; }
    .sc-gear-picks-side { flex-direction: row; flex-wrap: wrap; }
    .sc-gear-pick-sm { flex: 1; min-width: calc(50% - 7px); }
}
@media(max-width:768px) {
    .sc-featured-review__content { grid-template-columns: 1fr; }
    .sc-buying-guide-grid { grid-template-columns: 1fr 1fr; }
    .sc-learning-paths { grid-template-columns: 1fr; }
    .sc-filter-bar { position: static; }
    .sc-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .sc-lens-table thead th:nth-child(2),
    .sc-lens-table__row td:nth-child(2),
    .sc-lens-table thead th:nth-child(3),
    .sc-lens-table__row td:nth-child(3) { display: none; }
}
@media(max-width:480px) {
    .sc-buying-guide-grid { grid-template-columns: 1fr; }
    .sc-gear-pick-sm { min-width: 100%; }
    .sc-hero-pills { gap: 6px; }
    .sc-hero-pills span { font-size: .72rem; padding: 4px 10px; }
}
