@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;700;800&family=Rubik:wght@300;400;500;600&display=swap');
:root{
  --primary-color: rgb(235, 63, 25);
  --secondary-dark-color:#453c5c;

  --white-color:#ffffff;
  --light-bg-color:#f2f3f5;
  --light-text-color:#7c899a;
  --border-color:#e5e8ec;
  --dark-color:#0a021C;

  --font-small:13px;
  --font-smaller:11px;

  --percent100:100%;
  --percent50:50%;  

  --fw3:300;
  --fw5:500;
  --fw6:600;
  --fw7:700;
  --fw8:800;

  --trans-background-color:background-color .3s, color .3s;
  --trans-background: background-color .3s;
  --trans-color:color .3s;

  --swiper-navigation-size: 44px
}

@font-face {
  font-family: 'FedraArabicDisplay';
  src:
       url('assets/fonts/dubai-bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


a:focus,
a:active,
a:hover,
a:visited:focus,
a:visited:active,
a:visited:hover {
  outline: none;
}

html {
  touch-action: manipulation;
}

@viewport {
  zoom: reset; /* Pour les anciennes versions de IE */
}

body {
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-family: 'FedraArabicDisplay', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  background-color: #f5f5f5;
  flex: 0 0 10%;
  orientation: portrait;
}

.special-text {
  font-size: 18px;
  font-weight: bold;
}

.red-text {
  color: red;
}

.green-text {
  color: green;
}

.page-banner .inner h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* dorée flash produit  */
.flash-countdown {
  background-color: #FFD700; /* Une teinte légèrement plus claire de doré */
  padding: 15px; /* Augmentation de la taille du padding pour plus d'espace */
  border-radius: 15px; /* Plus de courbure pour un aspect plus doux */
  margin-top: -8px;
  margin-bottom: -13px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Augmentation de l'ombre portée pour plus de contraste */
}

.flash-text {
  display: inline-block;
  color: #ffffff; /* Blanc pur pour un contraste maximal */
  font-size: 28px; /* Une taille de police plus grande */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Une ombre portée plus prononcée */
}

.flash-countdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 1) 50%, rgba(255, 215, 0, 0) 100%);
  z-index: -1;
  border-radius: 20px; /* Plus de courbure pour correspondre à celle du conteneur */
  animation: borderAnimation 2s linear infinite;
}

@keyframes borderAnimation {
  0% {
      transform: translateX(-100%) translateY(-100%);
  }
  100% {
      transform: translateX(100%) translateY(100%);
  }
}
/* fin */
 /* Styles communs pour tous les appareils */
 .sectop1 {
  padding: 5px;
  text-align: center;
  border-radius: 80px;
  position: relative;
  background: linear-gradient(to right, #FF0000, #FF7F00);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  width: auto;
  justify-content: center;
  padding-bottom: 0.5em;
  margin-bottom: 2em;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s;
}

.sectop1:hover {
  transform: rotateY(10deg); /* ou autre angle selon votre préférence */
}


.sectop1 h2 {
  color: #333;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 2;
}

.sectop1 span {
  color: #fff;
  font-weight: normal;
}

@keyframes moveColor {
  0% {
      background-position: 0% 0%;
  }
  100% {
      background-position: 100% 0%;
  }
}
/* banner end  */

    
.new-price {
  font-size: 19px;
  color: rgb(253, 56, 79);
  margin-left: 5px;
  display: inline-block;
}

.new-price > span {
  font-size: 6px;
  color: rgb(253, 56, 79);
  display: inline-block;
}

/* Animation standard */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3); /* Augmente légèrement le zoom */
  }
  100% {
    transform: scale(1);
  }
}

/* Déclenchement de l'animation sur 50% des cas */
.new-price:nth-child(2n) {
  animation: zoomInOut 2s infinite alternate; /* Applique l'animation sur les éléments correspondant au 2e multiple */
}

.current-price {
  flex-wrap: wrap;
  display: flex;
  align-items: center; /* Centrer verticalement */
  justify-content: center; /* Centrer horizontalement */
  position: relative; /* Pour que l'animation soit relative à ce conteneur */
  
}

.old-price {
  font-size: 17px;
  font-weight: lighter;
  text-decoration: line-through;
  opacity: 0.5; /* Légèrement plus visible */
  margin-right: 10px; /* Ajouter un espace avant le nouveau prix */
  flex-wrap: wrap; /* Permettre le retour à la ligne */
}

/* Si l'ancien prix est présent, revenir à la ligne pour le nouveau prix */

.current-price .old-price {
  
  flex: 0 0 100%; /* Occuper toute la largeur pour l'ancien prix */
}

/* modal  */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 50%; /* Centrer horizontalement */
  top: 0;
  transform: translateX(-50%); /* Centrer horizontalement */
  width: 170%; /* Agrandir le modal de 30% */
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.25); /* Complètement transparent */
}

.modal-content {
  background-color: transparent;
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  padding: 10px;
  border: none;
  max-width: 100%;
  text-align: center;
}


.close {
  color: #fff; /* Couleur blanche pour une meilleure visibilité */
  position: absolute; /* Position absolue pour un positionnement précis */
  top: 20px; /* Ajuster la position verticale */
  right: 20px; /* Ajuster la position horizontale */
  font-size: 28px; /* Taille du texte */
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000; /* Couleur noire au survol */
  text-decoration: none;
  cursor: pointer;
}


#modal-image {
  max-width: 65%; /* Rendre l'image un peu plus petite */
 
  left: -50%; /* Ajuster la position de l'image */
}
/* bouton whatsapp share */

.share-btn {
display: inline-block;
margin: 0 5px;
padding: 12px 24px;
border-radius: 4px;
color: #fff;
font-size: 8px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
text-decoration: none;
background-color: #337ab7;
/* border: 2px solid #337ab7; */
transition: background-color 0.2s ease-in-out;
}

