@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* === HEADER FINAL & RESPONSIVE === */

/* Structure du header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo-printify img {
  height: 55px;
}

/* Menu desktop */
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

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

/* Bouton */
.main-button button {
  padding: 10px 20px;
  background: #1a73e8;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.main-button button:hover {
  background: #a041ff;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #222;
  border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  /* Afficher le hamburger */
  .hamburger {
    display: flex;
  }

  /* Cacher le menu desktop */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    padding-left: 25px;
    gap: 25px;
    transition: 0.3s;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  }

  /* Menu actif */
  .nav-menu.active {
    right: 0;
  }

  .main-button button {
    width: 80%;
  }
}

/* Mode mobile : le menu apparaît */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
    transition: 0.4s ease;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 20px;
    display: block;
    text-align: center;
  }

  /* 🎉 IMPORTANT : ici le bouton devient visible */
  .nav-menu .main-button {
    display: block !important;
    width: 100%;
    text-align: center;
  }

  .nav-menu .main-button button {
    padding: 12px 25px;
    font-size: 18px;
    width: 80%;
  }
}

/* === MAIN CONTAINER === */
.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #ffffff 0%, #f5f1ff 100%);
}

/* Texte et bouton */
.main-container .container {
  flex: 1 1 480px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.main-title h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.title h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #444;
}

/* Bouton principal */
.btn {
  border-radius: 15px;
  color: #fff;
  background-color: rgb(240, 14, 221);
  width: 200px;
  height: 50px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #a041ff;
  transform: translateY(-3px);
}

/* Bloc animation / cartes */
.wrap {
  flex: 1 1 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero: cartes et icônes */
.hero {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  width: 100%;
  padding: 0;
}

.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sphere,
.check {
  width: 200px;
  height: 200px;
  animation: floaty 5s ease-in-out infinite;
}

.check img {
  transition: transform 0.3s ease;
}

.check:hover img {
  transform: scale(1.05) rotate(-3deg);
}

/* === MEDIA QUERIES RESPONSIVE === */

/* Tablette */
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 30px;
    gap: 50px;
  }

  .main-container .container {
    max-width: 100%;
    text-align: center;
  }

  .wrap {
    width: 100%;
    scale: 0.9;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .main-container {
    padding: 50px 20px;
    gap: 40px;
  }

  .main-title h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .title h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .btn {
    width: 160px;
    height: 42px;
    font-size: 0.95rem;
  }

  .wrap {
    width: 100%;
    scale: 0.8;
  }

  .hero {
    flex-direction: column;
  }

  .icons {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .sphere,
  .check {
    width: 90px;
    height: 90px;
  }

  /* Masquer le calendrier sur mobile */
  @media (max-width: 768px) {
    .wrap,
    .hero,
    .card,
    .icons {
      display: none !important;
    }
  }
}
/* === MAIN CONTAINER - HERO SECTION RESPONSIVE === */
.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #ffffff 0%, #f5f1ff 100%);
}

/* Bloc texte */
.main-container .container {
  flex: 1 1 480px;
  max-width: 600px;
}

.main-title h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.title h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #444;
}

.btn {
  border-radius: 15px;
  color: #fff;
  background-color: rgb(240, 14, 221);
  width: 200px;
  height: 50px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #a041ff;
  transform: translateY(-3px);
}

