/* ========================= */
/* Tableau      */
/* ========================= */

/* ====== Onglets ====== */
.cp-tabs-nav {
  display: flex;
  list-style: none;
  margin-top: 0;
  margin-bottom: 16px;
  flex-wrap: nowrap;
  gap: clamp(4px, 1vw, 24px);
  justify-content: space-between;
}
.cp-tabs-nav,
.cp-tabs-panels {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.cp-tabs-nav li {
    position: relative !important;
    cursor: pointer;
    user-select: none;
    outline: none;
    padding: 0 18px !important;
    font-weight: 700;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    border-bottom: 4px solid #f2f2f2;
    font-family: "Urbanist";
}
.cp-tabs-nav li.active {
  background: var(--main-color);   /* remplace par ta couleur marque */
  color: #fff;
  border-radius: 999px;
  border: none;
}
.cp-tabs-nav li::before {
  display: none !important;
}

.cp-tabs-nav .cp-tab-sign {
  display: inline-block;
  margin-left: 10px;
  width: 14px;
  text-align: center;
}
.cp-tabs-nav li:not(.active) .cp-tab-sign::before { content: "+"; color:var(--main-color); }
.cp-tabs-nav li.active .cp-tab-sign::before { content: "–"; color:#fff;}

@media(max-width: 500px){
  .cp-tabs-nav {
    flex-direction: column;
  }
}

/* ====== Table sans thead/th ====== */
.custom-cp-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-cp-table tr + tr td {
  border-top: 1.5px solid #f2f2f2;
}

/*.custom-cp-table th {
  font-size: 16px;
  text-align: left;
  padding-left: 10px;
}
.custom-cp-table th:after {
  content: "";
  display: block;
  height: 4px;
  background-color: #f2f2f2;
  width: 100%;
  left: -10px;
  position: relative;
  margin-top: 10px;
}
.custom-cp-table th:last-child:after {
 width: calc(100% + 10px);
}*/

/* Style “fiche specs” 2 colonnes (ex: onglet Principal) */
.custom-cp-table td {
  padding: 12px 0;
  font-size: 16px;
}
.custom-cp-table td:first-child {
  font-weight: 700;
  padding-right: 10px;
}
.custom-cp-table td:last-child {
  text-align: right;
  color: #aaa9a9;
}