/* Les styles des différents boutons restent inchangés */



.share-btn-whatsapp {
  background-color: #25D366;
}

.share-btn-sharelink {
  background: linear-gradient(45deg, #FFA500, #FF4500);
  background-size: 200% 200%;
  background-position: 0% 0%, 100% 0%;
}

/* bouton whatsapp share END */

/* Cacher les boutons "Prev" et "Next" du carrousel bxSlider */
.bx-controls-direction {
  display: none;
}

.scrollup {
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  right: 15px;
  display: none;
  margin-bottom: 15em;
 
}
.scrollup i {
 
  width: 60px;
  height: 60px;
  line-height: 50px;
  border-radius: 50%;
  background: #0d1452;
  color: #fff;
  border: 4px solid #0d1452;
  text-align: center;
  font-size: 30px;
  opacity: 0.3;
  filter: alpha(opacity=50);
}
.scrollup i:hover {
  opacity: 1;
  filter: alpha(opacity=1);
}
.prod-pager-thumb {
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
  margin-right: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#prod-pager {
  margin-top: 20px;
}

#prod-pager a {
  float: left;
  margin-right: 3px;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus,
a:active,
a:hover {
  text-decoration: none;
}

.page {
    width: 100%;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}/* Hamza modiff, make 100% image at product.php */
ul.prod-slider li {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
  
  position: relative;
}
ul.prod-slider li a {
    top: 0;
    left: 0;
    width: 100%;
    height: 630px; /* Ajustez cette valeur à votre guise */
    display: block;
    z-index: 99999999;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .sectop1 {
    font-size: 16px;
    height: 28px;
}

.sectop1 h2 {
    font-size: 18px;
}

  }
*{
  margin:0;
  padding:0;
}
*,::before,::after {
  box-sizing: border-box;
}

a {
  text-decoration:none;
  color:inherit;
  -webkit-tap-highlight-color: transparent;
}
ul {
  list-style:none;
  
}
img {
    max-width: var(--percent100);
    vertical-align:middle;
  }
strong {
  font-weight: var(--fw8);

}
table {
border-collapse: collapse;
border-spacing: 0;
}
input::placeholder {
font:inherit;

}

h1,h2,h3,h4{  font-family: 'FedraArabicDisplay', sans-serif;
}
h1 {
font-size: calc(1.3em+ 1vw);
font-weight: var(--fw8);
line-height: 1;
}
h2 {
  font-size: 2.5em;
}
h3 {
  font-size: 1.2em;
  font-weight: var(--fw7);
}
h4 {
font-size: 1em;
font-weight: var(--fw6);
}
.glyphicon{
  font-size: 22px;
  width:30px;
  background-image: transparent;
  color:red;
 
}
/*SLIDE PRODUCT hamza*/
h2{
  text-align:center;
  padding: 20px;
}
/* Slider */

.slick-slide {

    display: flex;
justify-content: space-between;
align-items: center;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*SLIDE PRODUCT hamza END*/
.contain {
  max-width: 1290px;
 
  margin: 0 auto;
 
}

/* banner 
 */
 .page-banner {
  position: relative;
  width: 100%;
  height: 180px; /* Ajustez la hauteur selon vos besoins */
  background-size: cover;
  background-position: center;
  border-radius: 8px; /* Coins arrondis */
}

.page-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Couleur de fond semi-transparente pour l'effet d'ombrage */
  border-radius: 8px; /* Coins arrondis */
}

.page-banner .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}

.page-banner h1 {
  font-size: 34px; /* Ajustez la taille de la police selon vos besoins */
  margin: 0;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.7); /* Fond semi-transparent pour le texte */
  border-radius: 4px; /* Coins arrondis */
}

.page-banner p {
  font-size: 20px; /* Ajustez la taille de la police selon vos besoins */
  margin: 20px 0;
}
/* banner end  */



/* by hamza slide marge inter */
.Slidemargin{
  max-width: 1080px;
  max-height:500px;
  margin: 0 auto;
 
}
.column {


  margin-left: 9em;
  margin-right: 9em;
}

