:root{
    --crimson:rgb(220, 20, 60);
}

body{
    margin: 0;
    /* background-color: rgb(237, 244, 247); */
    font-family: "Outfit", sans-serif;
    background-color: white;

}

#prenav{
    background-color: var(--crimson);
    color: white;
    padding: 5px 10px;
    display: flex;
    justify-content: right;
}
.counter{
    display: inline;
}
nav {
    display: flex;
    background-color: white;
    justify-content: left;
    align-items: center;
    width: 80%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 13px 10%;
}
nav #logo h2{
    color: crimson;
    margin: 0;
}
nav #logo small{
    margin: 0;
    font-size: 10px;
    display: block;
}
nav #logo{
    display: flex;
    margin-right: 20px;
    align-items: center;
}
nav  img{
    width: 140px;
    height: auto;
    margin-right: 10px;
}

nav a{
    color: rgb(34, 34, 34);
    text-decoration: none;
    margin-left: 10px;
}
nav a:hover{
    color: crimson;
}

#bars{
    width: 35px;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

#bars div{
    padding: 2px;
    border-radius: 5px;
    background-color: black;
    margin: 4px;
}
#ulinks{
    background-color: white;
    width: 100%;
    position: fixed;
    top: 100px;
    left: 0px;
    z-index: 9;
    display: none;
    border-bottom: 2px solid black;
}
#ulinks a{
    text-decoration: none;
    color: black;
    display: block;
    padding: 10px;
}
#ulinks a:hover{
    color: crimson;
}

/* Conteneur plein écran */
.slider-fullscreen {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Images responsive */
.slider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Flèches à l’extérieur du slider */
.slick-previ,
.slick-nexto {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(61, 61, 61, 0.641); /* crimson transparent */
    color: #fff;
    border: none;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    padding: 5px;
    /* transition: background 0.3s ease; */
}

.slick-previ:hover,
.slick-nexto:hover {
    background-color: rgba(200, 7, 45, 0.782);
}

/* Position extrême gauche/droite */
.slick-previ {
    left: 10px;  /* à l’extérieur, légèrement sur l’écran */
}

.slick-nexto {
    right: 10px;
}

/* Dots centrés */
.slick-dots {
    bottom: 20px;
}

.slider img {
    width: 100%;       /* prend toute la largeur du conteneur */
    height: 600px;     /* hauteur fixe */
    object-fit: cover; /* recadre l’image pour remplir sans déformer */
}




#record{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    /* background: linear-gradient(80deg, rgb(35, 35, 35), rgb(26, 26, 26)); */
    background: radial-gradient(circle, #474747 0%, #000000 100%);

}

#record div{
    width: 260px;
    /* min-width: 200px; */
    padding: 30px 10px;
    text-align: center;
    /* border: 1px solid lightgray; */
}

#record div i {
    color: white;
    font-size: 30px;
}
#record div h3{
    font-size: 36px;
    color: crimson;
    margin: 10px 0px;
}
#record div p{
    color: white;
}


#categories {
    display: flex;
    padding-top: 80px;

    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;

    margin-top: -140px;
    
}

.cat{
    width: 220px;
    box-shadow: 1px 1px 5px rgb(199, 199, 199);
    border-radius: 5px;
    margin: 10px;
    background-color: white;
}
.cat h3{
    position: absolute;
    bottom: 0px;
    color: white;
    padding: 10px;
    background-color: rgba(89, 89, 89, 0.577);
    width: 100%;
    font-style: italic;
}
.cat img{
    width: 100%;
    transition: 0.4s;
    height: auto;
}
.cat img:hover{
    transform: scale(1.5);
    transition: 0.5s;
}
.cat a{
    display: block;
    background-color: crimson;
    color: white;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    transition: 0.2s;
    text-decoration: none;
    text-align: center;
}
.cat a:hover{
    background-color: rgb(182, 7, 42);
    cursor: pointer;
    transition: 0.2s;
}
#categories .container-img{
    width: 100% ;
    height: 260px;
    overflow: hidden;
    position: relative;
}


.cat .desc{
    padding: 10px;
    
}

.cat p{
    color: gray;
    font-size: 14px;
    margin: 0 0px 10px;
}

.title{
    padding: 30px 10px 80px;
    background-color: crimson;
    color: white;
    text-align: center;
}

.container{
    max-width: 1200px;
    margin: auto;
}

