/* Global Styles */
/* body {
    position: absolute;
}
body::after {
  content: "";
  background: url('../images/background-body.webp'), url('../images/background-body.png');
  background-repeat: repeat;
  background-size: cover;
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
} */

body {
  position: relative; /* Plus jamais absolute ici */
  min-height: 100vh;
  z-index: 0; /* Juste au cas où */
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* background: url('../images/background-body.webp'), url('../images/background-body.png'); */
  background-repeat: repeat;
  background-size: auto;

  opacity: 0.5;
  z-index: -1;
}

/* Si le navigateur supporte WebP */
@supports (background-image: url("../images/background-body.webp")) {
  body::after {
    background-image: url("../images/background-body.webp");
  }
}

/* Sinon fallback PNG */
@supports not (background-image: url("../images/background-body.webp")) {
  body::after {
    background-image: url("../images/background-body.png");
  }
}

header {
    padding-top: 50px;
}

/* Pour les titres principaux (H1, H2) */
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

i {
  margin: 0px !important;
}
.contener {
  margin: 0px 4vw;
}
/* Pour les noms de produits */
.article-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

/* Banner Section */
.banner {
    position: relative;
    text-align: center;
    color: darkgoldenrod;
}

.banner img {
    width: 100%;
    height: auto;
    /* border-bottom: 3px solid #ffc0cb; */
}
.mobile-banner {
      height: 100vh; /* Prend toute la hauteur de la fenêtre */
      object-fit: cover; /* Image centrée et adaptée sans déformation */
    }

/* Styles spécifiques pour la bannière */
.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-text h1 {
    position: absolute;
    top: 15%; /* Positionne le titre à 30% de la hauteur */
    left: 51.3%;
    transform: translateX(-50%);
    font-size: 5vw;
    margin: 0;
    color: white; /* Texte blanc */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Ajout d'ombre pour la lisibilité */
}
.h1-mobile {
    position: absolute;
    top: 15%; /* Positionne le titre à 30% de la hauteur */
    left: 51.3%;
    transform: translateX(-50%);
    font-size: 10vw !important;
    margin: 0;
    color: white; /* Texte blanc */
    text-shadow: 0px 0px 5px black !important; /* Ajout d'ombre pour la lisibilité */
    font-weight: bold !important;
}

