@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, #eef2f3 0%, #dfe9f3 100%);
  color: #222;
}

header.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-printify img {
  height: 50px;
}

.nav-menu a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #a041ff;
}

header h1 {
  text-align: center;
  margin-top: 30px;
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reviews-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.review {
  background: #dd0ab7;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-name {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.stars {
  color: #f1c40f;
  font-size: 18px;
  display: inline-flex;
  gap: 2px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.stars span {
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
}

.stars span:hover {
  transform: scale(1.3) rotate(-5deg);
  color: #ffdd55;
}

.stars span:hover ~ span {
  transform: scale(1);
  color: #f1c40f;
}

.review p {
  margin-top: 14px;
  line-height: 1.7;
  font-size: 16px;
  color: #eef2f3;
}

.add-review {
  background: #ffffffdd;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  margin-top: 50px;
}

.add-review h2 {
  margin-top: 0;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.star-select {
  font-size: 26px;
  color: #ccc;
  cursor: pointer;
  display: flex;
  gap: 5px;
}

.star-select span {
  transition: transform 0.2s ease, color 0.2s ease;
}

.star-select span.active {
  color: #f1c40f;
  transform: scale(1.2);
}

.add-review input,
.add-review textarea,
.add-review button {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
}

.add-review textarea {
  resize: vertical;
  height: 140px;
}

.add-review button {
  background: #f407d8;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.add-review button:hover {
  background: #bb00cc;
}

@media (max-width: 600px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  header.main-header {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu a {
    margin: 0 10px;
  }
}
.delete-review {
  margin-top: 10px;
  background: #ff4d4d;
  border: none;
  padding: 8px 12px;
  color: white;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.delete-review:hover {
  background: #e60000;
}

/* === FOOTER === */
.footer {
  background: linear-gradient(180deg, #ffffff 0%, #c9c7c7 100%);
  color: #ffffff;
  padding: 80px 20px 40px;
  font-family: "Inter", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

/* Logo + texte */
.footer-logo img {
  width: 140px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 250px;
}

/* Liens */
.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000000;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #a041ff;
}

/* Contact */
.footer-contact p {
  margin: 6px 0;
  color: rgba(0, 0, 0, 0.7);
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.socials a img {
  width: 22px;
  height: 22px;

  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* Bas du footer */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 25px;
}

.footer-bottom p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo p {
    margin: 0 auto;
  }
  .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px; /* espace entre les icônes */
    width: 100%;
    margin: 0 auto;
  }

  .socials img {
    display: block;
    margin: 0 auto;
  }
}