/* .column .row {
  padding:0 1.938em;

} */
.flexwrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

}
.flexcenter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flexitem {
display: flex;
align-items: center;
}
.flexcol {
  display:flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

.main-links a:hover {
  color: var(--secondary-color);
  
}
.second-links a:hover {
  color: var(--light-text-color);
  

}
.icon-small, .icon-large {
display: flex;
align-items: center;
padding: 0 0.25em;
font-weight: normal;
}
.icon-small {
  font-size: 1.25em;
  margin-left: auto;
}
.icon-large {
  font-size: 1.75em;
  padding: 0 0.75em 0 0;
}

.mobile-hide {
  display: none;
  
}


.search-box { 
  position: relative;
  /* margin-top: 9.7em;
  margin-left: -18.5em;
  margin-right: -5.7em; */
  
}


.products .media {
  position: relative;
  flex-shrink:0 ;
  overflow: hidden;
   object-fit: cover;
}

/* gpt bouton transparent header langue */
.transparent-btn {
  background-color: transparent;
  border: none;
  border-radius: 5px; /* Ajout d'un rayon de bordure */
  color: #000;
  text-decoration: none;
  margin-right: 10px; /* espacement entre les boutons */
  cursor: pointer;
}
.red-btn {
  background-color: #f00;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold; /* Texte en gras */
  text-decoration: none;
  margin-right: 10px;
  cursor: pointer;
}




/*HEADER*/
header li > a {
  display: flex;
  position: relative;
  line-height: inherit;
  transition: var(--trans-color);
}

:where(.off-canvas, header) li > a {
display: flex;
position: relative;
line-height: inherit;
transition: var(--trans-color);

}

.header-top .wrapper{
font-size: var(--font-small);
font-weight: var(--fw3);
justify-content: space-between;
line-height: 52px;
margin-right: -4.2em;

}



.bx-wrapper {
  position: relative;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
}


.header-top .wrapper ul{
  gap: 5em;
}
.header-top li {
  position: relative;
  margin-bottom: -5px;
}

.header-top ul ul {
  position: absolute;
  left: -1em;
  line-height: 2em;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  z-index: 1;
  display: none;
}
:where(.header-top, .thetop-nav) .right ul ul li a {
  padding: 0.25em 1em;
}

:where(.header-top, .thetop-nav) .right ul ul li.current a {
  background-color: var(--border-color);
}

.header-top li:hover ul {
  display: block;
}
/*Header NAV White bar*/
.header {
 

 
  width: 100%; /* Ajoutez cette ligne pour étendre la barre à 100% de la largeur de l'écran */

}
.header-nav {
  height:8.6em;
  background-color: var(--white-color);
  border-style: outset;
  border-color: rgb(240, 236, 236);
  width: 100%; /* Ajoutez cette ligne pour étendre la barre à 100% de la largeur de l'écran */

}
.trigger {
  font-size: 2.4em;
  display: flex;
  padding:0.5em;
  margin-bottom: 2em;

}

.logo a {
width: 200px;
display:flex;
position: relative;
margin-top:-3.5em;
margin-left:2.5em;
font-size:100%;

 
}
.header-nav nav > ul {
  line-height: 100px;
  gap:1em;
}


@keyframes shake {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-10px) rotate(-15deg);
  }
  20% {
    transform: translateX(-10px) rotate(-15deg);
  }
  30% {
    transform: translateX(10px) rotate(15deg);
  }
  40% {
    transform: translateX(10px) rotate(15deg);
  }
  50% {
    transform: translateX(-10px) rotate(-15deg);
  }
  60% {
    transform: translateX(-10px) rotate(-15deg);
  }
  70% {
    transform: translateX(10px) rotate(15deg);
  }
  80% {
    transform: translateX(10px) rotate(15deg);
  }
  90% {
    transform: translateX(-10px) rotate(-15deg);
  }
  100% {
    transform: translateX(0);
  }
}

.cart-animation, .wishlist-animation {
  animation-name: shake;
  animation-duration: 0.6s;
  animation-iteration-count: 3; /* Répéter l'animation 3 fois */
}




.fly-item {
position: absolute;
height: 17px;

font-size: var(--font-small);
padding:1.8px;
text-align: center;
line-height: 15px;
color: var(--white-color);

}

  nav .fly-item,
  .header-nav .mini-cart .price .fly-item {
  top:50%;
  margin-top: -24px;
  width:30px;
  border-radius: 3px;
  right: -32px;
  background-color: var(--primary-color);
  }

  .header-nav .right {
    position: relative;
    margin-left:1em;
  }

  .header-nav .right .icon-large {
    position: relative;
  }

  .header-nav .right .fly-item {
    top:-0.4em;
    right: 11px;
    width: 18px;
    height: 18px;
    background-color: red;
    border-radius: var(--percent50); 
  }

  

  .mega .flexcol{
    flex:1;
    min-width: 180px;
   
    margin-bottom: 1.5em; 
    z-index:1 ;
  }
  


 /*HEADER MAIN DEPARTMENT Category hamza emplacement Cadre categorie + slider*/

.dpt-cat {
  position: relative;
  z-index: 10; 
  margin-top:1%;
}
.dpt-cat .dpt-head {
  position: relative;
  width: 300px;
  padding: 0.500em 0%;
  background-color: var(--primary-color);


  
  /*hamza
  border-radius: 10px 10px 0 0;*/
  border-radius: 7px 7px 0 0;
  
  
 /*hamza*/
margin-top: -30%;
 

  background-color: var(--white-color);
  border: 1px solid var(--border-color);

  
}



.dpt-cat .dpt-head .mini-text {
  color: var(--light-bg-color);
}
.dpt-cat .dpt-trigger {
  position:absolute;
  right: 0;
  top: 0;
  padding: 1.3em;
  height: 60px;
  width: 60px;
}
.dpt-menu > ul > li > a {
  margin-top: 0.2em;
  font-size: var(--font-small);
  height: 46px;
  align-items: center;
  

}
.dpt-menu .has-child:hover ul{
  display:block;
}
.dpt-menu .has-child li a:hover{
  color:red;
  text-decoration: underline;
  text-decoration-color: rgb(255, 0, 0);
}
.lft .has-child li a:hover{
  color:red;
  text-decoration: underline;
  text-decoration-color: rgb(255, 0, 0);
}

 /* Search*/

 .header-main .right {
  
  flex: 1;
 }
form {
  position: relative;
   
 }  
  /* hamza search bar + wishlist position*/
 #firstform {
  position: relative;

  margin-top: 3em;
  margin-right:-46em;
  margin-left:-11.2em;
  margin-bottom:0em;

 } 


 
form.search input {
  border-style: solid;
  border-width: 0.22em;
  border-color: red;
  line-height: 3.25em;
  padding: 0 7em 0 4.5em;

  outline: 0;
  width: var(--percent100);
  border-radius: 7px;
  font-size: 0.85em;
  font-weight: var(--fw3);
}

form.search :where(span,button) {
  position: absolute;
  top: 0;
  padding: 0.55em 1.2em;
  font-size: 1.2em;
  color: var(--light-text-color);
  height: var(--percent100);


}

form.search button {
  right: 0;
  border: 0;
  outline: 0;
  font-size: 0.95em;
  font-weight: var(--fw6);
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 0 7px 7px 0;
  cursor: pointer;
  transition: var(--trans-background) ;
}
form.search button:hover {
  background-color: var(--dark-color);
}

