/* shop.css — Styles spécifiques à la page Shop INSANE IDENTITY */
@import url('base.css');

.shop-header {
  text-align: center;
  margin-top: 6.5rem;
  margin-bottom: 2.5rem;
}
.shop-title {
  font-family: var(--font-family);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-black);
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}
.shop-subtitle {
  font-family: var(--font-family);
  font-size: 1.25rem;
  color: var(--primary-black);
  font-weight: var(--font-weight-medium);
  margin-bottom: 2.5rem;
}
.shop-coming-soon {
  background: #18181b;
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 32px 0 rgba(23,147,178,0.10);
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shop-icon {
  margin-bottom: 1.5rem;
}
.shop-coming-title {
  font-size: 2rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 1.2rem;
  color: #fff;
}
.shop-coming-desc {
  font-size: 1.08rem;
  color: #eaf6fa;
  margin-bottom: 1.5rem;
  text-align: center;
}
.shop-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
}
.shop-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.08rem;
  margin-bottom: 0.7em;
  color: #fff;
}
.shop-list svg {
  width: 1.2em;
  height: 1.2em;
  color: var(--primary-blue);
}
.shop-btn {
  display: inline-block;
  padding: 0.9em 2.2em;
  font-size: 1.08rem;
  font-weight: var(--font-weight-bold);
  border-radius: 2em;
  background: linear-gradient(90deg, #ff4e8e 0%, #1cc8ee 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(23,147,178,0.10);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.shop-btn:hover {
  background: linear-gradient(90deg, #1cc8ee 0%, #ff4e8e 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(23,147,178,0.16);
}
@media (max-width: 700px) {
  .shop-coming-soon {
    padding: 2rem 1rem 1.5rem 1rem;
  }
  .shop-header {
    margin-top: 2rem;
  }
}
