/* ========================================
   English Pages — Font & Style Overrides
   ======================================== */

/* English pages use Outfit as primary font */
.lang-en body,
body.lang-en {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
}

body.lang-en .hero-label,
body.lang-en .section-label,
body.lang-en .service-num,
body.lang-en .exhibition-date,
body.lang-en .news-date,
body.lang-en .btn-primary,
body.lang-en .btn-outline,
body.lang-en .btn-contact-header,
body.lang-en .btn-white,
body.lang-en .btn-white-outline,
body.lang-en .nav-links a,
body.lang-en .footer-col h4 {
  font-family: 'Outfit', sans-serif;
}

/* Hero title — English fits better with tighter weight */
body.lang-en .hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

body.lang-en .hero-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
}

body.lang-en .section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

body.lang-en .service-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* ---- Products Grid ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.product-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.product-lineup {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.product-lineup li {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(0, 114, 188, 0.2);
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: 0.02em;
}

a.product-btn {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary) !important;
  text-decoration: none;
  transition: opacity var(--transition);
}

a.product-btn:hover {
  opacity: 0.7;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
}

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