.bundles-marque-container {
  margin: 30px 0;
  padding: 0;
}

.bundles-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 25px;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-card {
  position: relative;
  background: linear-gradient(135deg, #fdf8f4 0%, #f9f1eb 100%);
  border-radius: 15px;
  padding: 1rem;
  padding-top: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(216, 76, 76, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.bundle-card.has-discount {
    padding-top: 2.5rem; /* augmente le top padding si badge présent */
}

.bundle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bundle-discount-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #d84c4c 0%, #c23e3e 100%);
  color: white;
  padding: 8px 14px;
  border-radius: 8px 0 12px 0;
  font-weight: 700;
  font-size: 13px;
  z-index: 10;
}

.discount-percent {
  font-size: 15px;
  font-weight: 800;
}

.bundle-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bundle-title {
  margin: 10px 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.4;
}

.bundle-image {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.bundle-image img {
  object-fit: cover;
  border-radius: 12px;
  box-shadow: none;
}

.bundle-description {
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.bundle-price {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.price-old {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
}

.price-new {
  color: #d84c4c;
  font-weight: 700;
  font-size: 18px;
}

.bundle-cta {
  display: block;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.bundle-cta:focus {
  background: linear-gradient(135deg, #d84c4c 0%, #c23e3e 100%);
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}

.bundle-cta:hover {
  background: linear-gradient(135deg, #d84c4c 0%, #c23e3e 100%);
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}

.bundle-card:hover .bundle-discount-badge {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .bundles-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
  }

  .bundle-card {
      padding: 1rem;
      padding-top: 1rem;
  }

  .bundle-discount-badge {
    padding: 6px 10px;
    font-size: 11px;
  }

  .discount-percent {
    font-size: 13px;
  }

  .bundle-title {
    font-size: 16px;
  }

  .bundle-description {
    font-size: 13px;
  }

  .bundle-cta {
    font-size: 14px;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .bundles-title {
    font-size: 20px;
  }

  .bundle-card {
      padding: 1rem;
      padding-top: 1rem;
  }

  .bundle-discount-badge {
    padding: 5px 8px;
    font-size: 10px;
  }

  .discount-percent {
    font-size: 12px;
  }
}
