/* ===========================
   SHOP
=========================== */

.shop-section,
.impact-section,
.progress-section,
.faq-section,
.support-message,
.shop-button-section {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
  position: relative;
}

.title,
.shop-section h2,
.impact-section h2,
.progress-section h2,
.faq-section h2,
.shop-button-section h2,
.support-message h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
}

.section-intro,
.shop-button-section p,
.progress-section > p {
  max-width: 850px;
  margin: auto;
  text-align: center;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 45px;
}

.title {
  color: var(--primary-color) !important;
  position: relative;
  padding-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary-color)
  );
}

/* ===========================
   Cartes
=========================== */

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.info-box {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.info-box:hover::before {
  transform: scaleX(1);
}

.info-box h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
}

.info-box p {
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ===========================
   Bouton Shop
=========================== */

.shop-button-section {
  text-align: center;
}

.btn-shop-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.btn-shop-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 18px;
  border-radius: 30px;
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-shop-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary-color) 55%, transparent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0
      color-mix(in srgb, var(--primary-color) 45%, transparent);
  }
  70% {
    box-shadow: 0 0 0 8px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.btn-shop {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 48px;
  border-radius: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 15px 35px rgba(53, 88, 245, 0.35);
  overflow: hidden;
  cursor: pointer;
}

.btn-shop::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn-shop:hover::after {
  left: 140%;
}

.btn-shop-icon {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.btn-shop-text {
  position: relative;
  z-index: 1;
}

.btn-shop-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  transition: transform 0.3s ease;
}

.btn-shop:hover .btn-shop-arrow {
  transform: translateX(5px);
}

.btn-shop:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 45px rgba(53, 88, 245, 0.45);
}

/* ===========================
   Barre de progression
=========================== */

.progress-card {
  max-width: 850px;
  margin: auto;
  padding: 35px;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--text-color);
}

.progress-bar {
  width: 100%;
  height: 18px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary-color)
  );
  border-radius: 20px;
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  width: 50%;
  animation: progress-shine 2.2s infinite;
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

.progress-text {
  margin-top: 20px;
  line-height: 1.8;
  text-align: center;
  color: var(--text-secondary);
}

/* ===========================
   Message final
=========================== */

.message-card {
  max-width: 900px;
  margin: auto;
  padding: 55px 50px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.message-card::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 220px;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.message-card h2 {
  color: white;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.message-card p {
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.message-card strong {
  font-size: 1.15rem;
}

/* ===========================
   FAQ
=========================== */

.faq-section .info-box h3 {
  font-size: 1.1rem;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 900px) {
  .btn-shop {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
    font-size: 1.05rem;
  }

  .progress-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .message-card {
    padding: 35px 25px;
  }

  .message-card::before {
    font-size: 140px;
  }
}

@media (max-width: 600px) {
  .shop-section,
  .impact-section,
  .progress-section,
  .faq-section,
  .support-message,
  .shop-button-section {
    margin: 50px auto;
  }

  .title {
    font-size: 2rem;
  }

  .info-box {
    padding: 25px;
  }

  .btn-shop {
    font-size: 1rem;
    gap: 10px;
    padding: 16px 26px;
  }

  .message-card p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-shop::after,
  .progress-fill::after,
  .btn-shop-status::before,
  .btn-shop-arrow {
    animation: none;
    transition: none;
  }
}