/* #une{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    background-color: white;
    flex-wrap: wrap;
    padding-bottom: 100px;
}
#une section{
    position: relative;
} */
/* #une section .prom{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 120px;
    transform: rotate(-10deg);
}
#une section .main-img{
    width: 350px;
    height: auto;
    border-radius: 5px;
} */




#une > div{
    margin-left: 10px;
    max-width: 600px;
}

#une .others img{
    width: 160px;
    box-shadow: 2px 2px 5px lightgray;
    
} 

/* Conteneur principal */
#une{
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap; /* permet de passer en colonne sur petits écrans */
  padding: 16px;
  justify-content: center;
  box-sizing: border-box;
  padding: 100px 10px;
    background-color: white;
}

/* Slider promo : on le met en position relative pour positionner les boutons dessus */
.slider-promo{
  position: relative;
  width: 60%;           /* ajuste selon ton layout */
  max-width: 700px;
  min-width: 280px;
  box-sizing: border-box;
}
.promo-img{
    position: absolute;
    top: 0px;
    transform: rotate(-10deg) !important;
    left: 10px;
    width: 200px;
    z-index: 8;
}
/* La "fenêtre" du slick (container des slides) */
.slider-p{
  /* slick insérera son markup, laisse la largeur au parent */
}

/* Chaque slide centré */
.slider-p .slick-slide{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Images du slider : qu'elles s'adaptent bien */
.slider-p img{
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Boutons prev / next (placés au-dessus de l'image, verticalement centrés) */
.prev-promo,
.next-promo{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Position gauche / droite */
.prev-promo{ left: 8px; }
.next-promo{ right: 8px; }

/* Icones plus grandes */
.prev-promo i, .next-promo i{ font-size: 16px; }

/* Partie descriptive à côté du slider */
#une > div:not(.slider-promo){
  width: calc(40% - 24px);
  min-width: 240px;
  box-sizing: border-box;
}

/* Responsive : sur smartphones on empile et affiche 1 slide centré */
@media (max-width: 768px){
  #une{
    flex-direction: column;
    gap: 12px;
  }
  .slider-promo{
    width: 100%;
    max-width: none;
  }
  #une > div:not(.slider-promo){
    width: 100%;
  }
}























#une .notes i{
    color: gray;
}
.golden {
        color: rgb(255, 221, 0) !important;

}

footer img{
    width: 160px;
}
footer div{
    max-width: 300px;
    width: 260px;
}
footer{
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: rgb(14, 14, 14);
}
#ufooter{
    background-color: black;
    text-align: center;
    color: gray;
    padding: 20px 0px;
}
footer a{
    text-decoration: none;
    display: block;
    margin: 10px 0px;
    color: white;
}
footer h3{
    color: white;
}

.price{
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.barre{
    text-decoration: line-through;
    color: gray;
}
.in{
    color: black;
    font-weight: bold;
    margin-left: 20px;
}

.best-seller{
    padding: 100px 10px;
    background-color: white;
    /* max-width: 1200px; */
    margin: auto;
}
.best-seller section {
    /* display: flex;
    align-items: flex-start;
    justify-content: space-between; */
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    position: relative;
    margin-top: 50px;

}
/* .best-seller .slick-slide {
    display: flex !important;
    justify-content: center;
} */

.best-seller section .best{
    width: 240px;
    padding: 10px;
    border: 1px solid lightgray;
    margin:0px 10px;
    border-radius: 5px;

    /* box-shadow: 2px 2px 5px lightgray; */
}


.best-seller .best .container-img{
    height: 260px;
    overflow: hidden;
}
.best-seller .best img{
    width: 240px;
    height: auto;
}

.best a{
    display: block;
    border: 1px solid crimson;
    color: crimson;
    text-align: center;
    transition: 0.2s;
    padding: 10px 0px;
}

.best a:hover{
    background-color: crimson;
    transition: 0.2s;
    color: white;
}

.best-seller .custom-arrow {
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: 0.3s ease;
    pointer-events: auto; /* Important */
}

.best-seller  .custom-arrow i {
    font-size: 20px;
    color: #333;
}

.best-seller  .slick-prev {
    left: 0px;   /* Ajuste selon ton design */
}

.best-seller  .slick-next {
    right: 0px;
}

.best-seller  .custom-arrow:hover {
    background: #333;
}

.best-seller  .custom-arrow:hover i {
    color: #fff;
}


.radial{
    margin-top: 60px;
    padding: 10px;
    /* background: radial-gradient(circle, rgb(252, 89, 122) 0%, crimson 100%); */
    background-image: linear-gradient(rgba(54, 54, 54, 0.558), rgba(38, 38, 38, 0.475)), url("../imgs/img1.jpg") ;
    background-position: center;
    /* backdrop-filter: blur(10px); */
    background-size: cover;
    z-index: 2;
    color: white;
}


.radial h1{
    max-width: 1200px;
    margin: 30px auto;
}
.radial p{
    max-width: 1200px;
    margin: 20px auto 50px;
}

#search-text-form{
    max-width: 1200px ;
    margin: -20px auto 30px;
    z-index: 5;
    position: relative;
    padding: 5px;
}
#search-text-form input{
    
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding-left: 50px;
    font-size: 18px;
}
#notfound{
    text-align: center;
}
#notfound p{
    color: gray;
    font-size: 30px;
}
#search-text-form button{
    border: none;
    background-color: transparent;
    position: absolute;
    left: 5px;
    top: 15px;
}