/*HEADER Responsive Menu-off Canvas*/


.site-off {
  position: fixed;
  width: 320px;
  height: var(--percent100);
  background-color: var(--white-color);
  overflow-y: auto;
  z-index: 1000;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .4S, visibility .4s;
  will-change: transform, visibility;
}
.showmenu .site-off {
  transform: translateX(0);
  visibility: visible;
  transform: transform .4S 0S, visibility 0s 0s;
}
.off-canvas {
  width: var(--percent100);
  height: var(--percent100);
  touch-action: auto;
  padding: 1.5em;

}
.off-canvas .canvas-head {
  color: var(--white-color);
  justify-content: space-between;
  padding: 1.5em;
  margin: -1.5em -1.5em 1.5em;
  background-color: var(--secondary-dark-color);
  border-bottom-right-radius: 160px 25px;
}
.off-canvas .canvas-head .logo {
  z-index: 10;
  position: relative;

}
.off-canvas .canvas-head .logo .circle {
  opacity: .75;
}
.t-close {
  font-size: 1.25em;
  width: 32px;
  height: 32px;
  border-radius: var(--percent50);
  background-color: var(--secondary-dark-color);
  color: var(--white-color);
  transition: var(--trans-background-color);

}
.t-close:hover {
  background-color: var(--white-color);
  color: var(--secondary-dark-color);
  opacity:  .75;
}
.off-canvas .dpt-head {
  font-size: var(--font-small);
  padding: 1em;
  margin-bottom: 1em;
 
  background-color: var(--light-bg-color);
  border-radius: 7px 7px 0 0; 
}
.off-canvas .has-child > :where(ul, .mega) {
  font-size: var(--font-small);
  font-weight: var(--fw3);
  line-height: 28px;
  padding-left: 3em;
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(0.215, 0.610, 0.355, 1);

}

.off-canvas .expand > :where(ul, .mega) {
  max-height: 2000px;
}
.off-canvas .thetop-nav ul, .off-canvas nav > ul {
  flex-direction: column;
  align-items: flex-start;
  font-size: var(--font-small);
  line-height: 36px;
  padding-top: 1.25em;
  margin:1.25em 0;
  border-top: 1px solid var(--border-color); 
}

.off-canvas nav .mega {
  padding: 0;

}
.off-canvas nav .mega .products {
  display: none;

}
.off-canvas .has-child .icon-small {
  padding: 0.5em;
  line-height: initial;
}
.off-canvas .dpt-menu .icon-small i {
  transform: rotate(90deg);
}
.off-canvas .has-child {
  width: var(--percent100);
}
.off-canvas .thetop-nav .right > ul > :where(:nth-child(4), li:nth-child(5)) > a {
  display:none ;
}
.off-canvas .thetop-nav .right ul ul {
  display: flex;
  flex-direction: row;
}
.off-canvas .thetop-nav .right ul ul li a {
  padding: 0.5em;
  border: 1px solid var(--border-color);
  line-height: 16px ;
  margin: 0 0.5em 0.5em 0;
}

/*02.SLIDER*/
.customer-logos {
  display: flex; /* afficher les éléments en utilisant la disposition flex */
  flex-wrap: nowrap; /* empêcher les éléments de passer à la ligne */
  justify-content: center; /* centrer horizontalement les éléments */
  align-items: center; /* centrer verticalement les éléments */

}



.slider .item {
  
  position: relative;
  height: 463px;
  width:auto;
 

  

}


 .swiper-wrapper {
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
} 

.slider .text-content {
  
  position: relative;
  height:var(--percent100) ;
  justify-content: flex-end;
  padding: 0 0 10% 10%;
  z-index: 1;
  
}
.slider h4 {
  font-size: var(--font-small);
  font-weight: var(--fw7);
  width: fit-content;
  padding: 4px 10px;
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 4px;
  
}

.text-content :where(h2,h3) span:first-child {
  font-weight: var(--fw3);
  color: var(--light-text-color);
}
.text-content :where(h2,h3) span:last-child {
  color: var(--secondary-dark-color);
  text-transform: uppercase;
  letter-spacing:-1px;

}

 
/*BRANDS*/
.brands .wrapper {
  display: flex;
  justify-content: space-around; /* Espacement égal autour des éléments */
  align-items: center; /* Centrage vertical des éléments */
  margin-bottom: 1em;
  margin-top: 1em; 

}

.item {
  text-align: center;
}

.item:not(:last-child) {
  margin-right: 5px; /* Espacement entre les éléments (sauf le dernier) */
}

.item img {
  width: 50px; /* Réduction de la largeur de l'image */
  height: 50px; /* Réduction de la hauteur de l'image */
  margin-bottom: 5px; /* Espacement sous l'image */
}

.item .title {
  font-size: 12px; /* Réduction de la taille de la police */
  margin: 0; /* Suppression de la marge par défaut */
}

/*4. product Block Style/*/
.sectop {
  justify-content:center;
  padding-bottom: 0.5em;
  margin-bottom: 2em;
  border-bottom: 1px solid var(--border-color);
}


/*margin footer pied*/
.products:where(.big, .main, .one) .content {
  gap: 1em;
  margin-top: 1.25em;
}
/*margin footer pied*/

