/* ===== PRODUCTS HERO ===== */
.products-hero {
  background: var(--bg);
  padding: 30px 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,146,51,0.3);
}
.prod-eyebrow {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
}
.prod-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 55px);
  line-height: 1;
  margin: 6px 0 14px;
  letter-spacing: 2px;
}
.prod-hero-sub {
  font-size: 14px;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
.prod-hero-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin-top: 10px;
}

/* ===== CATEGORY TABS ===== */
.cat-tabs-wrap {
  background: #0d0c0b;
  border-bottom: 1px solid rgba(255,146,51,0.2);
  position: sticky;
  top: 0;
  z-index: 40;
  overflow-x: auto;
}
.cat-tabs {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  justify-content: center;
}
.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--grey);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cat-tab:hover { color: var(--white); }
.cat-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ===== TAB CONTENT ===== */
.cat-content {
  display: none;
  background: var(--bg);
}
.cat-content.active { display: block; }

.cat-header {
  text-align: center;
  padding: 40px 40px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cat-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.cat-sub {
  font-size: 14px;
  color: var(--grey);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  max-width: 100%;
  margin: 0;
}
/* ===== PRODUCT CARD ===== */
.prod-card {
  background: var(--bg);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  transition: background 0.3s;
}
.prod-card:hover {
  background: rgba(255,146,51,0.03);
  transform: none;
  border-color: rgba(255,255,255,0.06);
}
.prod-card-img {
  position: relative;
  background: #0d0c0b;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-card-img img {
  width: 80%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  transition: transform 0.4s;
}
.prod-card {
  grid-template-areas: "body image";
}
.prod-card-body {
  grid-area: body;
}
.prod-card-img {
  grid-area: image;
}
/* ===== DASHCAM & REVERSE CAMERA IMAGE FIX ===== */
#tab-dashcam .prod-card-img,
#tab-camera .prod-card-img {
  height: 260px;              /* taller box so portrait images aren't squeezed */
  background: #0d0c0b;
}

#tab-dashcam .prod-card-img img,
#tab-camera .prod-card-img img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;        /* shows full image instead of cropping */
  mix-blend-mode: normal;     /* remove "lighten" blend so dark product photos aren't washed out */
}

@media (max-width: 900px) {
  #tab-dashcam .prod-card-img,
  #tab-camera .prod-card-img {
    height: 220px;
  }
}
.prod-card:hover .prod-card-img img {
  transform: scale(1.05);
}
.prod-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10,9,8,0.85);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255,146,51,0.3);
}
.prod-card-badge.accent-badge {
  background: var(--orange);
  color: #0a0a0a;
  border-color: var(--orange);
}
.prod-card-body {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.prod-card-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 1px;
  line-height: 1.1;
}
.prod-card-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-card-specs li {
  font-size: 13px;
  color: var(--grey);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.prod-card-specs li::before {
  content: "●";
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: 8px;
  top: 5px;
}
.prod-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.prod-card-tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--orange);
  background: rgba(255,146,51,0.1);
  border: 1px solid rgba(255,146,51,0.2);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .prod-card {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .prod-card:nth-child(even) { direction: ltr; }
  .prod-card-img { min-height: 240px; }
  .prod-card-body { padding: 24px 20px; }
  .cat-tabs { padding: 0 16px; justify-content: flex-start; }
  .cat-tab { padding: 14px 16px; font-size: 11px; gap: 6px; }
  .products-hero { padding: 20px; }
  .cat-header { padding: 24px 20px 16px; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== ANDROID INTRO ===== */
.android-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.android-intro-image {
  position: relative;
  background: #0d0c0b;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.android-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
}
.android-intro-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.4;
}
.android-intro-content {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.android-intro-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey);
}
.android-intro-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 1px;
  line-height: 1.1;
}
.android-intro-tagline {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white);
}
.android-intro-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.android-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--grey);
  text-align: center;
  width: 100%;
}
.android-icon-item svg {
  flex-shrink: 0;
}
.android-intro-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 480px;
}
.prod-divider {
  width: 100%;
  height: 30px;
  background: var(--bg);
  position: relative;
}
.prod-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,146,51,0.4), transparent);
}

@media (max-width: 900px) {
  .android-intro { grid-template-columns: 1fr; }
  .android-intro-content { padding: 24px 20px; }
  .android-intro-image { min-height: 280px; }
}

/* ===== CATALOGUE BANNER ===== */
.cat-catalogue-banner {
  width: 100%;
  background: #0d0c0b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.cat-catalogue-banner img {
  width: 100%;
  max-width: 860px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .cat-catalogue-banner img {
    max-width: 100%;
  }
}
/* ===== CATALOGUE SECTION ===== */
.catalogue-section {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  gap: 20px;
  padding: 20px 10px 0;
  box-sizing: border-box;
}
.catalogue-img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}