#search-text-form i{
    
    background-color: #000000;
    color: white;
    padding: 5px;
    border-radius: 50px;
}


#reviews {
    background-color: rgb(244, 244, 244);
    padding: 80px 10px 100px;
}
#reviews section{
    max-width: 1200px;
    /* margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start; */

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 20px;

    margin: auto;
}
.review:nth-child(1){
    grid-column: span 2;
}

.review:nth-child(5) {
    grid-column: span 2;
}


.review{
    /* display: inline-block; */
    /* max-width: 240px ; */
    min-width: 220px;
    margin: 20px 10px;
    background-color: white;
    padding: 10px;
   
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgb(233, 233, 233);
    transition: 0.2s;
    border-top: 6px solid crimson;
}
.review:hover{
    /* margin-top: -10px !important; */
    transition: 0.2s;
    box-shadow: 3px 3px 10px lightgray;
    transform: translateY(-20px);
    transition: 0.4s ease;
}

.review-info img{
    width: 50px;
    background-color: white;
    border-radius: 50px;
    margin-top: -40px;
}

.review-info .note i{
    font-size: 12px;
}
.review-info h4{
    margin: 5px 0px;
    padding: 0px;
}
.review-info small{
    color: gray;
    font-style: italic;
    margin: 5px 0px;
    display: block;
}

.review-text{
    color: rgb(65, 65, 65);
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    margin-top: 20px;
}
.right-text{
    font-size: 12px;
    text-align: right;
    color: gray;
}








.why {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.why h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #222;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.why-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.why-item i {
    font-size: 40px;
    color: crimson; /* TU PEUX METTRE LA COULEUR ICI */
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.why-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}



/* Reset (si besoin) */
.blog-section { 
    font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial; 
    background-color: rgb(244, 244, 244);
    color: #222;
}

/* Container */
.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header */
.blog-section h2 {
  font-size: 2rem;
  margin: 0 0 8px;
  color: #222;
}
.blog-section .lead {
  margin: 0 0 28px;
  color: #555;
  font-size: 0.98rem;
}

/* Grid: 3 cols desktop, 2 tablet, 1 mobile */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(17,17,17,0.06);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
  margin: 10px 0px;
}

/* Hover */
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17,17,17,0.10);
}

/* Thumb */
.blog-card .thumb {
  display: block;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f3f3f3;
}
.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-card:hover .thumb img { transform: scale(1.06); }

/* Body */
.card-body {
  padding: 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* Meta */
.meta {
  display: block;
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 8px;
}

/* Title */
.card-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}
.card-title a {
  color: #111;
  text-decoration: none;
}
.card-title a:hover { color: crimson; }

/* Excerpt */
.excerpt {
  color: #555;
  font-size: 0.95rem;
  margin: 0 0 14px;
  flex: 1 0 auto;
}

/* Footer */
.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Read more */
.read-more {
  font-weight: 600;
  text-decoration: none;
  color: crimson;           /* accent color */
  font-size: 0.95rem;
}
.read-more:hover { text-decoration: underline; }

/* More button */
.blog-more {
  text-align: center;
  margin-top: 28px;
}
.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  background: white;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(17,17,17,0.04);
}
.btn-secondary:hover { transform: translateY(-3px); }