.products h3 {
  font-family: 'FedraArabicDisplay', sans-serif;
  font-size: 1em;
  overflow:hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp:2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.products h3 a:hover {
  text-decoration: underline;
}
.products .price .current {
  font-size:calc(1em+ 1vw);
  color: var(--primary-color);
  margin-right: 0.25em;
}
.products .price .normal {
  color: var(--light-text-color);
  text-decoration: line-through;
}
.products .stock .qty {
  display: flex;
  justify-content: space-between;
}
.products .stock .bar {
  height: 3px;
  margin-top: 1em;
  background-color: var(--border-color);
  overflow: hidden;
}
.products .stock .available {
height: 3px;
width: 21%;
background-color: var(--secondary-color);
}

.products .item {
  display: flex;
  position: relative;
}
.products .stock-danger {
  color: var(--primary-color);
}
.flexwrap .row {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 2em;
}
/*Banner*/
 .banners .item {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
 }
 .banner .image {
  text-align: right;
 }
 .banner .get-gray {
  background-color: var(--border-color);
 }
 .banner :where(.text-content, .over-link) {
  position: absolute;
  top: 0;
  left:0;
  width: var(--percent100);
  height: var(--percent100);
 }
 .banner .text-content {
  padding: 1.5em 2.5em;
 }
 .banner h3 {
  font-size: calc(1em+ 0.5vw);
  font-weight: var(--fw3);
 }
 .banner h3 span {
  font-size: 80%;

 }
 .banner .primary-button {
  z-index: 3;
 }
 .banners .product-categories .item {

  display: flex;
  padding: 0em;
 }
 .banners .product-categories .image {

  max-width: 150px;
 }
 .mini-links ul {
  font-size: var(--font-small);
  counter-reset: var(--light-text-color);
  margin-top: 1em;
  text-align: center;
  

 }
 .mini-links {
  text-align: center;
  align-items: center;
 }
 .second-links {
  margin-top: -4em;
 }

 .mini-links li a:hover {
  text-decoration:underline;
  
 }
 /*FOOTER*/


/*5.FOOTER
b.widgets*/
.widgets {
  padding: 3.5em 2.5em;
  background-color: var(--light-bg-color); 
}
/*5.FOOTER
c.info*/
.footer-info {
  padding: 3.5em 0 5em;
}
.footer-info .wrapper .flexcol {
  align-items: center;
  gap: 0;
}
.footer-info ul li a {
  font-size: 1.25em;
  display:flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-bg-color);
  border-radius: var(--percent50);
  margin: 0.25em;
  transition: var(--trans-background);
  margin-inline: 20px;
}
.footer-info ul li a:hover {
  background-color: var(--border-color);
}
.footer-info .logo a {
  margin: 0 0 1em -0.75em;
}
.footer-info .mini-text {
  margin-top: 2em;
  text-align: center;
}
/*bottom menu*/
.menu-bottom {
  position:fixed;
  left:0;
  right:0;
  bottom: 0;
  height: 60px;
  background-color: var(--white-color);
  box-shadow: 0 -2px 10px rgb(0 0 0 /10%);
  z-index: 900;
}
.menu-bottom nav li {
  flex: 1;
}
.menu-bottom nav li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5em 0;
  color: var(--light-text-color);
  transition: var(--trans-color);
}
.menu-bottom nav li a:hover {
  color: var(--dark-color);
}
.menu-bottom nav li a span {
  font-size: var(--font-smaller);
}

.menu-bottom nav li a i {
  font-size: 1.25em;

}
.menu-bottom .fly-item {
  right: 50%;
  width: 16px;
  border-radius: var(--percent50);
  margin-right: -20px;
  background-color: red;
}
/*Bottom menu Search mini*/
.search-bottom {
  position: fixed;
  bottom: 60px;
  width: var(--percent100);
  padding: 2.5em 0;
  background-color: var(--secondary-dark-color);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  will-change: visibility, opacity;
}
.showsearch .search-bottom {
  visibility: inherit;
  opacity: 1;
}
.search-bottom .t-close {
  position: absolute;
  top: -54px;
  right: 0;
}
.search-bottom .t-close:hover {
  background-color: var(--primary-color);
}
.mini-search.show {
  visibility: visible;
  opacity: 1;
  position: fixed;
  top: 0;
  bottom: 0;
  max-width: 400px;
  width: 90%;
}
/*7.overlay*/
.overlay {
position: fixed;
width: var(--percent100);
height: var(--percent100);
top: 0;
left:0;
z-index: 999;
background-color: rgba(0, 0, 0, 0.7);
visibility: hidden;
opacity: 0;
will-change: visibility, opacity;
}
.showmenu .overlay {
  opacity: 1;
  visibility: inherit;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
 
}

  
.banner {
  position: relative;
  top: 0;
  left: 0;
  background-color: transparent;
 overflow: visible; /* ou simplement enlever overflow: hidden */
    position: relative; /* si nécessaire pour le positionnement */
  z-index: 9999;
}

.brand {
  width: 200px;
  height: 200px;
  background-size: cover;
  margin: 0 auto;
  text-align: center;
}

  
  .object-cover img {
    
    pointer-events: none;
    position:absolute;
   
    width: auto;
    height: auto;
    justify-content:center;
    align-items: center;
    
    
  
  
  } 

  .column {
  
    justify-content: center;
      margin-left:auto;
      margin-right: auto;
  }
 
 
  .products.main .item {
    flex: 0 0 50%;
  }