/* Bloc animation calendrier + icônes */
.wrap {
  flex: 1 1 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero */
.hero {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  width: 100%;
  padding: 28px;
}

/* Icônes sphère + check */
.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Sphère */
.sphere {
  width: 200px;
  height: 200px;
  animation: floaty 5s ease-in-out infinite;
}

.sphere img {
  width: 100%;
  height: auto;
  display: block;
}

/* Check */
.check {
  width: 200px;
  height: auto;
  animation: floaty 4.5s ease-in-out infinite;
}

.check img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.check:hover img {
  transform: scale(1.05) rotate(-3deg);
}

/* Animation flottante */
@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */

/* Tablette */
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 60px 30px;
  }

  .main-container .container {
    max-width: 100%;
  }

  .main-title h1 {
    font-size: 2rem;
  }
  .title h3 {
    font-size: 1.1rem;
  }
  .btn {
    margin: 20px auto 0;
    display: block;
    width: 180px;
    height: 45px;
  }

  .wrap {
    scale: 0.9;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .main-container {
    max-height: 400px;
    padding: 50px 20px;
    gap: -10px;
  }

  .main-title h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .title h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .btn {
    margin: 20px auto 0;
    display: block;
    width: 160px;
    height: 42px;
    font-size: 0.95rem;
  }

  /* Hero centré */
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
  }

  .wrap {
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icons {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .sphere,
  .check {
    width: 90px;
    height: 90px;
  }
}
.container {
  text-align: center;
}

:root {
  --bg: #ffffff;
  --card-bg: #f7f7f9;
  --accent-1: #ff3da8;
  --accent-2: #7a2bff;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 18px;
}

.card {
  width: 200px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.title {
  font-size: 18px;
  color: #222;
  margin-bottom: 18px;
}
.label-small {
  display: block;
  font-weight: 500;
  color: #333;
  opacity: 0.85;
  font-size: 14px;
}
.title-big {
  font-weight: 800;
  font-size: 23px;
  margin-top: 6px;
  letter-spacing: 0.4px;
}

/* Grid */
.grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}
.cell {
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 61, 168, 0.95),
    rgba(122, 43, 255, 0.95)
  );
  box-shadow: 0 6px 16px rgba(122, 43, 255, 0.14),
    inset 0 -6px 10px rgba(0, 0, 0, 0.08);
  animation: glow 3.2s ease-in-out infinite;
  will-change: transform, filter;
}
@keyframes glow {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(122, 43, 255, 0));
  }
  50% {
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 8px 22px rgba(122, 43, 255, 0.25));
  }
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(122, 43, 255, 0));
  }
}
/* Masquer le calendrier sur mobile */
@media (max-width: 768px) {
  .wrap,
  .hero,
  .card,
  .icons {
    display: none !important;
  }
}

.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

/* Sphère */
.sphere {
  width: 200px;
  height: 200px;
  animation: floaty 5s ease-in-out infinite;
}

.sphere img {
  width: 100%;
  height: auto;
  display: block;
}

/* Check */
.check {
  width: 200px;
  height: auto;
  animation: floaty 4.5s ease-in-out infinite;
}

.check img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.check:hover img {
  transform: scale(1.05) rotate(-3deg);
}

/* Animation flottante */
@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 880px) {
  .hero {
    flex-direction: column;
    align-items: center;
  }
  .icons {
    flex-direction: row;
    gap: 14px;
    margin-top: 10px;
  }
  .check {
    width: 160px;
    height: 110px;
  }
  .sphere {
    width: 86px;
    height: 86px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .grid .cell,
  .sphere,
  .check,
  .card {
    animation: none;
    transition: none;
    transform: none;
  }
}

/* SECTION ENTIÈRE */
.section-why {
  background-color: #a041ff; /* violet uniforme */
  color: #fff;
  text-align: center;
  padding: 70px 20px 90px;
  height: auto;
}

.section-why h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

/* CONTENEUR FLEX DES BOX */
.boxes {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 2000px;
  margin: 0 auto;
}

/* CHAQUE BOX */
.box {
  background-color: #fff;
  color: #111;
  border-radius: 20px;
  padding: 30px 25px;
  flex: 1 1 230px;
  max-width: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .section-why h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .box {
    max-width: 100%;
  }
}

/* === SECTION STATISTIQUES === */
.stats-section {
  background: linear-gradient(180deg, #e50ea4 0%, #8c06ca 100%);
  color: #fff;
  text-align: center;
  padding: 90px 20px 100px;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 60px;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 0;
}

/* Chaque bloc de stats */
.stat {
  flex: 1 1 200px;
  min-width: 180px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.stat p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  text-transform: lowercase;
}

.stat span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

/* Bouton */
.stats-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.stats-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .stat h3 {
    font-size: 2.2rem;
  }
}

/* === 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;
  }
}

/* === HERO SECTION (main-container) === */
.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #ffffff 0%, #f5f1ff 100%);
}

