.packs-hero {
  text-align: center;
  padding: 2rem 2rem 3rem;
}

.packs-surtitre {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
}

.packs-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.packs-hero h1 em {
  font-style: italic;
  color: #c9a96e;
}

.packs-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.packs-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.pack-option {
  position: relative;
  border: 1px solid #e5e5e5;
  padding: 2rem 1.5rem 1.5rem;
  width: 190px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fff;
}

.pack-option:hover,
.pack-option.active {
  border-color: #c9a96e;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
}

.pack-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #c9a96e;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  white-space: nowrap;
  border-radius: 12px;
}

.pack-reduction {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  padding: 3px 6px;
}

.pack-option h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.pack-nb {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: #999;
  margin-bottom: 1rem;
}

.pack-prix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.pack-prix-principal {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.pack-prix-barre {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.pack-prix-unitaire {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  color: #999;
  margin-bottom: 1.5rem;
}

.pack-choisir {
  display: block;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.pack-choisir:hover,
.pack-option.active .pack-choisir {
  background: #c9a96e;
}

/* Selection parfums */
.packs-selection {
  max-width: 1200px;
  margin: 3rem auto 6rem;
  padding: 0 4rem;
}

.packs-selection-header {
  text-align: center;
  margin-bottom: 2rem;
}

.packs-selection-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.packs-selection-header p {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: #999;
}

.packs-compteur {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #c9a96e;
  margin-top: 0.5rem;
  font-weight: 500;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pack-parfum-card {
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pack-parfum-card:hover {
  border-color: #c9a96e;
}

.pack-parfum-card.selected {
  border-color: #c9a96e;
  box-shadow: 0 0 0 2px #c9a96e;
}

.pack-parfum-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: 2px solid #e5e5e5;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.pack-parfum-check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  opacity: 0;
}

.pack-parfum-card.selected .pack-parfum-check {
  background: #c9a96e;
  border-color: #c9a96e;
}

.pack-parfum-card.selected .pack-parfum-check svg {
  opacity: 1;
}

.pack-parfum-image {
  aspect-ratio: 1/1.2;
  overflow: hidden;
  background: #f9f5f0;
}

.pack-parfum-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.pack-parfum-info {
  padding: 1rem;
  border-top: 1px solid #e5e5e5;
}

.pack-parfum-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}

.pack-parfum-info p {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: #999;
}

.packs-footer {
  text-align: center;
  padding: 2rem;
  background: #f9f5f0;
}

.packs-message {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #555;
  margin-bottom: 1rem;
}

.packs-ajouter-btn {
  background: #1a1a1a;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 3rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.packs-ajouter-btn:hover:not(:disabled) {
  background: #c9a96e;
}

.packs-ajouter-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.packs-invite {
  text-align: center;
  padding: 3rem;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #999;
}

@media (max-width: 900px) {
  .packs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {

  .packs-hero h1 { font-size: 2.5rem; }

  .packs-options { gap: 0.7rem; }

  .pack-option {
    width: calc(50% - 0.35rem);
    padding: 1.5rem 0.8rem 1rem;
  }

  .packs-selection {
    padding: 0 0.8rem;
  }

  .packs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .pack-parfum-card {
    width: 100%;
    padding: 0;
  }
}
.pack-option {
  display: flex;
  flex-direction: column;
}

.pack-choisir {
  margin-top: auto;
}

.pack-option {
  border-radius: 6px;
}

.pack-parfum-card {
  border-radius: 6px;
}

.pack-accroche {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  color: #999;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}

#toast-pack {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a1a;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  padding: 12px 1.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  white-space: nowrap;
}

#toast-pack.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.best-seller-badge {
  position: absolute;
  top: 22px;
  left: -43px;
  background: #c9a96e;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(-45deg);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(201, 169, 110, 0.4);
}

.packs-hero {
  background: #f9f5f0;
}

.pack-option {
    text-decoration: none;
}

.pack-parfum-info .pack-parfum-notes  {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    color: #c9a96e;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}


/* ===== QHD 2560px ===== */
@media (min-width: 2560px) {
  .packs-hero {
    padding: 3rem 2rem 4rem;
  }

  .packs-surtitre {
    font-size: 15px;
    margin-bottom: 1.5rem;
  }

  .packs-hero h1 {
    font-size: 5rem;
  }

  .packs-desc {
    font-size: 18px;
    max-width: 750px;
    margin-bottom: 4rem;
  }

  .packs-options {
    max-width: 1700px;
    gap: 1.5rem;
  }

  .pack-option {
    width: 280px;
    padding: 2.5rem 2rem 2rem;
  }

  .pack-option h3 {
    font-size: 1.8rem;
  }

  .pack-nb {
    font-size: 15px;
  }

  .pack-prix-principal {
    font-size: 2.2rem;
  }

  .pack-prix-barre {
    font-size: 15px;
  }

  .pack-prix-unitaire {
    font-size: 14px;
  }

  .pack-choisir {
    font-size: 14px;
    padding: 14px;
  }

  .pack-badge {
    font-size: 13px;
    padding: 6px 16px;
    top: -14px;
  }

  .pack-reduction {
    font-size: 13px;
    padding: 4px 8px;
  }

  .pack-accroche {
    font-size: 13px;
  }

  .packs-selection {
    max-width: 1900px;
    padding: 0 6rem;
    margin: 4rem auto 8rem;
  }

  .packs-selection-header h2 {
    font-size: 3rem;
  }

  .packs-selection-header p {
    font-size: 16px;
  }

  .packs-compteur {
    font-size: 18px;
  }

  .packs-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }

  .pack-parfum-info h4 {
    font-size: 1.4rem;
  }

  .pack-parfum-info p {
    font-size: 14px;
  }

  .pack-parfum-info .pack-parfum-notes {
    font-size: 13px;
  }

  .packs-message {
    font-size: 18px;
  }

  .packs-ajouter-btn {
    font-size: 16px;
    padding: 20px 4rem;
  }
}

/* ===== 4K 3840px ===== */
@media (min-width: 3840px) {
  .packs-hero {
    padding: 5rem 2rem 6rem;
  }

  .packs-surtitre {
    font-size: 22px;
    margin-bottom: 2rem;
  }

  .packs-hero h1 {
    font-size: 7rem;
    margin-bottom: 1.5rem;
  }

  .packs-desc {
    font-size: 26px;
    max-width: 1100px;
    margin-bottom: 5rem;
  }

  .packs-options {
    max-width: 2600px;
    gap: 2.5rem;
  }

  .pack-option {
    width: 420px;
    padding: 3.5rem 2.5rem 2.5rem;
    border-radius: 8px;
  }

  .pack-option h3 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
  }

  .pack-nb {
    font-size: 22px;
    margin-bottom: 1.5rem;
  }

  .pack-prix-principal {
    font-size: 3.2rem;
  }

  .pack-prix-barre {
    font-size: 20px;
  }

  .pack-prix-unitaire {
    font-size: 20px;
    margin-bottom: 2rem;
  }

  .pack-choisir {
    font-size: 20px;
    padding: 20px;
    letter-spacing: 0.18em;
  }

  .pack-badge {
    font-size: 18px;
    padding: 8px 22px;
    top: -18px;
  }

  .pack-reduction {
    font-size: 18px;
    padding: 6px 12px;
  }

  .pack-accroche {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }

  .packs-selection {
    max-width: 3200px;
    padding: 0 10rem;
    margin: 6rem auto 10rem;
  }

  .packs-selection-header {
    margin-bottom: 3rem;
  }

  .packs-selection-header h2 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
  }

  .packs-selection-header p {
    font-size: 24px;
  }

  .packs-compteur {
    font-size: 26px;
    margin-top: 1rem;
  }

  .packs-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
  }

  .pack-parfum-check {
    width: 36px;
    height: 36px;
    top: 14px;
    right: 14px;
  }

  .pack-parfum-check svg {
    width: 18px;
    height: 18px;
  }

  .pack-parfum-info {
    padding: 1.5rem;
  }

  .pack-parfum-info h4 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }

  .pack-parfum-info p {
    font-size: 20px;
  }

  .pack-parfum-info .pack-parfum-notes {
    font-size: 18px;
    margin-top: 0.5rem;
  }

  .packs-footer {
    padding: 3rem;
  }

  .packs-message {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }

  .packs-ajouter-btn {
    font-size: 24px;
    padding: 28px 6rem;
    letter-spacing: 0.18em;
  }

  #toast-pack {
    font-size: 22px;
    padding: 20px 2.5rem;
    gap: 1.2rem;
  }
}