/* ============================================================
   HIGH COLLECTION — Pages CSS (inner page styles)
   ============================================================ */

/* ---- Filter Bar ---- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--mid);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  letter-spacing: 0.03em;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ---- Product Detail Page ---- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.prod-gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg2);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border2);
}
.prod-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.prod-thumb {
  border-radius: var(--radius-sm);
  background: var(--bg2);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t);
}
.prod-thumb:hover, .prod-thumb.active { border-color: var(--orange); }

.prod-detail-right h1 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.prod-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars-static { color: var(--orange); font-size: 0.85rem; letter-spacing: 2px; }
.prod-big-price { font-size: 2rem; font-weight: 800; color: var(--orange); }
.prod-big-price .was { font-size: 1rem; color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.prod-big-price .per { font-size: 0.85rem; color: var(--muted); font-weight: 400; }

.prod-features-list { margin: 20px 0; }
.prod-features-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--mid);
  margin-bottom: 10px;
}
.prod-features-list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.prod-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

/* ---- Roller / Zebra Page Tabs ---- */
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border2);
  margin-bottom: 40px;
}
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--t);
}
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-btn:hover { color: var(--orange-dark); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- About Page ---- */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--orange-pale);
  min-height: 440px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
/* REPLACE: <img src="../images/showroom.jpg" alt="Showroom"> */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border2);
  text-align: center;
  transition: var(--t);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-photo {
  height: 180px;
  background: linear-gradient(135deg, var(--orange-pale), var(--cream-dark, #f0e4cc));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
/* REPLACE: <img src="../images/team-x.jpg" alt="Team Member"> */
.team-info { padding: 16px; }
.team-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.team-info p { font-size: 0.78rem; color: var(--muted); }
.team-info .t-phone { color: var(--orange); font-weight: 600; font-size: 0.82rem; margin-top: 6px; display: block; }

/* ---- Gallery Page ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg2);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: var(--t);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
/* REPLACE: each <img src="../images/gallery-N.jpg" alt="..."> */
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; background: rgba(0,0,0,0.35); }

/* Gallery featured (large first item) */
.gallery-grid.masonry .gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ---- Contact Page ---- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border2);
  height: 320px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 28px;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.map-embed i { font-size: 2rem; color: var(--orange); }
/* REPLACE: <iframe src="https://maps.google.com/..." ...></iframe> */

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .about-hero-split,
  .product-detail-grid,
  .contact-page-grid { grid-template-columns: 1fr; }
  .gallery-grid.masonry .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
}