/* CSS */
.button-76 {
  margin-bottom: 5em;
  margin-left: auto;
  margin-right: auto;
  background-color: #cf245f;
  background-image: linear-gradient(to bottom right, #fcd34d, #ef4444, #ec4899);
  border: 0;
  border-radius: 0em 20em;

  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: 'FedraArabicDisplay', sans-serif; font-size: 1.125rem; /* 18px */
  font-weight: 400;
  line-height: 0.75rem; /* 28px */
  padding: 1rem 1.25rem;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-76:hover {
  box-shadow: none;
}
/* } */
@media (min-width: 1024px) {
  .sectop1 {
    font-size: 18px;
    height: 30px;
}

.sectop1 h2 {
    font-size: 20px;
}


  .search-box { 
    position: relative;
    margin-top: 9.7em;
    margin-left: -18.5em;
    margin-right: -5.7em;
    
    
  }
  .life {
    position: relative;
    margin-top: 1em;
    margin-right: -70.7em;
    margin-left: 71.2em;
    margin-bottom: 4em;
  }
   
  .button-76 {
    font-size: 1.5rem; /* 24px */
    padding: 1rem 1.5rem;
    line-height: 2rem; /* 32px */
  }
}
  

.primary-button, .secondary-button, .light-button{
  font-size: var(--font-small);
  padding: 0.9em 2em;
  height: auto; 
  width: fit-content;
  border-radius: 2em;
  transition: var(--trans-background-color);
  }
  .primary-button{
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  .primary-button:hover{
    background-color: var(--dark-color);
  }
  .secondary-button{ 
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
    
  }
  .secondary-button:hover{
    background-color:  var(--secondary-dark-color);
    color: #f1c40e;
  }
  .light-button{
    background-color: var(--light-bg-color) ;
  }
  
  .light-button:hover{
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
  
  
  }
  .view-all{
    font-size: var(--font-small);
    display: flex;
    gap:1em;
    transition: var(--trans-color);
  }

  

  @media screen and (min-width: 1200px) {
      

    .sectop1 {
      font-size: 20px;
      height: 34px;
  }

  .sectop1 h2 {
      font-size: 22px;
  }
  
    .brands .wrapper {
      position: relative;
      justify-content: space-around;
      flex-wrap: wrap;
      padding: 2em 25em 1em 25em ;
    
    
    }

    .search-box { 
      position: relative;
      margin-top: 0.7em;
      margin-left: 20.5em;
      margin-right: 0em;
      
      
    }
    /*position wishlist cart hamza*/
   .life {
    position: relative;
    margin-top: 0em;
    margin-right: -66.7em;
    margin-left: 67.2em;
    margin-bottom: 4em;
  } 
   
  ul.prod-slider li a {
    top: 0;
    left: 0;
    width: 100%;
    height:560px; /* Ajustez cette valeur à votre guise */
    display: block;
    z-index: 99999999;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
  }
  }


 



@media screen and (min-width:639px) {


  .sectop1 {
    font-size: 14px;
    height: 26px;
}

.sectop1 h2 {
    font-size: 16px;
}
/* slider hamza slider size */
.slider > div > .wrapper {
  width: calc(200% - (650px + -3em));
 height:100%;
  margin-top:0.1em;
 
  /*hamza*/
  margin-top:1em;
  margin-left:-14em;
}

.slider > div > .wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


}




@media screen and (min-width: 768px) {

  .products .price .current {
    font-size: 1.25em;
  }
  .products.mini, 
  .banner .row, 
  .widgets .row,
  .checkout .item  {
    flex: 0 0 20%;
  }
  .products.main .item {
    flex: 0 0 33.3333%;
  }


}




 @media screen and (min-width:992px) {
  .sectop1 {
    font-size: 18px;
    height: 30px;
}

.sectop1 h2 {
    font-size: 20px;
}
  .contain {
    padding: 0 2em;
  
  }



.desktop-hide {
  display: none;
}
.mobile-hide {
  display: block;
}
.logo a {
  margin-right: 2em;
}
.header-nav {
  padding: 0;
  margin: 0;
  border-bottom: 0;
}
.header-nav .right li > a {
  margin-left: 1em;
}

/*mega menu  women hamza*/
.mega {
  position: absolute;
  width: var(--percent100);
  height: auto;
  top: auto;
  left:0;
  right: 0;
  padding: 1.75em;
  line-height: 2em;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0.1%, rgba(225, 225, 225, 0) 400%);
  box-shadow: rgb( 0 0 0/ 20%) 0 30px 20px -30px;
  z-index: 100;
  display:none;
 

}
nav li.has-child:hover .mega {
  display: block;

}

nav .mega .wrapper{
  display: flex;


}
nav .mega h4 {
font-size: 0.8em;
text-transform: uppercase;

}
nav .mega ul {
font-size: var(--font-small);
}
nav .mega .women-brands {
display: flex;
flex-wrap: wrap;
max-width: 180px;
}
nav .mega .women-brands li {
  min-width: 80px; 
}
nav .mega .view-all {
  margin-top: 1em;
}
nav .mega .products {
flex: 2;
padding: 0;
align-items: center;
position: relative;
}
nav .mega .products .row {
  width: var(--percent100);
}
nav .mega .products .media {
  height: 400px;

}
nav .mega .products .text-content {
line-height: initial;
display: flex;
flex-direction: column;
align-items: center;
gap: 0em;
margin-top: 0.5em;
position: absolute;
bottom: 4em;
width: var(--percent100);

}
nav .mega .products .text-content h4 {
  
  font-size: 2em;
  font-weight: var(--fw8);
  text-align: center;
  color: var(--secondary-dark-color) ;
  
}

  .header-main .right {
    max-width: 600px;
    margin-left: auto;
    
  }
  

/*Departments menu*/
.dpt-menu {
  position: absolute;
  top: var(--percent100);
  width: 300px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-top:  1px solid var(--border-color);
  border-bottom:  1px solid var(--border-color);
}
.dpt-menu > ul > li > a {
  font-weight: var(--fw5);
  padding: 0 1.5em;
  border-bottom: 1px solid var(--border-color);
}
.dpt-menu .has-child > ul, .dpt-menu .mega {

  position: absolute;
  top: 0;
  left: var(--percent100);
  width: var(--percent100);
  height: auto;
  min-height: var(--percent100);
  padding: 1.5em;
  font-size: var(--font-small);
  line-height: 2.5em;
  border: 1px solid var(--border-color);
  border-top: 0;
  display: none;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;

}
/*Showing First Sub menu (beauty) "hamza test slide bar mobile version"*/
dpt-menu .has-child:nth-child(1)> ul {
  display: block;
}

.dpt-menu .has-child > :where(ul, .mega)::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 1%, rgba(225, 225, 225, 0) 500%);
  box-shadow: rgb( 0 0 0/ 20%) 0 30px 20px -30px;
}
.dpt-menu .mega {
  width: auto;
  min-width: var(--percent100);
  
}
.dpt-menu .has-child:hover .mega {
  display: flex;
}
/* footer */
.newsletter .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
/* Page single block menu categorie sur la page d'aceuille code: 102 */
#page:not(.page-home) .dpt-head {
  display: none;
}
#page.showdpt .dpt-head {
display:block;
}


 
/* Page single block menu categorie sur la page d'aceuille code: 103 */

