:root {
  --hugs-primary: #d32f2f;
  --hugs-secondary: #212121;
}

.header-topbar { background: var(--hugs-secondary); }
.badge-motorsport { background: var(--hugs-primary); }

h2, .produit-carac-titre {
  border-bottom: 1px solid #f06f43;
  margin-bottom: 1em;
}

/* Produits  */

.produit-carac-titre {
  margin-top: 1em;
}

.product-carac-icon {
  height:60px;
  float: left;
  margin: 2px 5px;
}

.groupe-caracteristique {
  clear: both;
  margin-bottom: 1em;
}

.values-row {
  margin-top: 1em;
  margin-bottom: 1em;
  min-height: 60px;
}

/* End Produits  */

/* =========================
   KIT CMS RESPONSIVE
   ========================= */

.cms-kit {
  width: 100%;
}

.cms-kit * {
  box-sizing: border-box;
}

.cms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 24px;
}

.cms-row--center {
  align-items: center;
}

.cms-row--between {
  justify-content: space-between;
}

.cms-col {
  flex: 1 1 100%;
  min-width: 0;
}

.cms-col-2 {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.cms-col-3 {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 220px;
}

.cms-col-4 {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
}

.cms-card {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

.cms-box {
  padding: 24px;
  border-radius: 12px;
}

.cms-box--light {
  background: #f8f8f8;
}

.cms-box--dark {
  background: #222;
  color: #fff;
}

.cms-gap-sm {
  gap: 12px;
}

.cms-gap-md {
  gap: 24px;
}

.cms-gap-lg {
  gap: 40px;
}

.cms-text-center {
  text-align: center;
}

.cms-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cms-btn--primary {
  background: #1f7a8c;
  color: #fff !important;
}

.cms-btn--primary:hover {
  background: #175c69;
  color: #fff !important;
}

.cms-btn--secondary {
  background: #eeeeee;
  color: #222 !important;
}

.cms-media img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.cms-stack > * + * {
  margin-top: 16px;
}

.cms-spacer-sm {
  height: 16px;
}

.cms-spacer-md {
  height: 32px;
}

.cms-spacer-lg {
  height: 56px;
}

@media (max-width: 991px) {
  .cms-col-4 {
    flex-basis: calc(50% - 12px);
  }

  .cms-col-3 {
    flex-basis: calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .cms-row {
    flex-direction: column;
    gap: 16px;
  }

  .cms-col,
  .cms-col-2,
  .cms-col-3,
  .cms-col-4 {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .cms-card,
  .cms-box {
    padding: 18px;
  }
}

/* =========================
   EXTENSIONS HAUTEURS ÉGALES
   ========================= */

/* À poser sur .cms-row */
.cms-row--equal {
  align-items: stretch;
}

/* À poser sur les colonnes concernées */
.cms-col--stretch {
  display: flex;
}

/* À poser sur le bloc intérieur */
.cms-fill {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* Variante pratique pour pousser un bouton en bas */
.cms-push-bottom {
  margin-top: auto;
}

/* Cart & PDF Quotation */
#print-quotation {
  margin-top: 2em;
}

#print-quotation #customer-information footer, #print-quotation .card-block {
  text-align: center;
}

#print-quotation #customer-information input {
  margin: 0.2em;
}