/* Bloc de texte */
.main-container .container {
  flex: 1 1 480px;
  max-width: 600px;
}

.main-title h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.title h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #444;
}

.btn {
  border-radius: 15px;
  color: #fff;
  background-color: rgb(240, 14, 221);
  width: 200px;
  height: 50px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #a041ff;
  transform: translateY(-3px);
}

/* Bloc animation (wrap) */
.wrap {
  flex: 1 1 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === RESPONSIVE === */

/* Tablette */
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    padding: 60px 30px;
  }

  .main-container .container {
    max-width: 100%;
  }

  .main-title h1 {
    font-size: 2rem;
  }

  .title h3 {
    font-size: 1.1rem;
  }

  .btn {
    width: 180px;
    height: 45px;
  }

  .wrap {
    scale: 0.9;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .main-container {
    padding: 50px 20px;
    gap: 40px;
  }

  .main-title h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .title h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .btn {
    width: 160px;
    height: 42px;
    font-size: 0.95rem;
  }

  .wrap {
    width: 100%;
    scale: 0.8;
  }

  .hero {
    flex-direction: column;
  }

  .icons {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .sphere,
  .check {
    width: 90px;
    height: 90px;
  }
}

/* test*/
/* === BASE HEADER === */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fff;
  position: relative;
  z-index: 1000;
}

.nav-menu {
  display: flex;
  gap: 40px;
  transition: all 0.3s ease;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

.main-button button {
  border-radius: 15px;
  color: white;
  background-color: rgb(240, 14, 221);
  width: 180px;
  height: 45px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.main-button button:hover {
  background-color: #a041ff;
}

/* Hamburger caché sur desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}

/* === MOBILE STYLES === */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .main-button {
    display: none;
  }

  /* Overlay foncé quand menu ouvert */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.4s ease;
  }

  /* Menu mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.4s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1500;
  }

  /* Quand le menu est actif */
  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Animation hamburger croix */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* === POPUP === */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-content h2 {
  color: #a041ff;
  margin-bottom: 10px;
}

.popup-content p {
  color: #444;
  margin-bottom: 25px;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.popup-content textarea {
  resize: none;
  height: 80px;
}

.popup-btn {
  background: linear-gradient(90deg, #ff3da8, #7a2bff);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.popup-btn:hover {
  transform: scale(1.05);
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  transition: 0.3s;
}

.close-popup:hover {
  color: #000;
}

#popupRequest h2 {
  color: #ff3da8;
}

/* Animation pour attirer l'attention */
@keyframes pulseAttention {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 7, 180, 0.6);
  }
  70% {
    transform: scale(1.07);
    box-shadow: 0 0 20px 12px blueviolet;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgb(154, 7, 222);
  }
}

.stats-btn {
  animation: pulseAttention 2.2s infinite;
  transition: 0.3s;
}

/* Overlay */
#popupExamples {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  z-index: 9999;
}

#popupExamples.active {
  display: flex;
}

/* Popup Glass Morphism */
.popup-pro {
  width: 380px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  animation: fadeInScale 0.35s ease;
  color: #fff;
  text-align: center;
}

@keyframes fadeInScale {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close button */
.popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}

/* Fields */
.field {
  text-align: left;
  margin-bottom: 15px;
}

.field label {
  color: #e2e2e2;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.field input,
.field select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  outline: none;
  font-size: 15px;
}

/* Submit button PRO */
.popup-btn-pro {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #a50de1, #f324f3);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.25s;
}

.popup-btn-pro:hover {
  transform: scale(1.03);
}

/* === HEADER FINAL & RESPONSIVE === */

/* Structure du header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo-printify img {
  height: 55px;
}

/* Menu desktop */
.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

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

/* Bouton */
.main-button button {
  border-radius: 15px;
  color: #fff;
  background-color: #f00edd;
  width: 170px;
  height: 45px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.main-button button:hover {
  background: #a041ff;
}
@media (max-width: 768px) {
  .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;
  }
}