/* Responsive breakpoints */
@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card .thumb { height: 170px; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card .thumb { height: 220px; }
  .blog-section .container { padding: 24px 14px; }
  .blog-section h2 { font-size: 1.5rem; }
}

.container-blog{
    max-width: 1200px;
    padding: 10px;
    background-color: white;
    margin: -80px auto 40px;
    border-radius: 10px;
}

.detail-imgs{
    margin: 20px 0px;
}
.detail-imgs img{
    width: 200px;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 5px lightgray;
    margin: 10px 10px;
    display: inline-block;
}


.load-more{
    padding: 10px;
    box-shadow: 2px 2px 10px lightgray;
    background-color: white;
    color: black;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
    width: fit-content;
    cursor: pointer;
    font-weight: bold;
}

.detail-blog-banner{
    background-position: center;
    height: 300px;
    border-radius: 10px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.detail-blog-banner h2{
    color: white;
    margin: 0;
}

.blog-date{
    display: flex;
    justify-content: right;
    color: gray;
    font-size: 14px;
    padding: 20px 0px;
}

.blog-content{
    padding: 20px 10px;
}


.logo-slider {
  overflow: hidden;
  /* background: #fff; */
  padding: 20px 0;
  white-space: nowrap;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.logo-slider .slide-track {
  display: flex;
  width: calc(200px * 10); /* 10 images, 200px chacune */
  animation: scroll 28s linear infinite;
}


#whatsappicon{
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 50;
}
#whatsappicon a{
    text-decoration: none;
    color: inherit;
}
#whatsappicon i{
    font-size: 60px;
    border-radius: 50px;
    color: rgb(0, 204, 0);
    /* color: white; */
}

#about-template{
    /* max-width: 1200px; */
    background-color: crimson;
    margin-top: 50px;
    color: white;
    padding: 40px 20px 80px;
}
#about-template h2{
    max-width: 1200px;
    margin: 20px auto;
}
#about-section{
    max-width: 1200px;
    margin: -50px auto 20px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}
.back-light{
    background-color: rgb(242, 242, 242);
    padding-bottom: 50px;
}



.logo-slider .slide {
  height: 150px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider img {
  max-height: 150px;
  width: auto;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: 0.3s;
}

.logo-slider img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.split{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.split #search-bycat{
    width: 280px;
    margin-right: 10px;
    /* padding: 10px; */
    background-color: rgb(244, 244, 244);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 8px lightgray;
}
.split #search-bycat div{
    padding: 10px;
}
.split #products_zone{
    width: 100%;
    /* width: ; */
    /* background-color: lightgray; */
    
}
.split #products_zone section{
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-wrap: wrap;
}
.split #search-bycat div{
    padding: 10px;
    color: rgb(42, 0, 8);
    transition: 0.2s;
    font-weight: bold;
    /* text-decoration: underline; */
}
#category{
    display: none;
}
.split #search-bycat div:hover{
    cursor: pointer;
    color: crimson;
    transition: 0.2s;
}
.selected-cat{
    color: white !important;
    background-color: crimson;
}
.selected-cat::before{
    content:">";
    margin-right:5px
}

/* #search-bycat {
    padding: 10px;
    margin: 20px 0px;
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
} */

