/* ========================
   PRODUCTS PAGE STYLES
======================== */

/* HERO SLIDER */
.prod-hero-slider {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #0A2240;
}
.prod-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.prod-slide.active {
  opacity: 1;
  pointer-events: all;
}
.prod-slide-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: slideArtIn 0.9s ease forwards;
}
.prod-slide-art svg { width: 100%; max-width: 520px; height: auto; }
@keyframes slideArtIn {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.prod-slide-content {
  flex: 0 0 440px;
  padding: 48px 40px;
  color: #fff;
  animation: slideContentIn 0.9s ease forwards;
}
@keyframes slideContentIn {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.prod-slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.prod-slide-content h1 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #fff;
}
.prod-slide-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}
.prod-slide-btn {
  display: inline-block;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 4px;
  transition: all 0.2s;
}
.prod-slide-btn:hover { background: #e8d08a; transform: translateY(-1px); }

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.2); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.slider-arrow:hover { background: rgba(200,168,75,0.4); }
.slider-arrow.left { left: 18px; }
.slider-arrow.right { right: 18px; }

/* MAIN LAYOUT */
.prod-layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  min-height: 600px;
}

/* SIDEBAR */
.prod-sidebar {
  flex: 0 0 210px;
  background: #f5f7fa;
  border-right: 1px solid #e2e8f0;
  padding: 28px 0;
  position: sticky;
  top: 64px;
  align-self: flex-start;
  min-height: calc(100vh - 64px);
}
.prod-sidebar ul { list-style: none; padding: 0; margin: 0; }
.prod-sidebar li { border-left: 3px solid transparent; transition: all 0.2s; }
.prod-sidebar li.active, .prod-sidebar li:hover { border-left-color: var(--gold); background: #fff; }
.prod-sidebar li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 13.5px;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.2s;
}
.prod-sidebar li.active a, .prod-sidebar li:hover a { color: var(--navy); }
.sidebar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.prod-sidebar li.active .sidebar-dot,
.prod-sidebar li:hover .sidebar-dot { opacity: 1; }

/* MAIN CONTENT */
.prod-main {
  flex: 1;
  padding: 36px 40px;
  overflow: hidden;
}

.prod-section-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}
.prod-section-header h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}
.prod-section-header p {
  color: #4a5568;
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 680px;
}

/* PRODUCT GROUPS */
.prod-group { margin-bottom: 42px; }
.prod-group-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* PRODUCT CARDS */
.prod-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.prod-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.prod-card:hover {
  box-shadow: 0 6px 24px rgba(10,34,64,0.12);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.prod-card-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.prod-card-icon svg { width: 48px; height: 48px; }
.prod-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 14px 6px;
  line-height: 1.4;
}
.prod-card p {
  font-size: 12px;
  color: #718096;
  padding: 0 14px;
  line-height: 1.6;
  flex: 1;
}
.prod-card-link {
  display: block;
  padding: 10px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  margin-top: auto;
  transition: color 0.2s;
}
.prod-card:hover .prod-card-link { color: var(--gold); }

/* CTA BAR */
.prod-cta-bar {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.prod-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 5px;
  border: 2px solid var(--navy);
  transition: all 0.2s;
}
.prod-cta-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.prod-cta-btn.outline { background: transparent; color: var(--navy); }
.prod-cta-btn.outline:hover { background: var(--navy); color: #fff; }

/* OTHER CATEGORIES */
.prod-other-links {
  background: #f5f7fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 28px;
  margin-top: 12px;
}
.prod-other-links h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 18px;
}
.prod-other-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.prod-other-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-align: center;
  transition: all 0.2s;
}
.prod-other-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(10,34,64,0.1); transform: translateY(-2px); }
.prod-other-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.prod-other-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* SUB PRODUCT PAGE STYLES */
.prod-sub-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.prod-sub-hero-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-sub-hero-art svg { width: 100%; height: 100%; }
.prod-sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,34,64,0.85) 40%, transparent 100%);
}
.prod-sub-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  color: #fff;
  max-width: 600px;
}
.prod-sub-hero-content h1 {
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
}
.prod-sub-hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .prod-cards { grid-template-columns: repeat(2,1fr); }
  .prod-other-grid { grid-template-columns: repeat(3,1fr); }
  .prod-slide-content { flex: 0 0 360px; }
}
@media (max-width: 768px) {
  .prod-layout { flex-direction: column; }
  .prod-sidebar { position: static; min-height: auto; display: flex; overflow-x: auto; padding: 0; border-right: none; border-bottom: 1px solid #e2e8f0; }
  .prod-sidebar ul { display: flex; }
  .prod-sidebar li { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  .prod-sidebar li.active { border-bottom-color: var(--gold); }
  .prod-sidebar li a { padding: 12px 16px; }
  .prod-main { padding: 24px 16px; }
  .prod-cards { grid-template-columns: repeat(2,1fr); }
  .prod-other-grid { grid-template-columns: repeat(3,1fr); }
  .prod-hero-slider { height: 320px; }
  .prod-slide { flex-direction: column; }
  .prod-slide-art { display: none; }
  .prod-slide-content { flex: unset; padding: 32px 24px; }
  .prod-slide-content h1 { font-size: 20px; }
}
@media (max-width: 480px) {
  .prod-cards { grid-template-columns: 1fr; }
  .prod-other-grid { grid-template-columns: repeat(2,1fr); }
}
