@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

.svpc-tarifs-wrap {
  --rose:         #e50076;
  --prune:        #44133A;
  --prune-clair:  #6b2860;
  --prune-bg:     #f7f0f6;
  --prune-border: #d4aecf;
  --doree:        #d0aa45;
  --doree-clair:  #e2c06a;
  --doree-bg:     #fdf8eb;
  --doree-border: #edd98a;
  --texte:        #2a1126;
  --texte-moyen:  #5a4455;
  --texte-leger:  #9a8494;
  --fond:         #faf8fa;
  --fond-alt:     #f4f0f3;
  --fond-card:    #ffffff;
  --bord:         #e0d8de;
  --bord-leger:   #ede6eb;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.7;
}

/* ── SECTIONS ── */
.svpc-section {
  padding: 48px 0;
  background: var(--fond);
  animation: svpcFadeUp 0.45s ease both;
}
.svpc-section-alt { background: #fff; }

.svpc-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bord-leger);
}

.svpc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svpc-dot-doree  { background: var(--doree); }
.svpc-dot-rose   { background: var(--rose); }
.svpc-dot-prune  { background: var(--prune); }

.svpc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--prune);
}

/* ── CARTES DÉPART ── */
.svpc-depart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.svpc-depart-card {
  background: var(--fond-card);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 22px 26px;
  border-top: 3px solid var(--doree);
  transition: box-shadow 0.2s;
}
.svpc-depart-card:hover { box-shadow: 0 6px 24px rgba(68,19,58,0.1); }
.svpc-depart-card.svpc-wide { grid-column: 1 / -1; }

.svpc-dc-label {
  font-size: 0.87rem;
  color: var(--texte-moyen);
  line-height: 1.6;
  margin-bottom: 10px;
}
.svpc-dc-label em { font-size: 0.76rem; color: var(--texte-leger); }

.svpc-dc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--prune);
}
.svpc-dc-sub { font-size: 0.74rem; color: var(--texte-leger); margin-top: 3px; }

/* Forfait */
.svpc-forfait-card {
  grid-column: 1 / -1;
  background: var(--prune);
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.svpc-forfait-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(208,170,69,0.08));
  pointer-events: none;
}
.svpc-forfait-label { flex: 1; font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.65; }
.svpc-forfait-label strong { color: #fff; }
.svpc-forfait-price-zone { text-align: right; flex-shrink: 0; position: relative; z-index: 1; }
.svpc-forfait-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--doree);
  line-height: 1;
}
.svpc-forfait-sub { font-size: 0.74rem; color: rgba(255,255,255,0.45); margin-top: 4px; text-align: right; }
.svpc-forfait-equiv { margin-top: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.svpc-forfait-equiv strong { color: var(--doree-clair); }

/* ── TABLEAU ── */
.svpc-table-wrap {
  border: 1px solid var(--bord);
  border-radius: 10px;
  overflow: hidden;
  background: var(--fond-card);
  box-shadow: 0 2px 12px rgba(68,19,58,0.05);
}
.svpc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
.svpc-table thead tr { background: var(--prune); }
.svpc-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.svpc-table thead th:not(:first-child) { text-align: center; color: var(--doree); }
.svpc-table tbody tr { border-bottom: 1px solid var(--bord-leger); transition: background 0.15s; }
.svpc-table tbody tr:last-child { border-bottom: none; }
.svpc-table tbody tr:hover { background: var(--prune-bg); }
.svpc-table tbody tr.svpc-sub-row { background: var(--fond-alt); }
.svpc-table tbody tr.svpc-sub-row td {
  padding: 6px 20px 6px 36px;
  font-size: 0.77rem;
  color: var(--texte-leger);
  font-style: italic;
}
.svpc-table td {
  padding: 16px 20px;
  color: var(--texte-moyen);
  vertical-align: top;
  line-height: 1.55;
}
.svpc-table td strong { color: var(--prune); }
.svpc-table td.svpc-price {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--prune);
  white-space: nowrap;
  vertical-align: middle;
}
.svpc-table td.svpc-price.lower { color: var(--doree); }
.svpc-table td.svpc-price.na { color: var(--texte-leger); font-family: 'DM Sans'; font-size: 0.82rem; font-weight: 300; }

/* ── LISTE ── */
.svpc-items-list {
  border: 1px solid var(--bord);
  border-radius: 10px;
  overflow: hidden;
  background: var(--fond-card);
  box-shadow: 0 2px 12px rgba(68,19,58,0.05);
}
.svpc-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--bord-leger);
  transition: background 0.15s;
}
.svpc-item:last-child { border-bottom: none; }
.svpc-item:hover { background: var(--prune-bg); }
.svpc-item-label { font-size: 0.87rem; color: var(--texte-moyen); line-height: 1.55; }
.svpc-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--prune);
  white-space: nowrap;
  text-align: right;
}
.svpc-item-price.svpc-non-propose {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--texte-leger);
  font-style: italic;
}

/* ── TVA ── */
.svpc-tva-band {
  background: var(--doree-bg);
  border-top: 1px solid var(--doree-border);
  border-bottom: 1px solid var(--doree-border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.svpc-tva-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--doree-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  color: var(--prune);
  flex-shrink: 0;
}
.svpc-tva-text { font-size: 0.86rem; color: var(--texte-moyen); }
.svpc-tva-text strong { color: var(--prune); }

/* ── ANIM ── */
@keyframes svpcFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .svpc-depart-grid { grid-template-columns: 1fr; }
  .svpc-forfait-card { flex-direction: column; align-items: flex-start; }
  .svpc-forfait-price-zone { text-align: left; }
  .svpc-item { grid-template-columns: 1fr; }
  .svpc-item-price { text-align: left; }
}