#page:not(.page-home) .banners {
  display: none;
}
#page.showdpt .banners {
display:block;
}








  .mega .flexcol{
  flex:1;
  min-width: 180px;
  padding-right:2.5em;
  margin-bottom: 1.5em; 
  z-index:1 ;
}

 



}


/* index */


.product-image{
    width: 200px;
    height: 200px;
    border-radius: 15px 15px 15px 15px;
    align-items: center;
    justify-content: center;
   
}

.product-container{
    margin-right: 7px;
    margin-bottom: 7px;
    border-radius: 15px;
    border: 1px solid transparent;
    width: 200px;
    height: 300px;
     box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

h1{
    display: inline;
    margin: 0;
    font-size:12px;
    font-weight: 400;
    color: #222;
    line-height: normal;
    word-break: break-all;
}
.sales-rating{
    color: #191919;
    margin-top: 4px;
}
.current-price{
    margin-right: 8px;
    font-weight: 600;
}
.current-price, .old-price{
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: inline-block;
}
.pname{
    vertical-align: middle;
}
div{
    display: block;
}
.shipping{
    margin-top: 4px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;

}
.product-container{
    background-color: white;
}
.prod-hyperlink, .prod-hyperlink:hover, .prod-hyperlink:focus, .prod-hyperlink:active{
    text-decoration: none;
    color: inherit;
}

.price{
  display: inline-block;
  margin-top: 10px;
} 

 @media screen and (max-width:600px) {

  
  .sectop1 {
    font-size: 12px;
    height: 22px;
}

.sectop1 h2 {
    font-size: 14px;
}

  /* Bouton transparent GPT bouton*/
.slider > div > .wrapper {
  width: 100%;
  height: 100%;
  margin-top: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider > div > .wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

  ul.prod-slider li a {
    top: 0;
    left: 0;
    width: 100%;
    height:420px; /* Ajustez cette valeur à votre guise */
    display: block;
    z-index: 99999999;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
  }
.transparent-btn {
  background-color: transparent;
  border: none;
  border-radius: 5px;
  color: #fff; /* blanc par défaut pour les téléphones */
  font-weight: bold; /* Texte en gras */
  text-decoration: none;
  margin-right: 10px;
  cursor: pointer;
}

/* Bouton rouge */
.red-btn {
  background-color: #f00;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold; /* Texte en gras */
  text-decoration: none;
  margin-right: 10px;
  cursor: pointer;
}

/* Style au survol et au clic du bouton rouge */
.red-btn:hover,
.red-btn:focus {
  background-color: #d00;
  color: #fff; /* Ajout de la couleur de texte au survol */
}

/* Style au clic du bouton rouge */
.red-btn:active {
  background-color: #d00;
}

/* Style au clic du bouton rouge sur les téléphones */

  .red-btn:active {
    background-color: #d00;
    color: #fff; /* Ajout de la couleur de texte au clic */
  }

  /* Style au clic du bouton transparent sur les téléphones */
  .transparent-btn:active {
    color: #f00; /* Ajout de la couleur de texte au clic */
  }


  .parent-class {
    display: flex;
    flex-wrap: wrap;
  }
  
  .prod-pager-thumb {
    width: 85px;
    height: 85px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
    margin-right: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
    .product-container{
        margin-right: 5.5px;
        margin-bottom: 5.5px;
        border-radius: 10.5px;
        border: 1px solid transparent;
        width:150px;
        height:285px;
         box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    }
    .product-image{
        display: block;
        margin-left: auto;
        margin-right: auto;
    width: 170px;
    height: 170px;
    border-radius: 15px 15px 15px 15px;
    
   
}

h1{
    display: inline;
    margin: 0;
    font-size:12px;
    font-weight: 400;
    color: #222;
    line-height: normal;
    word-break: break-all;
}
.sales-rating{
    color: #191919;
    margin-top: 4px;
}
.current-price{
    margin-right: auto;
    font-weight:auto;
}
.current-price, .old-price{
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: inline-block;
}
.pname{
    vertical-align: middle;
}
div{
    display: block;
}

.prod-hyperlink, .prod-hyperlink:hover, .prod-hyperlink:focus, .prod-hyperlink:active{
    text-decoration: none;
    color: inherit;
}


/* contrer le code container basic pour l'annuler */

  


} 

@media screen and (min-width: 380px) and (max-width:450px) {
  /* contrer le code container basic pour l'annuler */
   
.new-price {
  font-size: 13px;}
  .old-price {
    font-size: 9px;}
    .current-price .old-price {
  
      flex: 0 0 100%; /* Occuper toute la largeur pour l'ancien prix */
    }

  .sectop1 {
    font-size: 10px;
    height: 18px;
}

.sectop1 h2 {
    font-size: 12px;
}

  .slider > div > .wrapper {
    width: 100%;
    height: 100%;
    margin-top: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slider > div > .wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  ul.prod-slider li {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
    
    position: relative;
  }
  .parent-class {
    display: flex;
    flex-wrap: wrap;
  }
  
  .prod-pager-thumb {
    width: 80px;
    height: 75px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  ul.prod-slider li a {
    top: 0;
    left: 0;
    width: 100%;
    height:300px; /* Ajustez cette valeur à votre guise */
    display: block;
    z-index: 99999999;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
  }
  /* MOST DEVICE ICI 4XX HAMZA */
  .product-container {

  width: 110px;
  height: 175px;
  border-radius: 6px;
  }
  
  .product-image {
  width:100px;
  height: 100px;
  border-radius: 8px;
  }
  h1 {
  font-size: 8px;
  }
  .sales-rating {
  font-size: 8px;
  margin-top: 1px;
  }
  .current-price {
  font-size: 7px;
  margin-right: 1px;
  }
  }
  @media screen and (min-width: 321px) and (max-width: 380px) {
/* contrer le code container basic pour l'annuler */
  
 
.new-price {
  font-size: 9px;}
  .old-price {
    font-size: 7px;}
    .current-price .old-price {
  
      flex: 0 0 100%; /* Occuper toute la largeur pour l'ancien prix */
    }

  .sectop1 {
    font-size: 9px; /* Entre 8px et 10px */
    height: 16px; /* Entre 14px et 18px */
  }

  .sectop1 h2 {
    font-size: 11px; /* Entre 10px et 12px */
  }


  .slider > div > .wrapper {
    width: 100%;
    height: 100%;
    margin-top: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slider > div > .wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  ul.prod-slider li {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
    position: relative;
  }

  .parent-class {
    display: flex;
    flex-wrap: wrap;
  }

  .prod-pager-thumb {
    width: 77.5px; /* Entre 75px et 80px */
    height: 75px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
    margin-right: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  ul.prod-slider li a {
    top: 0;
    left: 0;
    width: 100%;
    height: 260px; /* Ajustez cette valeur à votre guise */
    display: block;
    z-index: 99999999;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
  }

  .product-container {
    margin-right: 8px;
    margin-bottom: 8px;
    width: 90px;
    height: 180px;
    border-radius: 6px;
  }

  .product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
  }

  h1 {
    font-size: 8px;
  }

  .sales-rating {
    font-size: 8px;
    margin-top: 1px;
  }

  .current-price {
    font-size: 7px;
    margin-right: 1px;
  }
}

@media screen and (min-width:250px) and (max-width:320px) {

     
.new-price {
  font-size: 5px;}
  .old-price {
    font-size: 3px;}
    .current-price .old-price {
  
      flex: 0 0 100%; /* Occuper toute la largeur pour l'ancien prix */
    }

    .sectop1 {
      font-size: 8px;
      height: 14px;
  }

  .sectop1 h2 {
      font-size: 10px;
  }


    .slider > div > .wrapper {
      width: 100%;
      height: 100%;
      margin-top: 0.1em;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .slider > div > .wrapper img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    
    ul.prod-slider li {
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      -webkit-background-size: cover;
      background-size: cover;
      background-position: top center;
      
      position: relative;
    }
    .parent-class {
      display: flex;
      flex-wrap: wrap;
    }
    
    .prod-pager-thumb {
      width: 75px;
      height: 75px;
      background-repeat: no-repeat;
      -webkit-background-size: cover;
      background-size: cover;
      background-position: top center;
      margin-right: 10px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    
    ul.prod-slider li a {
      top: 0;
      left: 0;
      width: 100%;
      height:220px; /* Ajustez cette valeur à votre guise */
      display: block;
      z-index: 99999999;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      position: relative;
      transition: transform 0.3s ease-in-out;
    }
    .product-container {
    margin-right: 8px;
    margin-bottom: 8px;
    width: 100px;
    height:170px;
    border-radius: 6px;
    }
    .product-image {
    width:100px;
    height: 100px;
    border-radius: 8px;
    }
    h1 {
    font-size: 8px;
    }
    .sales-rating {
    font-size: 8px;
    margin-top: 1px;
    }
    .current-price {
    font-size: 7px;
    margin-right: 1px;
    }
    }

  /* Related product slider botom */
  



.product .product-carousel {
  position: relative;
}

.product .owl-controls {
  position: absolute;
  top: -60px;
  right: 0;
}

.product .owl-controls .owl-prev,
.product .owl-controls .owl-next {
  background: #353535;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 13px;
  padding-right: 13px;
}

.product .owl-controls .owl-prev i,
.product .owl-controls .owl-next i {
  font-size: 14px;
}

.product .owl-controls .owl-prev:hover,
.product .owl-controls .owl-next:hover {
  background: #0d1452;
}

.product .item {
  border: 2px solid #e5e5e5;
}

.product .text {
  background: #f2f3f3;
  padding: 14px;
  overflow: hidden;
}

.product .text del {
  color: #9d9d9d;
}

.product .text h3 {
  font-weight: 700;
  text-align: center;
  color: #353535;
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}

.product .text h3 a {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.product .text h3 a:hover {
  text-decoration: none;
}

.product .text h4 {
  color: #0d1452;
  text-align: center;
  font-size: 18px;
}

.product .text p {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.product .text p a {
  /* background: #0d1452; */
  background: #e7a340;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}
.product .out-of-stock {
  width: 100%;
  text-align: center;
}

.product .out-of-stock .inner {
  display: inline-block;
  background: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
  text-decoration: line-through;
}


.product .text p a:hover {
  background: #333;
}

.product .item .thumb {
  position: relative;
  overflow: hidden;
}

.product .item .thumb .photo {
  width: 100%;
  height: 350px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: white;
}

.slider-container {
  display: flex;
  justify-content: center;
}


