/* ================================================
   Parts S.r.l. — Terms Page Styles
   ================================================ */


@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@200;300;400;600;700&display=swap');

/* ── FONT FACES ── */





@font-face {
  font-family: 'Parts-Regular';
  src: url('../assets/fonts/Parts-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

.coming-soon-card {
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 2px 40px rgba(61,47,143,0.07);
}
.coming-soon-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, rgba(61,47,143,0.08), rgba(61,47,143,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,228,122,0.3);
  border: 1px solid rgba(245,228,122,0.5);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a6800;
  margin-bottom: 24px;
}
.coming-soon-badge span {
  width: 6px;
  height: 6px;
  background: #d4b800;
  border-radius: 50%;
  display: block;
}
.coming-soon-card h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.coming-soon-card h2 em {
  font-family: 'Parts-Regular', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--violet);
}
.coming-soon-card p {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 36px;
}

@media (max-width: 600px) {
  .coming-soon-card { padding: 52px 24px; }
}
