..pass-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid #e5e5e5;
  max-width: 900px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* cellules */
.pass-grid .cell {
  padding: 14px 10px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* dernière colonne */
.pass-grid .cell:nth-child(4n) {
  border-right: none;
}

/* header */
.pass-grid .header {
  font-weight: bold;
  background: #f7f7f7;
  font-size: 16px;
}

/* colonne mise en avant (Pass 1 jour) */
.pass-grid .highlight {
  background: #89cf00;
  color: white;
  font-weight: bold;
  position: relative;
}

/* option effet "colonne premium" */
.pass-grid .highlight.header {
  font-size: 18px;
}

/* prix */
.pass-grid .price {
  font-size: 18px;
}

/* colonne label gauche */
.pass-grid .label {
  text-align: left;
  background: #fff;
}

.pass-grid .sub {
  font-size: 12px;
  color: #666;
}

/* hover léger */
.pass-grid .cell:hover {
  background: #f5f5f5;
}

.pass-grid .highlight:hover {
  background: #76b800;
}

/* 🔥 RESPONSIVE MOBILE */
@media (max-width: 768px) {

  .pass-grid {
    grid-template-columns: 1fr;
  }

  .pass-grid .cell {
    text-align: left;
    border-right: none;
  }

  .pass-grid .header {
    display: none;
  }

  /* transforme chaque bloc en carte */
  .pass-grid .label {
    background: #f9f9f9;
    font-weight: bold;
  }

  .pass-grid .highlight {
    border-left: 5px solid #89cf00;
  }
}