/* Add-Ons Section */
.add-ons-section {
  background: linear-gradient(135deg, rgba(255, 248, 240, 0.6), rgba(240, 230, 255, 0.3));
  border-radius: 25px;
  padding: 3rem;
  margin: 3rem 0;
}

.add-on-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.add-on-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.add-on-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.add-on-item .price {
  color: var(--golden);
  font-weight: 500;
}

/* Packs Section */
.packs-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 242, 255, 0.3));
  border-radius: 25px;
  padding: 3rem;
  margin: 3rem 0;
}

.packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .packs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pack-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.pack-card.special {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 230, 255, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.pack-card .badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--golden);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.pack-card h3 {
  font-size: 1.3rem;
  color: var(--golden);
  margin-bottom: 1rem;
  font-family: 'Gloock', serif;
}

.pack-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pack-card li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
  color: #5A4A3A;
}

.pack-price {
  text-align: center;
}

.pack-price .price {
  font-size: 1.5rem;
  color: var(--golden);
  font-weight: 500;
  display: block;
}

.pack-price .original {
  font-size: 0.9rem;
  color: #7A6A5A;
  text-decoration: line-through;
  margin-top: 0.3rem;
  display: block;
}

.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

.article-card {
  position: relative;
  z-index: 1;
}

.article-card a {
  display: inline-block;
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

.work-card {
  position: relative;
  z-index: 1;
}

.work-card a {
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

/* Fix spécifique pour les animations qui bloquent les clics */
.article-card::after {
  pointer-events: none;
}

.work-card::before,
.work-card::after {
  pointer-events: none;
}

.instagram-icon {
  color: var(--golden); 
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.instagram-icon:hover {
  color: #f5c542; /* golden brighter tone */
  transform: scale(1.1);
}