#category{
    width: 48%;
    margin: 5px 3px;
    font-size: 18px;
    display: inline-block;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 12px;
    display: none;
}
.result-search{
    color: gray;
    font-size: 18px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 5px 15px;
}
.lt-anim{
    position: absolute;
    right: 10px;
    top:15px;
    display: none;
}
/* product-item */
#products_zone{
    padding: 20px 5px 50px;
    margin: 5px;
}
.product-item{
    display: inline-block;
    width: 220px;
    border: 1px solid lightgray;
    box-shadow: 3px 3px 10px lightgray;
    border-radius: 5px;
    margin: 0px 5px 10px;

}
.product-item .img-container{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.product-item .desc{
    padding: 10px;
}
.product-item .desc p{
    color: gray;
    font-size: 14px;
}
.product-item h4{
    margin: 5px 0px;
    color: crimson;

}
.product-item img{
    transition: 0.5s;
    width: 100%;
}
.product-item img:hover {
    transform: scale(1.5);
    transition: 0.5s;
}
.price{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.old-price{
    color: gray;
    text-decoration:line-through ;
}
.new-prod{
    padding: 5px;
    background-color: rgb(255, 106, 0);
    border-radius: 3px;
    color: white;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
}
.price .current-price{
    padding: 5px 8px;
    background-color: rgb(221, 247, 201);
    color: rgb(0, 69, 0);
    font-size: 18px;
    border: 1px solid rgb(0, 68, 0);
    border-radius: 5px;
}

.product-item a{
    display: block;
    text-align: center;
    padding: 12px 0px;
    margin-top: 10px;
    color: crimson;
    border: 1px solid crimson;
    border-radius: 5px;
    box-sizing: 2px 2px 8px rgb(113, 0, 23);
}
.product-item a:hover{
    transition: 0.3s;
    color: white;
    background-color: crimson;
}
.detailzone{
    background-color: white;
    padding: 20px 10px;
    margin-top: 50px;
    border-radius: 10px;
    position: relative;

}
.detailzone h3{
    font-size: 40px;
}
.detailzone .flex{
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
    flex-wrap: wrap;
}
.detailzone .main_img{
    max-width:450px ;
    margin-right: 20px;
}
.detailzone .main_img img{
    width: 100%;
}
.detailzone .detail_img {
    max-width: 600px;
    
}
.detailzone .new, .detailzone .promotion{
    background-color: orangered;
    padding: 5px 8px;
    border-radius: 7px;
    border: 1px solid orangered;
    color: white;
   
}
.detailzone .promotion{
    background-color: transparent;
    border: 1px solid black;
    color: black;
    margin-left: 20px;
}
.detailzone .detail_img img{
    display: inline-block;
    width: 160px;
    box-shadow: 5px 5px 15px lightgray;
    margin: 10px;
    border-radius: 10px;
    
}

.detailzone form{
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 10px;
    margin-top: -80px;
    background-color: white;
    
}
.detailzone .champ {
    width: 100%;
    margin: 15px 5px;
    
}
.detailzone .md{
    width: 48% !important;
    display: inline-block !important;
}
.detailzone .champ input{
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    font-size: 20px;
    border: 1px solid lightgray;
    border-radius: 5px;
    box-shadow: 2px 2px 10px lightgray;
    /* border-top: none;
    border-left: none;
    border-right: none; */
}
.detailzone label{
    display: block;
    margin-bottom: 15px ;
}
.detailzone textarea{
    width: 100%;
    padding: 12px;
    border: 1px solid lightgray;
    box-sizing: border-box;
    margin-top: 10px;
    box-shadow: 2px 2px 10px lightgray;
    border-radius: 5px;
    height: 250px;
}
.detailzone form button{
    background-color: crimson;
    color: white;
    width: 100%;
    display: block;
    padding: 12px 0px;
    text-align: center;
    margin: 10px 0px;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 5px 5px 10px lightgray;
    font-size: 20px;
}

.detailzone form button:hover{
    cursor: pointer;
    background-color: rgb(169, 7, 39);
    transition: 0.3s;
}

.detailzone input:focus, .detailzone textarea:focus{
    outline:1px solid rgba(239, 28, 70, 0.925);
}

.success{
    margin: 10px 0px;
    padding: 15px 0px;
    text-align: center;
    font-size: 20px;
    background-color: rgb(191, 249, 191);
    color: rgb(0, 84, 0);
    box-shadow: 2px 2px 8px rgb(0, 72, 0);
    border-radius: 10px;
    display: none;
}

.detailzone h4 small{
    color: green;
    font-size: 26px;
    background-color: rgb(205, 240, 203);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 4px 10px 10px rgb(0, 79, 0);
}
.enstock{
    background-color: rgb(210, 235, 244);
    color: rgb(14, 129, 205);
    padding: 5px 8px;
    border-radius: 5px;
    margin-left: 10px;
}
.outstock{
    background-color: rgb(244, 231, 210);
    color: rgb(165, 68, 3);
    padding: 5px 8px;
    margin-left: 10px;
    border-radius: 5px;
}
.detailzone h4{
    margin-bottom: 50px;
}
.detailzone h4 span{
    color: gray;
    font-size: 26px;
    margin-right: 20px;
    text-decoration: line-through;
}
.backh1{
    padding: 20px 10px 40px;
    background-color: crimson;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 120px;
    /* margin-bottom: 600px; */
}
.backh1 h1{
    font-size: 36px;

}