/* ===== CAMERAS HERO BANNER ===== */
.cameras-hero {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.cameras-hero-inner {
  position: relative;
  width: 100%;
  min-height: 320px;
}

.cameras-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.cameras-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
}

.cameras-hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cameras-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 440px;
  line-height: 1.5;
}

/* ===== CATEGORY NAV TABS ===== */
.category-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 90;
}

.category-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.category-tab:hover {
  color: var(--dark);
}

.category-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ===== TAG VARIATIONS ===== */
.promo-tag.tag-new {
  background: #1565c0;
}

.promo-tag.tag-combo {
  background: #6a1b9a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cameras-hero-inner {
    min-height: 200px;
  }

  .cameras-hero-img {
    height: 200px;
  }

  .cameras-hero-title {
    font-size: 28px;
  }

  .cameras-hero-subtitle {
    font-size: 14px;
  }

  .category-tab {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cameras-hero-title {
    font-size: 24px;
  }

  .cameras-hero-subtitle {
    font-size: 13px;
  }
}