/* Paragraphe 1 */
.paragraph-1 {
    position: absolute;
    top: 28%; /* Positionne le paragraphe à 40% de la hauteur */
    left: 51.3%;
    transform: translateX(-50%);
    font-size: 1.5vw;
    margin: 0;
    color: black;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.paragraph-1-mobile {
    position: absolute;
    top: 28%; /* Positionne le paragraphe à 40% de la hauteur */
    left: 19.3%;
    transform: translateX(-10%);
    font-size: 6vw;
    margin: 0;
    text-shadow: 0px 0px 5px black; /* Ajout d'ombre pour la lisibilité */
    font-weight: bold;
    text-align: center;
}
/* Paragraphe 2 */
.paragraph-2 {
    position: absolute;
    top: 32%; /* Positionne le paragraphe à 55% de la hauteur */
    left: 51.3%;
    transform: translateX(-50%);
    font-size: 1.5vw;
    margin: 0;
    color: black;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Paragraphe 3 */
.paragraph-3 {
    position: absolute;
    top: 47%; /* Positionne le paragraphe à 70% de la hauteur */
    left: 51.3%;
    transform: translateX(-50%);
    font-size: 2vw;
    margin: 0;
    color: darkgoldenrod;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Style du bouton */
.btn-custom {
    display: inline-block;
    position: absolute;
    top: 42%; /* Positionne le bouton à 50% de la hauteur */
    left: 51.3%;
    transform: translate(-50%, -50%);
    background-color: #ff4fa2; /* Rose vif */
    color: white; /* Texte blanc */
    padding: 1vw 2vw; /* Espacement intérieur */
    font-size: 1.5vw; /* Taille de la police */
    border: none;
    border-radius: 3vw; /* Bords arrondis */
    text-decoration: none; /* Supprime le soulignement */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre */
    transition: all 0.3s ease; /* Transition fluide */
    text-align: center;
}

.btn-custom:hover {
    background-color: darkgoldenrod; /* Couleur plus foncée au survol */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-voir-plus {
  background-color: #ff4fa2; /* Rose vif */
  color: white; /* Texte blanc */
  padding: 2vw 3vw; /* Espacement intérieur */
  border: none;
  border-radius: 6vw; /* Bords arrondis */
  text-decoration: none; /* Supprime le soulignement */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre */
  transition: all 0.3s ease; /* Transition fluide */
  text-align: center;
}
/* Banner Section Fin*/

/* NAVBAR */
.navbar {
  /* padding: 15px; */
}

/* Logo */
.navbar-brand {
  margin-right: 0px;
}
/* Bouton recherche */
.search-container {
    position: relative;
}

.search-input {
    /* height: 50px; */
    width: 12rem;
    border-radius: 15px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
}

/* Bouton panier */
.btn-white {
  background-color: white;
  border-radius: 15px;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* NAVBAR FIN */

/* PAGE PRODUIT */

/* css defilement banniere */
.texte-defilant {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 25px; /* hauteur fixe pour que le texte soit visible */

}

.texte-defilant p {
  position: absolute;
  white-space: nowrap;
  animation: defilement 15s linear infinite;
}

@keyframes defilement {
  from {
    left: 100%;
  }
  to {
    left: -100%;
  }
}

p.frosted {
  position: relative;            /* pour que le backdrop-filter s’applique dans son propre contexte */
  z-index: 1;                    /* au-dessus du body::after */
  padding: 1em;
  /* fond semi-transparent pour laisser passer le flou */
  /* background-color: rgba(255, 255, 255, 0.4); */
  /* optionnel : limiter le flou au fond (évite que le fond déborde sous la bordure) */
  background-clip: padding-box;

  /* FLUOTRE DU DERRIÈRE (texte non affecté) */
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.filter-panel {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.filter-panel.open {
  max-height: 1000px; /* assez grand pour contenir tout */
}

/* FIN PAGE PRODUIT */
/* ARTICLES */
.text-pink {
    color: #e83e8c !important; /* Rose Bootstrap typique */
}

.btn-article {
  color: white;
  background-color: pink;
  border-color: hotpink;
  border-radius: 30px;
}
.btn-article:hover {
  color: white;
  background-color: hotpink;
}
.btn-pink {
  background-color: pink;
  color: white;
  border: none;
  border-radius: 0px 10px;
  font-size: 1.5vw;
  font-weight: bold;
}
.btn-pink:hover {
  background-color: #ff4786;
}
.article-card img {
  /* height: 200px; */
  object-fit: cover;
}
.article-title {
min-height: 4.5rem; /* Réserve l’espace pour 3 lignes (1.5rem par ligne environ) */
overflow: hidden; /* Coupe le texte si jamais il dépasse plus de 3 lignes */
color: #ff4786;
}
.article-title-a {
text-decoration: none;
color: #ff4786;
}

.article-card {
height: 100%; /* S'assure que toutes les cartes ont la même hauteur globale */
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
border-radius: 15px;
}

/* ✅ Style du bouton panier pour garder une seule ligne */
.btn-panier {
white-space: nowrap;          /* Empêche le texte de passer à la ligne */
display: flex;                /* Aligne l'icône et le texte */
justify-content: center;      /* Centre horizontalement */
align-items: center;          /* Centre verticalement */
font-size: clamp(0.8rem, 2.5vw, 1rem); /* Taille du texte adaptative */
/* padding: 0.75rem; */
}
.prix {
color: #a56c2a;
}


/* Optionnel : Ajustement du bouton sur des très petits écrans */
@media (max-width: 400px) {
.btn-panier {
 padding: 0.5rem;
}
.prix {
 color: #a56c2a;
 font-size: 5vw;
}
}
/* ARTICLES FIN */

/* ANIMATIONS */

/* Animation coeur favoris */
/* Le cœur "éteint" par défaut */
.favori-btn i {
 position: relative;
 color: #e83e8c; /* Rose Bootstrap */
 transition: color 0.3s ease;
}

/* Crée une pseudo-couche pour l'effet */
.favori-btn::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 0%;
 height: 0%;
 background-color: #e83e8c;
 border-radius: 50%;
 transform: translate(-50%, -50%);
 opacity: 0;
 transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
 z-index: 1;
}

/* "Allume" le cœur (effet expansion) */
.favori-btn.tele-on::after {
 width: 140%;
 height: 140%;
 opacity: 0.2;
}

/* Ajoute un effet lumineux ou rebond */
.favori-btn.tele-on i {
 color: #fff; /* ou #e83e8c selon goût */
 animation: heartOn 0.4s ease;
}

/* "Éteint" le cœur (effet contraction) */
.favori-btn.tele-off::after {
 width: 0%;
 height: 0%;
 opacity: 0;
}

.favori-btn.tele-off i {
 color: #e83e8c;
 animation: heartOff 0.4s ease;
}

/* Keyframes si tu veux renforcer l'effet */
@keyframes heartOn {
 0% { transform: scale(0.5); opacity: 0; }
 100% { transform: scale(1); opacity: 1; }
}

@keyframes heartOff {
 0% { transform: scale(1); opacity: 1; }
 100% { transform: scale(0.3); opacity: 0.5; }
}

.titrecommande {
  font-size: 1.3vw;
}
.textcommande {
  font-size: 1vw;
}
.colorcommande {
  color: #ff4786;
}

/* Tablette */
@media (max-width: 1024px) {

}

/* Mobile */
@media (max-width: 767px) {
  /* Style du bouton */
  .btn-custom {
      display: inline-block;
      position: absolute;
      top: 50%; /* Positionne le bouton à 50% de la hauteur */
      left: 51.3%;
      transform: translate(-50%, -50%);
      background-color: #ff4fa2; /* Rose vif */
      color: white; /* Texte blanc */
      padding: 1vw 2vw; /* Espacement intérieur */
      font-size: 5vw; /* Taille de la police */
      border: none;
      border-radius: 3vw; /* Bords arrondis */
      text-decoration: none; /* Supprime le soulignement */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre */
      transition: all 0.3s ease; /* Transition fluide */
      text-align: center;
  }

  .btn-pink {
    font-size: 2vw;
  }

  .titrecommande {
    font-size: 4vw;
  }
  .textcommande {
    font-size: 3vw;
  }
  .colorcommande {
    color: #ff4786;
  }
}

@media (max-width: 425px) {
  /* Style du bouton */
  .btn-custom {
      display: inline-block;
      position: absolute;
      top: 50%; /* Positionne le bouton à 50% de la hauteur */
      left: 51.3%;
      transform: translate(-50%, -50%);
      background-color: #ff4fa2; /* Rose vif */
      color: white; /* Texte blanc */
      padding: 1vw 2vw; /* Espacement intérieur */
      font-size: 5vw; /* Taille de la police */
      border: none;
      border-radius: 3vw; /* Bords arrondis */
      text-decoration: none; /* Supprime le soulignement */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre */
      transition: all 0.3s ease; /* Transition fluide */
      text-align: center;
  }

  .btn-pink {
    font-size: 4vw;
  }

  .titrecommande {
    font-size: 4vw;
  }
  .textcommande {
    font-size: 3vw;
  }
  .colorcommande {
    color: #ff4786;
  }
}
/*////////////////// CHECKOUT.PHP A TRIER /////////////*/

@import url('https://fonts.googleapis.com/css?family=Roboto');

body{
font-family: 'Roboto', sans-serif;
}
* {
margin: 0;
padding: 0;
}
i {
margin-right: 10px;
}

/*------------------------*/
input:focus,
button:focus,
.form-control:focus{
outline: none;
box-shadow: none;
}
.form-control:disabled, .form-control[readonly]{
background-color: #fff;
}
/*----------step-wizard------------*/
.d-flex{
display: flex;
}
.justify-content-center{
justify-content: center;
}
.align-items-center{
align-items: center;
}

/*---------signup-step-------------*/
.bg-color{
background-color: #333;
}
.signup-step-container{
padding: 150px 0px;
padding-bottom: 60px;
}

 .wizard .nav-tabs {
     position: relative;
     margin-bottom: 0;
     border-bottom-color: transparent;
 }

 .wizard > div.wizard-inner {
         position: relative;
 margin-bottom: 50px;
 text-align: center;
 }

.connecting-line {
 height: 2px;
 background: #e0e0e0;
 position: absolute;
 width: 75%;
 margin: 0 auto;
 left: 0;
 right: 0;
 top: 15px;
 z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
 color: #555555;
 cursor: default;
 border: 0;
 border-bottom-color: transparent;
}

span.round-tab {
 width: 30px;
 height: 30px;
 line-height: 30px;
 display: inline-block;
 border-radius: 50%;
 background: #fff;
 z-index: 2;
 position: absolute;
 left: 0;
 text-align: center;
 font-size: 16px;
 color: #0e214b;
 font-weight: 500;
 border: 1px solid #ddd;
}
span.round-tab i{
 color:#555555;
}
.wizard li.active span.round-tab {
     background: #0db02b;
 color: #fff;
 border-color: #0db02b;
}
.wizard li.active span.round-tab i{
 color: #5bc0de;
}
.wizard .nav-tabs > li.active > a i{
color: #0db02b;
}

.wizard .nav-tabs > li {
 width: 25%;
}

.wizard li:after {
 content: " ";
 position: absolute;
 left: 46%;
 opacity: 0;
 margin: 0 auto;
 bottom: 0px;
 border: 5px solid transparent;
 border-bottom-color: red;
 transition: 0.1s ease-in-out;
}



.wizard .nav-tabs > li a {
 width: 30px;
 height: 30px;
 margin: 20px auto;
 border-radius: 100%;
 padding: 0;
 background-color: transparent;
 position: relative;
 top: 0;
}
.wizard .nav-tabs > li a i{
position: absolute;
 top: -15px;
 font-style: normal;
 font-weight: 400;
 white-space: nowrap;
 left: 50%;
 transform: translate(-50%, -50%);
 font-size: 12px;
 font-weight: 700;
 color: #000;
}

 .wizard .nav-tabs > li a:hover {
     background: transparent;
 }

.wizard .tab-pane {
 position: relative;
 padding-top: 20px;
}


.wizard h3 {
 margin-top: 0;
}
.prev-step,
.next-step{
 font-size: 13px;
 padding: 8px 24px;
 border: none;
 border-radius: 4px;
 margin-top: 30px;
}
.next-step{
background-color: #0db02b;
}
.skip-btn{
background-color: #cec12d;
}
.step-head{
 font-size: 20px;
 text-align: center;
 font-weight: 500;
 margin-bottom: 20px;
}
.term-check{
font-size: 14px;
font-weight: 400;
}
.custom-file {
 position: relative;
 display: inline-block;
 width: 100%;
 height: 40px;
 margin-bottom: 0;
}
.custom-file-input {
 position: relative;
 z-index: 2;
 width: 100%;
 height: 40px;
 margin: 0;
 opacity: 0;
}
.custom-file-label {
 position: absolute;
 top: 0;
 right: 0;
 left: 0;
 z-index: 1;
 height: 40px;
 padding: .375rem .75rem;
 font-weight: 400;
 line-height: 2;
 color: #495057;
 background-color: #fff;
 border: 1px solid #ced4da;
 border-radius: .25rem;
}
.custom-file-label::after {
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 z-index: 3;
 display: block;
 height: 38px;
 padding: .375rem .75rem;
 line-height: 2;
 color: #495057;
 content: "Browse";
 background-color: #e9ecef;
 border-left: inherit;
 border-radius: 0 .25rem .25rem 0;
}
.footer-link{
margin-top: 30px;
}
.all-info-container{

}
.list-content{
margin-bottom: 10px;
}
.list-content a{
padding: 10px 15px;
 width: 100%;
 display: inline-block;
 background-color: #f5f5f5;
 position: relative;
 color: #565656;
 font-weight: 400;
 border-radius: 4px;
}
.list-content a[aria-expanded="true"] i{
transform: rotate(180deg);
}
.list-content a i{
text-align: right;
 position: absolute;
 top: 15px;
 right: 10px;
 transition: 0.5s;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
 background-color: #fdfdfd;
}
.list-box{
padding: 10px;
}
.signup-logo-header .logo_area{
width: 200px;
}
.signup-logo-header .nav > li{
padding: 0;
}
.signup-logo-header .header-flex{
display: flex;
justify-content: center;
align-items: center;
}
.list-inline li{
 display: inline-block;
}
.pull-right{
 float: right;
}
/*-----------custom-checkbox-----------*/
/*----------Custom-Checkbox---------*/
input[type="checkbox"]{
 position: relative;
 display: inline-block;
 margin-right: 5px;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
 position: absolute;
 content: "";
 display: inline-block;
}
input[type="checkbox"]::before{
 height: 16px;
 width: 16px;
 border: 1px solid #999;
 left: 0px;
 top: 0px;
 background-color: #fff;
 border-radius: 2px;
}
input[type="checkbox"]::after{
 height: 5px;
 width: 9px;
 left: 4px;
 top: 4px;
}
input[type="checkbox"]:checked::after{
 content: "";
 border-left: 1px solid #fff;
 border-bottom: 1px solid #fff;
 transform: rotate(-45deg);
}
input[type="checkbox"]:checked::before{
 background-color: #18ba60;
 border-color: #18ba60;
}






@media (max-width: 767px){
.sign-content h3{
 font-size: 40px;
}
.wizard .nav-tabs > li a i{
 display: none;
}
.signup-logo-header .navbar-toggle{
 margin: 0;
 margin-top: 8px;
}
.signup-logo-header .logo_area{
 margin-top: 0;
}
.signup-logo-header .header-flex{
 display: block;
}
}

/* ==========================================================
   CARROUSEL « VOUS AIMEREZ AUSSI »
   ========================================================== */
.msk-recommendations {
  position: relative;
  width: 100%;
  padding: 1rem 0 6rem;
  overflow: hidden;
}

.msk-recommendations-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  text-align: center;
}

.msk-recommendations-heading h2 {
  margin: 0;
  color: #ff4786;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.msk-recommendations-shell {
  position: relative;
  width: 100%;
  padding: 0 2.75rem;
}

.msk-recommendations-swiper {
  width: 100%;
  overflow: hidden;
  padding: 0.65rem 0 1rem;
  touch-action: pan-y;
}

/* Nécessaire même si la feuille CSS officielle de Swiper n'est pas chargée. */
.msk-recommendations-swiper .swiper-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  transition-timing-function: linear !important;
}

.msk-recommendations-swiper .swiper-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

.msk-recommendation-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.msk-recommendation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.msk-recommendation-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.msk-recommendation-image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
}

.msk-recommendation-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.msk-recommendation-card:hover .msk-recommendation-image {
  transform: scale(1.035);
}

.msk-recommendation-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.9rem;
}

.msk-recommendation-name {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  color: #ff4786;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.msk-recommendation-price {
  color: #a56c2a;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 700;
}

.msk-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #ff4786;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.msk-carousel-nav:hover,
.msk-carousel-nav:focus-visible {
  background: #ff4786;
  color: #fff;
}

.msk-carousel-nav i {
  margin: 0 !important;
  font-size: 1.1rem;
}

.msk-carousel-prev {
  left: 0.1rem;
}

.msk-carousel-next {
  right: 0.1rem;
}

.msk-carousel-nav.swiper-button-disabled,
.msk-carousel-nav.swiper-button-lock {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Dans le modal Bootstrap : laisse respirer le carrousel sans créer de débordement. */
#product-modal-content .msk-recommendations {
  padding-bottom: 1.5rem;
}

#product-modal-content .msk-recommendations-shell {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
}

@media (max-width: 767px) {
  .msk-recommendations {
    padding-top: 0.5rem;
    padding-bottom: 5.25rem;
  }

  .msk-recommendations-shell,
  #product-modal-content .msk-recommendations-shell {
    padding-right: 0;
    padding-left: 0;
  }

  .msk-carousel-nav {
    display: none;
  }

  .msk-recommendation-content {
    padding: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .msk-recommendation-card,
  .msk-recommendation-image {
    transition: none;
  }
}

