/********** Template CSS **********/
:root {
  --bs-primary: #ff8803;
  --bs-secondary: #ffb000;
  --bs-info: #ff8803;
  --bs-dark: #171717;
  --primary: #ff8803;
  --secondary: #ffb000;
  --light: #fff8ef;
  --dark: #171717;
  --brand-brown: #bd5200;
  --neutral: #f7f4ef;
}

html {
  scroll-padding-top: 95px;
  /* Site affiché à 80% (préférence validée à l'écran) */
  zoom: 0.8;
}

body {
  overflow-x: hidden;
}

/* Le zoom à 80% déréglait les calculs de scroll de WOW.js (librairie qui
   fait apparaître les blocs "wow fadeIn" en fondu) : des sections comme le
   footer restaient bloquées invisibles (visibility:hidden) car jamais
   déclenchées. On force la visibilité pour ne plus dépendre de ce calcul ;
   l'animation de fondu continue de jouer normalement quand elle se déclenche. */
.wow {
  visibility: visible !important;
}

/* Les petits textes deviennent trop fins une fois le site réduit à 80% :
   on les remonte légèrement pour rester lisibles. */
small {
  font-size: 0.95em; /* défaut Bootstrap: 0.875em */
}

.store-button small {
  font-size: 0.85rem; /* défaut du site: 0.72rem */
}

.footer .copyright {
  font-size: 17px; /* défaut du site: 15px */
}

body > .container-xxl,
body > .container-fluid:not(.page-header):not(.copyright) {
  max-width: 100%;
  width: 100%;
}

body > .container-xxl {
  padding-left: 0;
  padding-right: 0;
}

