/* Products Page CSS */

/* Header is fixed, so main content needs top padding */
main { padding-top: 80px !important; }

/* Hero section - clean and elegant */
.hero-section {
  text-align: center;
  padding: 48px 0 36px;
}

.hero-section h1 {
  font-size: 42px;
  color: #003049;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-section .hero-sub {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 8px;
}

.hero-section .hero-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0077B6, #00B4D8);
  border-radius: 2px;
  margin: 0 auto 0;
}

/* Category filter pills */
.download-categories {
  display: flex;
  gap: 10px;
  padding: 20px 0 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.download-cat {
  padding: 9px 20px;
  background: #fff;
  border: 2px solid #E2E8F0;
  border-radius: 24px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.download-cat.active,
.download-cat:hover {
  background: linear-gradient(135deg, #0077B6, #00B4D8);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0,119,182,0.3);
  transform: translateY(-1px);
}

/* Product grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

/* Product card - modern look */
.prod-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid #EDF2F7;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,77,130,0.15);
  border-color: #0077B6;
}

.prod-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #F8FAFC, #EEF2F7);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
  padding: 12px;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.05);
}

/* Category badge on image */
.prod-img-wrap .cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,48,73,0.75);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.prod-body {
  padding: 20px 20px 18px;
}

.prod-name {
  font-size: 16px;
  font-weight: 700;
  color: #003049;
  margin-bottom: 6px;
  line-height: 1.3;
}

.prod-sub {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 14px;
  line-height: 1.5;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #0077B6, #00B4D8);
  color: #fff;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 12px;
  font-weight: 500;
}

.prod-arrow {
  color: #0077B6;
  font-size: 18px;
  transition: transform 0.2s;
}

.prod-card:hover .prod-arrow {
  transform: translateX(3px);
}

/* Category section headers */
.cat-section {
  margin-bottom: 52px;
}

.cat-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cat-title {
  font-size: 20px;
  font-weight: 700;
  color: #003049;
}

.cat-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #0077B6, transparent);
  border-radius: 1px;
}

.cat-section h3.cat-title {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: #003049;
  font-weight: 700;
}

/* OEM Banner */
.oem-banner {
  background: linear-gradient(135deg, #003049 0%, #005f8a 50%, #0077B6 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 16px 0 40px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oem-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.oem-banner h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}

.oem-banner p {
  opacity: 0.85;
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
}

.oem-banner a {
  background: #00B4D8;
  color: #003049;
  padding: 12px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}

.oem-banner a:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  padding: 40px 0 32px;
}

.bottom-cta p {
  color: #64748B;
  font-size: 15px;
  margin-bottom: 16px;
}

.bottom-cta a {
  background: #003049;
  color: #fff;
  padding: 14px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.2s;
}

.bottom-cta a:hover {
  background: #005f8a;
  transform: translateY(-1px);
}

/* Language switch - match header style */
.lang-pill {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.15);
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  padding: 5px 14px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.lang-btn.active {
  background: #fff;
  color: #003049;
}

/* Footer logo - match */
.footer-logo-img { height: 70px; width: auto; margin-bottom: 16px; opacity: 0.9; }