body > .container-xxl > .container,
body > .container-fluid > .container,
body > .container-fluid > .container.facts,
.footer > .container,
.copyright > .container {
  max-width: 100%;
  width: 100%;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.container.facts {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.container.facts .facts-text,
.container.facts .facts-counter {
  min-height: 520px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}

.back-to-top:hover {
  background: var(--dark) !important;
  border-color: var(--dark) !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.link-primary {
  color: var(--primary) !important;
}

.link-primary:hover,
.link-primary:focus {
  color: var(--brand-brown) !important;
}

.btn-dark {
  color: #ffffff;
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-dark:hover,
.btn-dark:focus {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover,
.btn.btn-outline-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
  max-height: 60px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 10px 0;
  color: #696e77;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  body > .container-xxl > .container,
  body > .container-fluid > .container,
  .footer > .container,
  .copyright > .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container > .row {
    margin-left: 0;
    margin-right: 0;
  }

  .container > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .navbar .navbar-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 12px 18px !important;
    border-radius: 8px !important;
  }

  .navbar .navbar-nav .nav-link {
    margin-left: 0;
    padding: 12px 0;
  }

  .navbar .nav-item .dropdown-menu {
    padding: 6px 0 6px 18px;
    margin: 0;
    background: transparent !important;
    box-shadow: none;
  }

  .navbar .nav-item.izus-open .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .navbar .dropdown-menu .dropdown-item {
    padding: 8px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu,
  .navbar .nav-item:focus-within .dropdown-menu,
  .navbar .nav-item.izus-open .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

  .navbar .nav-item .dropdown-menu.show {
    top: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 1030;
  }
}

/*** Header ***/
#header-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 50px;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 373px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-caption {
    align-items: flex-end;
    padding-bottom: 48px;
  }

  .carousel-caption h1 {
    font-size: 2.35rem;
    line-height: 1.12;
    margin-bottom: 18px !important;
  }

  .carousel-caption p {
    font-size: 1rem !important;
    margin-bottom: 24px !important;
  }

  .carousel-caption .btn {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 18%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-width: 10px;
  }

  .page-header {
    margin-bottom: 2rem !important;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
    min-height: 420px;
  }

  .page-header h1 {
    font-size: 2.35rem;
  }

  .position-relative.overflow-hidden.rounded.ps-5 {
    padding-left: 0 !important;
    min-height: 360px !important;
  }

  .position-relative.overflow-hidden.rounded.ps-5 > img.position-absolute {
    left: 0;
    width: 100% !important;
  }

  .position-relative.overflow-hidden.rounded.ps-5 > .position-absolute.top-0.start-0 {
    width: 150px !important;
    height: 150px !important;
  }

  .position-relative.overflow-hidden.rounded.ps-5 > .position-absolute.top-0.start-0 h1 {
    font-size: 2rem;
  }

  .position-relative.overflow-hidden.rounded.ps-5 > .position-absolute.top-0.start-0 h2,
  .position-relative.overflow-hidden.rounded.ps-5 > .position-absolute.top-0.start-0 h5 {
    font-size: 1rem;
  }
}

.page-header {
  background: url(../img/carousel-11.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.page-header > .container {
  width: 100%;
}

/* Desktop-only: shrink the homepage hero carousel to 2/3 of its natural
   16:9 height (i.e. reduced by 1/3). Mobile height is handled in the
   max-width: 768px block above. */
@media (min-width: 769px) {
  #header-carousel .carousel-item {
    position: relative;
    aspect-ratio: 1920 / 720;
    overflow: hidden;
  }

  #header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header-produits {
  background-image: url(../img/headers/hero-produits.jpg);
}

.page-header-about {
  background-image: url(../img/headers/hero-about.jpg);
}

.page-header-avantages {
  background-image: url(../img/headers/hero-avantages.jpg);
}

.page-header-equipe {
  background-image: url(../img/headers/hero-equipe.jpg);
}

.page-header-temoignages {
  background-image: url(../img/headers/hero-temoignages.jpg);
}

.page-header-contact {
  background-image: url(../img/headers/hero-contact.jpg);
}

.page-header-devis {
  background-image: url(../img/headers/hero-devis.jpg);
}

.page-header-faq {
  background-image: url(../img/headers/hero-contact.jpg);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.page-header > .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #ffffff;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.75);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.facts .facts-text {
  background:
    linear-gradient(rgba(163, 61, 0, 0.9), rgba(163, 61, 0, 0.9)),
    url(../img/carousel-11.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url(../img/carousel-12.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a.btn {
  color: var(--primary);
}

.service-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Appointment ***/
.appointment {
  background:
    linear-gradient(rgba(255, 134, 0, 0.9), rgba(255, 134, 0, 0.9)),
    url(../img/carousel-11.jpg) center center no-repeat;
  background-size: cover;
}

/*** Store Buttons ***/
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.16);
}

.store-button:hover {
  color: #ffffff;
  background: var(--dark);
}

.store-button i {
  font-size: 1.85rem;
}

.store-button span {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}

.store-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 500;
}

.store-buttons-footer {
  flex-direction: column;
}

.store-buttons-footer .store-button {
  width: 100%;
  max-width: 240px;
  padding: 10px 14px;
}

/*** Preferred Offer ***/
.preferred-offer {
  background: #ffffff;
}

.preferred-offer-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.preferred-offer-image img {
  width: 100%;
  display: block;
}

.pricing-table {
  overflow: hidden;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  background: #ffffff;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 0.7fr 0.7fr;
  gap: 1px;
  border-bottom: 1px solid #edf0f5;
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row > span {
  padding: 16px;
  background: #ffffff;
}

.pricing-row strong,
.pricing-row small {
  display: block;
}

.pricing-row strong {
  color: var(--primary);
}

.pricing-row small {
  color: #454a54;
  font-weight: 500;
}

.pricing-row span:last-child {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.pricing-head span {
  color: #ffffff !important;
  background: var(--dark);
  font-weight: 700;
}

.brand-proof {
  background: #ffffff;
}

.brand-proof-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.brand-proof-image img {
  width: 100%;
  display: block;
}

.proof-item {
  height: 100%;
  padding: 20px;
  background: var(--light);
  border-radius: 8px;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  color: var(--dark);
  font-size: 1.1rem;
}

/*** Custom Pages ***/
.quote-panel,
.contact-panel,
.testimonial-card,
.advantage-item,
.process-card,
.team-value,
.error-page {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.quote-panel {
  padding: 32px;
}

.quote-section {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #edf0f5;
}

.quote-section h4 {
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.quote-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  background: var(--light);
  border-radius: 8px;
  cursor: pointer;
}

.quote-result {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  background: var(--dark);
  color: #ffffff;
  border-radius: 8px;
}

.quote-result span,
.quote-result small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.quote-result strong {
  display: block;
  font-size: 2rem;
  line-height: 1.15;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.quote-summary {
  margin-top: 24px;
  padding: 20px;
  background: var(--light);
  border-radius: 8px;
}

.quote-summary pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  color: #454a54;
}

.quote-benefit,
.contact-line {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #edf0f5;
}

.quote-benefit i,
.contact-line i,
.advantage-item i,
.team-value i,
.error-page i {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 8px;
}

.quote-benefit p,
.contact-line p,
.advantage-item p,
.process-card p,
.team-value p {
  margin-bottom: 0;
}

.contact-panel {
  padding: 32px;
}

.contact-map {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.advantage-item,
.team-value {
  height: 100%;
  padding: 24px;
}

.advantage-item i,
.team-value i {
  margin-bottom: 18px;
}

.feature-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.feature-visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.process-card {
  height: 100%;
  padding: 26px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--dark);
  border-radius: 50%;
  font-weight: 700;
}

.testimonial-card {
  height: 100%;
  padding: 28px;
}

.testimonial-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonial-card span {
  color: var(--primary);
  font-weight: 700;
}

.testimonial-card h5 a {
  color: inherit;
  text-decoration: none;
}

.testimonial-card h5 a:hover {
  color: var(--primary);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background: var(--light);
  border-radius: 8px;
}

.error-page {
  max-width: 680px;
  padding: 48px 32px;
}

.error-page i {
  margin: 0 auto 18px;
}

@media (max-width: 767.98px) {
  h1.display-6 {
    font-size: 2rem;
    line-height: 1.18;
  }

  body > .container-xxl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .quote-panel,
  .contact-panel {
    padding: 20px;
  }

  .quote-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .quote-options {
    grid-template-columns: 1fr;
  }

  .quote-result,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .quote-actions .btn,
  .contact-panel .btn,
  .cta-band .btn {
    width: 100%;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-head {
    display: none;
  }

  .pricing-row > span {
    padding: 12px 16px;
  }

  .pricing-row span:nth-child(2)::before {
    content: "Durée: ";
    font-weight: 700;
  }

  .pricing-row span:nth-child(3)::before {
    content: "Tarif: ";
    color: #454a54;
    font-size: 1rem;
    font-weight: 700;
  }

  .preferred-offer-image,
  .brand-proof-image {
    margin-bottom: 8px;
  }

  .quote-result strong {
    font-size: 1.65rem;
  }

  .quote-benefit,
  .contact-line {
    gap: 12px;
    align-items: flex-start;
  }

  .advantage-item,
  .process-card,
  .team-value,
  .testimonial-card {
    padding: 22px;
  }

  .feature-visual img {
    min-height: 320px;
  }

  .contact-map {
    min-height: 300px;
  }

  .footer {
    margin-top: 2rem !important;
  }

  .footer .row > [class*="col-"] {
    margin-bottom: 10px;
  }
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

/*** Footer ***/
.footer {
  color: #a7a8b4;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #a7a8b4;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #a7a8b4;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #a7a8b4;
  border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

/*** Produits cliquables ***/
.service-item {
  cursor: pointer;
  transition: 0.3s;
}

.service-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.service-item h4 a {
  color: inherit;
  text-decoration: none;
}

.service-item h4 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-item a.btn {
  position: relative;
  z-index: 2;
}

/*** Page produit : sidebar + détail ***/
.product-sidebar {
  position: sticky;
  top: 110px;
}

.product-list-group .list-group-item {
  border: 0;
  border-radius: 8px !important;
  margin-bottom: 6px;
  padding: 12px 16px;
  color: #454a54;
  font-weight: 500;
  transition: 0.3s;
}

.product-list-group .list-group-item i {
  width: 22px;
  color: var(--primary);
}

.product-list-group .list-group-item:hover {
  background: var(--light);
  color: var(--primary);
}

.product-list-group .list-group-item.active {
  background: var(--primary);
  color: #ffffff;
}

.product-list-group .list-group-item.active i {
  color: #ffffff;
}

.product-detail-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light);
}

.product-detail-icon i {
  color: var(--primary);
  font-size: 40px;
}

.product-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f5;
}

.product-points li:last-child {
  border-bottom: 0;
}

.product-points li i {
  color: var(--primary);
  margin-top: 4px;
}

.product-audience {
  padding: 20px 24px;
  background: var(--light);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.product-points-info li i {
  color: #6c757d;
}

@media (max-width: 991.98px) {
  .product-sidebar {
    position: static;
    margin-bottom: 32px;
  }
}
