@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.cdnfonts.com/css/lora");
@import url("https://fonts.cdnfonts.com/css/playfair-display");


* {
  margin: 0;
  padding: 0;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

/* html {
    scroll-behavior: auto !important;
  }
   */

body.no-scroll {
  overflow: hidden;
}
.translate_direction {
  direction: rtl;
  text-align: right;
}
.head {
  padding: 0 9%;
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: -80px;
  z-index: 2;
  background-color: var(--background-Header);
  box-shadow: 0 10px 20px -10px rgba(171, 171, 171, 0.5);
  transition: all 0.6s ease-in-out;
}

.head.scrolled-down {
  top: 0;
  transition: top 0.6s ease-in-out;
}

/************** head sidebar***************/
.head {
  display: flex;
  align-items: center;
}

#checkbtn-links {
  display: none;
}

.logos {
  width: 15%;
  height: 60px;
  z-index: 1;
}

.logo img {
  max-width: 150px;
  max-height: 55px;
  margin-top: 5px;
  object-fit: contain;
}

#logo {
  color: #a76d50;
  text-transform: capitalize;
  /* font-size: 25px; */
}

#checkbtn2 {
  display: block;
  left: -100%;
  transition: all 0.8s ease-in-out;
}

#checkbtn3 {
  display: block;
  right: -100%;
  transition: all 0.8s ease-in-out;
}

.hamburger {
  display: none;
  padding-left: 0;
  cursor: pointer;
  color: var(--color-Header);
}

.sidebar {
  height: 100%;
}

.empty {
  position: fixed;
  right: 0;
  top: -35px;
  width: 100%;
  height: 130vh;
  background: gray;
  background-color: gray;
  z-index: 10;
  display: none;
  transition: width 0.8s ease-in-out;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.empty7 {
  position: fixed;
  right: 0;
  top: -35px;
  width: 100%;
  height: 130vh;
  background: gray;
  background-color: gray;
  z-index: 10;
  display: none;
  transition: width 0.8s ease-in-out;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.sidebar ul {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 290px;
  background-color: white;
  /* padding: 0 25px 0 25px; */
  transition: all 0.6s ease-in-out;
  z-index: 11;
}

.search_side {
  position: relative;
}

.search_side {
  width: 100%;
  height: 70px;
}

.search_side input {
  width: 100%;
  height: 70px;
  outline: none;
  font-size: 14px;
  border: 1px solid rgb(212, 210, 210);
  padding-left: 20px;
  padding-right: 50px;
}

.search_side button {
  position: absolute;
  top: 39%;
  right: 5%;
  font-size: 20px;
  color: rgb(136, 136, 136);
  font-weight: 400;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.menu {
  padding: 18px 15px;
  background-color: rgba(0, 0, 0, 0.05);
}

.menu span {
  color: #333333;
  font-size: 13px;
  line-height: 15.6px;
  font-weight: 900;
  font-family: "lato", Arial, Helvetica, sans-serif;
}

.sub_sidebar a {
  display: block;
  padding: 20px 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  color: #333333;
  line-height: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
  font-family: "lato", Arial, Helvetica, sans-serif;
}

.user_sidebar {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  column-gap: 5px;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
  padding: 20px 15px;
}

.user_sidebar a {
  border: none;
  padding: 0 !important;
}

.user_sidebar .sign-in:hover {
  color: #222222;
}

.quitter {
  position: fixed;
  top: 10px;
  left: 0;
  padding: 10px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  z-index: 100;
}

.sidebar ul ol {
  margin: 20px 0;
  width: 88%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social_sidebar {
  display: flex;
  column-gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.social_sidebar iconify-icon {
  color: rgb(85, 85, 85);
  font-weight: 400;
  font-size: 20px;
  cursor: pointer;
}

.social_sidebar .tiktok:hover {
  color: rgb(0, 0, 0);
}

.social_sidebar .instagram:hover {
  color: rgb(236, 105, 127);
}

.social_sidebar .facebook:hover {
  color: rgb(59, 89, 152);
}

.social_sidebar .twitter:hover {
  color: rgb(0, 172, 237);
}

.social_sidebar .youtube:hover {
  color: rgb(196, 48, 43);
}

/*
.sidebar ul li a{
    color: black;
    display: flex;
    align-items: center;
}
.sidebar ul li a iconify-icon{
    font-size:15px;
    margin-right: 8px;
}
.search_side svg{
    position: absolute;
    right: 20%;
}*/
#checkbtn-links:checked ~ .sidebar ul {
  left: 0;
  transition: all 0.8s ease-in-out;
  position: fixed;
}

#checkbtn-links:checked ~ .sidebar .empty {
  display: block;
  transition: all 0.8s ease-in-out;
}

#checkbtn-links:checked ~ label .quitter {
  left: 300px;
  transition: all 0.8s ease-in-out;
  position: fixed;
}

.navbar {
  display: flex;
  justify-content: space-between;
}

.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.navbar ul li {
  cursor: pointer;
  margin: 0 10px 0 10px;
}

.navbar ul li a {
  background-image: linear-gradient(
    to right,
    var(--colorhoverbutton-Header) 50%,
    var(--color-Header) 50%
  );
  font-size: 13px;
  margin: 0px 4px;
  padding: 7px 0px;
  line-height: 20px;
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.navbar ul li a:before {
  content: "";
  background: var(--colorhoverbutton-Header);
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.navbar ul li a:hover {
  background-position: 0;
}

.navbar ul li a:hover::before {
  width: 100%;
}

/* .navbar ul li a {
    color: var(--color-Header);
    font-family: 'lato', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0px 4px;
    padding: 7px 0px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: rgb(85, 85, 85);
    position: relative;
}


.navbar ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-Header);
    position: absolute;
    left: 0;
    transition: width .3s;
}

.navbar ul li a:hover::after {
    width: 100%;
    transition: width .3s;
} */
.link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
}

.link label iconify-icon {
  font-size: 20px;
}

.search iconify-icon {
  font-size: 22px;
  /* color: #000; */
  color: var(--color-Header);
  cursor: pointer;
}

.search svg {
  cursor: pointer;
}

#search_btn {
  display: none;
}

#checkbtn4 {
  z-index: 10;
}

.search iconify-icon {
  font-size: 22px;
  cursor: pointer;
}

.search svg {
  cursor: pointer;
}

#search_btn {
  display: none;
}

#checkbtn4 {
  z-index: 10;
}

.search_pannel {
  bottom: -100%;
  left: 0;
  width: 100%;
  /* height: 90%; */
  height: calc(100% - 60px);
  /* Subtract header height */
  background-color: white;
  z-index: 1;
  position: fixed;
  transition: all 0.4s ease-in-out;
  overflow-y: auto;
  opacity: 0;
}

.search_pannel input {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-bottom: 1px solid rgba(176, 172, 172, 0.5);
  border-top: 1px solid rgba(176, 172, 172, 0.5);
  height: 16%;
  width: 100%;
  outline: none;
  font-size: 48px;
  line-height: 76.8px;
  font-weight: 600;
  color: rgb(24, 23, 23);
  padding-left: 12px;
  text-align: center;
}

.search_pannel label {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #777777;
  font-size: 16px;
  line-height: 30px;
}

.search_pannel iconify-icon {
  position: absolute;
  top: 38%;
  right: 25%;
  cursor: pointer;
  font-size: 26px;
  opacity: 0;
}

html.sr body div.head div div.link div.search div.search_pannel form button {
  opacity: 1;
}

.close {
  position: absolute;
  font-size: 30px !important;
  top: -100px;
  right: 50px;
  cursor: pointer;
  color: #222222 !important;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

#search_btn:checked ~ .search_pannel {
  bottom: 0;
  opacity: 1;
  transition: all 0.4s ease-in-out;
  overflow-y: auto;
}

#search_btn:checked ~ label .close {
  opacity: 1;
  top: 80px;
  transition: all 0.4s ease-in-out;
  position: absolute;
  right: 50px;
}

body.no-scroll {
  overflow: hidden;
}

.logos {
  display: flex;
  width: 35%;
  justify-content: space-between;
  align-items: center;
}

.shopping {
  position: relative;
  border-left: 1px solid #222222;
}

.logos li {
  padding: 0 10px;
  border: none !important;
}

.logos svg {
  font-size: 1.2rem;
  cursor: pointer;
  fill: var(--color-Header);
  font-weight: 400;
}
/* lang style */
.lang-menu {
  text-align: right;
  font-weight: bold;
  position: relative;
}
#language {
  color: var(--color-Header);
}
.lang-menu .selected-lang {
  display: flex;
  justify-content: left;
  line-height: 2;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.lang-menu ul {
  position: absolute;
  top: -11px;
  left: 70px;
  transform: translate3d(-50%, 40px, 0) !important;
  width: 140px;
  background: #fff;
  padding: 10px;
  z-index: 151;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}

.lang-menu ul li {
  list-style: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.lang-menu ul li a {
  text-decoration: none;
  width: 125px;
  display: block;
  color: #777;
  font-weight: 500;
  cursor: pointer;
}

.lang-menu ul li:hover {
  background-color: #f2f2f2;
}

.lang-menu:hover ul {
  display: block;
}
/* .logos:nth-child(1){
    border-right: 0.1px solid gray;
}
.shopping{
    border-left: 0.1px solid gray;
} */
.wish_number {
  display: flex;
  align-items: center;
}

.wish_number .number,
.wish_number .number-wishlist {
  font-size: 13px;
  color: #fff;
  background-color: #a76d50e6;
  border-radius: 50%;
  padding: 0px 5px;
}

/******shop sidebar***/
#check-shopp {
  display: none;
}

.sidebar2 {
  height: 100%;
}

.sidebar2 ul {
  display: block;
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 370px;
  background-color: white;
  transition: all 0.8s ease-in-out;
  z-index: 11;
}

.quitter2 {
  position: fixed;
  top: 10px;
  right: -150px;
  padding: 10px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  z-index: 100;
  transition: all 0.6s ease-in-out;
}

.sidebar2 ul li,
.sidebar2 ul ol {
  margin: 50px 0 0 30px;
  width: 88%;
  height: 40px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
  align-items: center;
}

.sidebar2 ul li a {
  color: black;
  display: flex;
  align-items: center;
}

.sidebar2 ul li a iconify-icon {
  font-size: 15px;
  margin-right: 8px;
}

.empty2 {
  position: fixed;
  right: 0;
  top: -35px;
  width: 100%;
  height: 130vh;

  z-index: 10;
  display: none;
  transition: width 0.8s ease-in-out;
  background-color: rgba(0, 0, 0, 0.2);
}

.empty3 {
  position: fixed;
  right: 0;
  top: -35px;
  width: 100%;
  height: 130vh;
  background: gray;
  background-color: gray;
  z-index: 10;
  display: none;
  transition: width 0.8s ease-in-out;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

#check-shopp:checked ~ .sidebar2 ul {
  right: 0;
  transition: all 0.8s ease-in-out;
  position: fixed;
}

#check-shopp:checked ~ .empty3 {
  display: block;
}

#check-shopp:checked ~ label .quitter2 {
  right: 380px;
  transition: all 0.8s ease-in-out;
  position: fixed;
}

/* #check-shopp:checked~ div span{
    display: none;
} */
.user-info {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.user-info h2 {
  font-family: "Times New Roman", Times, serif;
  color: rgb(141, 3, 3);
  margin-left: 10px;
  font-size: 18px;
  font-weight: 300;
}

.scroll-product {
  max-height: 250px !important;
  overflow-y: auto;
}

.user-info h2 {
  font-weight: 400px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: black;
  margin-left: 10px;
  font-size: 18px;
}

.submenu a:hover {
  background-color: #f3f1f1;
}

.sub-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  margin-top: 10px;
  column-gap: 20px;
  text-decoration: none;
  border-bottom: 1px solid rgb(230, 230, 230);
  position: relative;
}

/* .delete {
  position: absolute;
  top: 45%;
  right: 10px;
} */

.sub-links .description h2 a {
  font-weight: 400;
  font-size: 15px;
  color: black;
  text-transform: capitalize;
  text-decoration: none;
}

.sub-links .description h4 {
  margin-bottom: 10px;
}

.sub-links .description h4 a {
  font-weight: 350;
  font-size: 14px;
  color: #333333;
  text-transform: capitalize;
  text-decoration: none;
  background: transparent;
  word-wrap: break-word;
  font-family: "Lora", Arial, Helvetica, sans-serif;
}

.sub-links .description span {
  font-weight: 300;
  font-size: 12px;
  color: #333;
  text-transform: capitalize;
  display: flex;
}

.sub-links img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

#check-shopp:checked ~ .shopp-list {
  display: block;
  transition: all 0.3s;
}

.user-info iconify-icon {
  padding: 8px;
  color: rgb(92, 101, 92);
  font-size: 1.5rem;
}

.description {
  display: block;
}

.description h3 {
  margin-top: -45px;
  padding: 0;
  font-size: 17px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: black;
}

.description span {
  font-size: 16px;
  font-weight: 500;
  color: rgb(175, 95, 95);
}

.shopping .sub-links iconify-icon {
  padding: 8px;
  color: rgb(92, 101, 92);
  font-size: 10px;
  margin-top: -60px;
  transition: 0.3s;
}

.prix_total_label {
  padding: 13px 12px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #222222;
}

.prix_total_number {
  padding: 13px 12px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #222222;
}

.prix_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
  padding: 30px 11px 12px;
}

.prix_label span {
  font-size: 16px !important;
}

.prix_label h5 {
  font-size: 16px !important;
  color: rgb(136, 136, 136) !important;
}

.submenu_prix a:hover span {
  background-color: #a76d50 !important;
  color: white !important;
}

/* .prix_label h5{
    margin: 0px 0px 20.02px;
    font-size: 16px;
    font-weight: 400;
    color: rgb(34, 34, 34);
    text-align: center;
} */
.btn {
  margin-top: 20px;
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  margin-right: auto;
  margin-left: auto;
  /* padding: 0 20px; */
}

.prix_label a {
  display: flex;
  justify-content: center;
  margin: auto;
}

.prix_label a span {
  padding: 10.5px 30.8px;
  font-size: 12px !important;
  text-transform: uppercase;
  background-color: #bebebe;
  color: rgb(34, 34, 34);
}

.prix_label a span:hover {
  color: white;
  background-color: #a76d50;
}

.btn a {
  text-align: center;
  font-size: 14px;
  padding: 15px 0 15px 0;
  cursor: pointer;
  background-color: rgb(242, 242, 242);
  color: #222222;
  transition: 0.4s;
  outline: none;
  border: 0.1px solid rgb(255, 255, 255);
  font-weight: 400;
  text-transform: uppercase;
  width: 100%;
}
.extend_button {
  margin: 20px 0;
  width: 95%;
  display: none;
  margin-right: auto;
  margin-left: auto;
  /* padding: 0 20px; */
}
.extend_button span {
  text-align: center;
  font-size: 14px;
  padding: 15px 0 15px 0;
  cursor: pointer;
  background-color: rgb(242, 242, 242);
  color: #222222;
  transition: 0.4s;
  outline: none;
  border: 0.1px solid rgb(255, 255, 255);
  font-weight: 400;
  text-transform: uppercase;
  width: 100%;
}
/* .btn a:nth-child(2) {
    background-color: #7f6051 !important;
    color: #fff !important;
} */
.btn a:nth-child(2) {
  background-color: #7f6051 !important; /* Replace 'your-desired-color' with the color you want */
  color: #fff !important;
}
/* Apply hover effect to the second <a> tag */
.btn a:nth-of-type(2):hover {
  background-color: #6b4f41 !important; /* Change the text color to red on hover */
}

/******** user sidebar******/
#check-user {
  display: none;
}

.sidebar3 {
  height: 100%;
  position: relative;
}

.login_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar3 ul {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 16%;
  top: -100%;
  width: 330px;
  background-color: white;
  padding: 60px 0;
  transition: all 0.8s ease-in-out;
  z-index: 11;
}
.sidebar3 ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quitter3 {
  position: fixed;
  top: -100%;
  right: 17%;
  padding: 10px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transition: top 0.8s ease-in-out, opacity 0.8s ease-in-out; /* Define the transitions */
}
#flDebug .flDebugPanelContentParent {
  overflow: scroll;
}
#check-user:checked ~ .sidebar3 ul {
  top: 60px;
  opacity: 1;
  visibility: visible;
}

#check-user:checked ~ label .quitter3 {
  position: fixed;
  top: 65px;
  opacity: 1;
}

#check-user:checked ~ .empty2 {
  display: block;
}

.sidebar3 ul button {
  width: 70%;
}

.sidebar3 ul .signin a {
  color: #444;
  padding: 15px;
  width: 100%;
}

.sidebar3 ul .signin,
.sidebar3 ul .signup {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  width: 80%;
  background-color: white;
  transition: all 0.2s ease;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #606060;
  text-shadow: 0 1px #fff;
  /* padding: 15px; */
  margin-top: 10px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
}

.signin,
.sidebar3 ul .signup {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  width: 80%;
  background-color: white;
  border: 1px solid rgba(93, 93, 93, 0.3);
  transition: all 0.2s ease;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #606060;
  text-shadow: 0 1px #fff;
  /* padding: 15px; */
  margin-top: 10px;
  text-transform: uppercase;
}

.sidebar3 ul .signup a {
  color: #444;
  padding: 15px;
  width: 100%;
}

.sidebar3 ul .signup iconify-icon {
  margin-right: 10px;
}

/**********slick next prev settings *****/

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 40px !important;
  line-height: 0 !important;
  color: #222222 !important;
  opacity: 0.75;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-osx-font-smoothing: grayscale;
}

.slick-prev:before {
  content: "‹" !important;
}

[dir="rtl"] .slick-prev:before {
  content: "›" !important;
  padding: 10px !important;
}

[dir="rtl"] .slick-next {
  top: 70px !important;
  padding: 10px !important;
}

.slick-next:before {
  content: "›" !important;
}

[dir="rtl"] .slick-next:before {
  content: "‹" !important;
}

/**********sub navbar **********/
.sub_nav {
  background-color: #fafafa;
  font-size: 14px;
  color: black;
  display: block;
  line-height: 25px;
  overflow: hidden;
  margin: 0 0 70px 0;
  min-height: 200px;
  position: relative;
  background-color: rgb(248, 248, 248);
}

.sub_nav > div {
  max-width: 1440px;
  padding: 15px 9%;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
}
.right_sub {
  display: flex;
  column-gap: 10px;
}
.sub_nav .right_sub span {
  color: rgb(253, 253, 253);
  font-weight: 600;
}

.sub_nav .right_sub a span {
  color: #fff;
  font-size: 40px;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}

.sub_nav .right_sub a:hover {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

/*right side sub_nav**/
.left_sub {
  margin-bottom: 20px;
  padding: 0 5%;
}
.left_sub ul {
  display: flex;
  column-gap: 10px;
}

.left_sub a {
  color: #555555;
  font-size: 13px;
  opacity: 0.8;
  margin: 0px 6px 0px 0px;
  transition: all 0.2s ease-in-out;
}

.left_sub a:hover {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.left_sub > li {
  display: inline-block;
}

/* .sub_nav .left_sub > li + li:before {
    padding: 0 5px;
    color: rgb(165, 165, 165);
    content: ">" !important;
} */
.left_sub > li::after {
  padding: 0 5px;
  color: #777777;
  content: "/" !important;
  font-weight: 600;
}

.left_sub > li:last-child::after {
  content: "" !important;
}

.left_sub span {
  font-family: "lato", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.left_sub_details .left_sub {
  padding: 0;
}

/*********all products************/
.all_products_container {
  display: flex;
  /* padding: 2rem 2% !important; */
  max-width: 1440px;
  margin: auto;
}

.filtrage {
  width: 25%;
  padding: 0 15px;
}

.sof {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 30px;
}

.sof2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 30px;
}

.filter_check {
  display: none;
}

.quitter4 {
  display: none;
}

#checkbtn6 {
  display: none;
}

.wishli_icons {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 10px;
}

.wishli_icons i {
  font-size: 20px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 33px;
  float: left;
  color: #a76d50;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.discount {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination {
  display: flex;
  margin-bottom: 50px;
}

.top_border_pagination {
  width: 100%;
  margin: 30px;
}

.pagination a {
  color: rgb(167, 164, 164);
  padding: 8px 16px;
  text-decoration: none;
  column-gap: 12px;
  margin-inline: 10px;
  border-radius: 15px;
  border: 1px solid white;
}

.poinPag {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 36px;
  color: #a76d50;
  font-size: 20px;
  font-weight: 700;
}

.pagination a:hover,
.pagination a:focus {
  background-color: #a76d50;
  color: white;
}

/******categorie filtrage*****/
.categorie {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(216, 215, 215);
  padding: 15px 0;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.categorie h4 {
  font-size: 16px !important;
  color: rgb(34, 34, 34);
  font-weight: 400 !important;
  text-transform: uppercase !important;
}

.categorie span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(34, 34, 34);
  cursor: pointer;
  align-self: center;
  height: 25px;
  width: 25px;
  border: 1px solid rgb(184, 182, 182);
}

.categorie:hover span {
  border: 1px solid rgb(34, 34, 34);
}

.sub li {
  display: flex;
  padding-top: 7px !important;
  color: rgb(134, 134, 134);
  text-transform: capitalize !important;
  gap: 5px !important;
}

.sub li input {
  margin-right: 7px;
}

.sub li a {
  font-size: 16px !important;
  display: flex;
  flex-direction: column;
  line-height: 20px !important;
  color: rgb(134, 134, 134);
  cursor: pointer;
  font-family: "lato" sans-serif;
}

.sub li span {
  padding: 0px 0px 0px 3px;
}

.sub a:hover {
  color: #222222;
}

.sub {
  padding-top: 10px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  overflow-y: auto;
  margin-bottom: 30px;
  max-height: 200px;
}

.moin {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus {
  display: none;
}

#categorie_check {
  display: none;
}

#categorie_check:checked ~ .sub {
  overflow: hidden;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

#categorie_check:checked ~ label .plus {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

#categorie_check:checked ~ label .moin {
  display: none;
}

/*****collection filtrage*****/
.collection {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(216, 215, 215);
  padding: 15px 0;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.collection h4 {
  font-size: 16px;
  color: rgb(34, 34, 34);
  font-weight: 400;
  text-transform: uppercase;
}

.collection span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(34, 34, 34);
  cursor: pointer;
  align-self: center;
  height: 25px;
  width: 25px;
  border: 1px solid rgb(184, 182, 182);
}

.collection:hover span {
  border: 1px solid rgb(34, 34, 34);
}

.sub_collection li {
  display: flex;
  padding-top: 7px;
  color: rgb(134, 134, 134);
  text-transform: capitalize;
  gap: 5px !important;
}

.sub_collection li input {
  margin-inline: 7px;
}

.sub_collection li a {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  line-height: 20px;
  color: rgb(134, 134, 134);
  cursor: pointer;
  font-family: "lato" sans-serif;
}

.sub_collection li span {
  padding: 0px 0px 0px 3px;
}

.sub_collection a:hover {
  color: #222222;
}

.sub_collection {
  padding-top: 10px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  overflow-y: auto;
  margin-bottom: 30px;
  max-height: 190px;
}

.moin_collection {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus_collection {
  display: none;
  transition: 0.4s ease-in-out !important;
}

#collection_check {
  display: none;
}

#collection_check:checked ~ .sub_collection {
  overflow: hidden;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

#collection_check:checked ~ label .plus_collection {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

#collection_check:checked ~ label .moin_collection {
  display: none;
}

/****price filter***/
.price_filter {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(216, 215, 215);
  padding: 15px 0;
  cursor: pointer;
  -webkit-user-select: none;
}

.price_filter h4 {
  font-size: 16px;
  color: rgb(34, 34, 34);
  font-weight: 400;
  text-transform: uppercase;
}

.price_filter span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(34, 34, 34);
  cursor: pointer;
  align-self: center;
  height: 25px;
  width: 25px;
  border: 1px solid rgb(184, 182, 182);
}

.price_filter:hover span {
  border: 1px solid rgb(34, 34, 34);
}

.price_range li {
  display: flex;
  padding-top: 7px;
  color: rgb(134, 134, 134);
  text-transform: capitalize;
  margin: 10px 0;
}

.price_range li a {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  line-height: 20px;
  color: rgb(134, 134, 134);
  cursor: pointer;
  font-family: "lato" sans-serif;
}

.price_range li span {
  padding: 0px 0px 0px 3px;
}

.price_range a:hover {
  color: #222222;
}

.price_range {
  padding-top: 10px;
  width: 100%;
  height: 140px;
  transition: 0.4s ease-in-out;
  opacity: 1;
}

.moin_price {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus_price {
  display: none;
}

#price_check {
  display: none;
}

#price_check:checked ~ .price_range {
  overflow: hidden;
  transition: 0.4s ease-in-out;
  height: 0px;
  opacity: 0;
}

#price_check:checked ~ label .plus_price {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

#price_check:checked ~ label .moin_price {
  display: none;
}
.check {
  cursor: pointer;
  position: relative;
  margin-right: 7px;
  width: 18px;
  height: 18px;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}

.check:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34, 50, 84, 0.03);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.check svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #c8ccd4;
  stroke-width: 1.5;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}

.check svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}

.check svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}

.check:hover svg {
  stroke: #a76d50;
}

input[type="radio"]:checked + .check svg {
  stroke: #a76d50;
}

input[type="radio"]:checked + .check svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

input[type="radio"]:checked + .check svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}

.range_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 0;
}

.sliders_control {
  position: relative;
  min-height: 15px;
}

.form_control {
  position: relative;
  display: flex;
  color: #635a5a;
  /* justify-content: space-between; */
  flex-direction: column;
  row-gap: 10px;
}

.filter_button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter_button button {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  width: 100%;
  background-color: white;
  border: 1px solid rgba(93, 93, 93, 0.3);
  transition: all 0.2s ease;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #606060;
  text-shadow: 0 1px #fff;
  margin-top: 10px;
  text-transform: uppercase;
}

.filter_button button:hover {
  background-color: #a76d50;
}

.filter_button button a:hover {
  color: white;
}

.filter_button button .lg-btn {
  width: 100%;
  height: 100%;
  padding: 15px !important;
  display: flex;
  justify-content: center;
}

.form_control span {
  font-size: 12px;
  font-weight: 400;
  color: rgb(34, 34, 34);
}

.form_control .price_nametag {
  font-size: 14px;
  font-weight: 400;
  color: rgb(85, 85, 85);
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.form_control_container__time__input {
  color: rgb(34, 34, 34);
  border: white;
  outline: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.form_control_left {
  display: flex;
}

.form_control_container {
  flex: 1 1 100px;
  display: flex;
  align-items: center;
  column-gap: 3px;
}

input[type="range"]::-moz-range-thumb,
input[type="range"]::-webkit-slider-thumb {
  -moz-appearance: none;
  appearance: none;
  pointer-events: all;
  width: 10px;
  height: 10px;
  background-color: #a76d50;
  border-radius: 50%;
  cursor: pointer;
  border: white;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  pointer-events: all;
  width: 10px;
  height: 10px;
  background-color: #a76d50;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.form_control_container input[type="number"] {
  color: rgb(34, 34, 34);
  width: 100%;
  height: 30px;
  font-size: 15px;
  border: none;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}

.form_control_container input[type="number"]::-moz-inner-spin-button,
.form_control_container input[type="number"]::-moz-outer-spin-button {
  opacity: 1;
}

.form_control_container input[type="number"]::-webkit-inner-spin-button,
.form_control_container input[type="number"]::-webkit-outer-spin-button {
  opacity: 0;
}

input[type="range"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #c6c6c6;
  pointer-events: none;
}

.form_control_container input[type="range"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

#fromSlider {
  height: 0;
  z-index: 1;
}

.form_control div a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgb(34, 34, 34);
}

/* .form_control a:hover {
    color: #a76d50;
} */

.all_products {
  width: 75%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  justify-content: center;
}

.small_images_all {
  width: 16rem;
  height: 29rem;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
}

.small_images_all .out_of_stock {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 70% !important;
  height: 0 !important;
  transform: translate(-50%, -50%);
  font-size: 13px;
}
.out_of_stock {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 70% !important;
  height: 0 !important;
  transform: translate(-50%, -50%);
  font-size: 13px;
}

.small_images_all .slick-dots {
  display: none !important;
}

.small_images_all img:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.small_images_all .product_carousel .slick-prev {
  position: absolute;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.6s ease;
}

.small_images_all .product_carousel .slick-next {
  position: absolute;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.6s ease;
}

.small_images_all:hover .product_carousel .slick-next {
  right: 7px;
  transition: all 0.6s ease;
  opacity: 1;
}

.small_images_all:hover .product_carousel .slick-prev {
  left: 7px;
  transition: all 0.6s ease;
  opacity: 1;
}

.small_images_all .product_carousel {
  height: 70%;
  margin-bottom: 10px !important;
}

.small_images_all .product_carousel img {
  width: 100%;
  height: 21rem !important;
  /* height: 100%; */
  object-fit: cover;
}

.small_images_all .content_2 {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px !important;
  text-align: center;
}

.small_images_all .content_2 h2 {
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
}

.small_images_all .content_2 h4 {
  font-weight: 300;
  font-size: 14px;
  color: rgb(167, 164, 164);
  /* margin-top: 10px;
    margin-bottom: 10px; */
  text-transform: capitalize;
}

.small_images_all .content_2 span {
  font-weight: 300;
  font-size: 14px;
  color: rgb(167, 164, 164);
  text-transform: capitalize;
}

.all_products .small_images_all .add {
  background-color: #222222;
  color: white;
  font-size: 14px;
  position: absolute;
  bottom: 28%;
  opacity: 0;
  width: 70%;
  right: 15%;
  text-align: center;
}

.all_products .small_images_all:hover .add {
  opacity: 1;
  bottom: 30%;
  transition: 0.3s ease-in-out;
}

.all_products .small_images_all .fav {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 10px;
  cursor: pointer;
  opacity: 0;
  color: rgb(92, 101, 92);
  transition: 0.3s ease-in-out;
}

.all_products .small_images_all:hover .fav {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.buttonn {
  position: relative;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  /* border-radius: 50px; */
  background-color: #222222;
  color: white;
  /* border: solid 4px hsl(50deg 100% 50%); */
  border: none;
  font-family: inherit;
  width: 100%;
  /* padding: 5px auto; */
  height: 35px;
}

.default-btn,
.hover-btn {
  /* background-color: hsl(255deg 50% 40%); */
  display: -moz-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* padding: 15px 20px; */
  /* border-radius: 50px; */
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hover-btn {
  position: absolute;
  inset: 0;
  background-color: #222222;
  transform: translate(0%, 100%);
}

.default-btn span {
  color: hsl(0, 0%, 100%);
}

.hover-btn span {
  color: white;
}

.buttonn:hover .default-btn {
  transform: translate(0%, -100%);
}

.buttonn:hover .hover-btn {
  transform: translate(0%, 0%);
}

.btnn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 24px;
  width: 24px;
  border: none;
  background-color: transparent;
  position: relative;
}

.btnn:after {
  content: "Jaime";
  width: fit-content;
  height: fit-content;
  position: absolute;
  font-size: 15px;
  color: #a76d50;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
  top: 115%;
}

.icon {
  font-size: 24px;
  transition: 0.2s linear;
  /* cursor: pointer; */
}

.icon path {
  fill: black;
  transition: 0.2s linear;
}

.btnn:hover > .icon {
  transform: scale(1.2);
}

.btnn:hover > .icon path {
  fill: #a76d50;
  stroke-width: 0;
}

.btnn:hover::after {
  visibility: visible;
  opacity: 1;
  top: 105%;
}
#progress {
  position: fixed;
  bottom: 50px;
  right: 50px;
  height: 50px;
  width: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  box-shadow: -0px 0px 20px rgba(255, 255, 255, 0.7),
    0px 0px 20px rgba(255, 255, 255, 0.5),
    0px 0px 5px rgba(255, 255, 255, 0.075), 6px 6px 30px rgba(0, 0, 0, 0.15);
}

#progress-value {
  display: block;
  height: 46px;
  width: 46px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  z-index: 9;
}

/*********section carousel*************/
.home2 {
  display: flex;
  align-items: center;
  width: auto;
  overflow-x: hidden;
}
.layer {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home2 img {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  object-fit: cover;
}

.home2 .slick-dots li:nth-child(n + 4) {
  display: none;
  /* Hide dots from 4th onwards */
}

.slideshow {
  position: relative;
  z-index: 1;
  height: 100%;
}

.slideshow * {
  outline: none;
}

.slideshow .home2 {
  box-shadow: 0 20px 50px -25px black;
}

.slideshow .slider-track {
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.slideshow .item {
  height: 100%;
  position: relative;
  z-index: 1;
}

.slideshow .item img {
  width: 100%;
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.slideshow .item.slick-active img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: cssAnimation 8s 1 ease-in-out forwards;
  animation: cssAnimation 8s 1 ease-in-out forwards;
}

@keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px);
  }

  to {
    -webkit-transform: scale(1.3) translate(0px);
  }
}

@-webkit-keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px);
  }

  to {
    -webkit-transform: scale(1.3) translate(0px);
  }
}

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* Text Animation End **/

.slick-dots {
  position: absolute;
  bottom: 5% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  font-size: 22px !important;
  width: 90px;
  height: 34px;
  overflow: hidden;
}

.slick-dots li.slick-active button::before {
  font-size: 12px;
  background-color: white !important;
  color: white !important;
}

.slick-dots li button::before {
  font-size: 9px;
  /* border: 1px solid rgb(223, 223, 223) !important; */
  border-radius: 50% !important;
}

.home2 .slick-next:before,
.home2 .slick-prev:before {
  color: white !important;
}

.home2 .slick-prev {
  left: 0 !important;
  border-radius: 50%;
  z-index: 1;
  background-color: rgba(179, 175, 175, 0.5) !important;
  height: 50px;
  width: 50px;
  text-align: center;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.home2 .slick-next {
  right: 0 !important;
  border-radius: 50%;
  z-index: 1;
  background-color: rgba(179, 175, 175, 0.5) !important;
  height: 50px;
  width: 50px;
  text-align: center;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.home2:hover .slick-next,
.home2:hover .slick-prev {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.home2 .slick-next:hover,
.home2 .slick-prev:hover {
  background-color: rgb(255, 255, 255) !important;
}

.home2 .slick-next:hover:before,
.home2 .slick-prev:hover:before {
  color: #a76d50 !important;
}

/****paragraphe 1****/
.paragraph {
  box-sizing: border-box;
  top: 40%;
  left: 8%;
  right: 0;
  width: 90%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  -moz-user-select: none;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: left;
  line-height: 70px;
}

.images1 {
  position: relative;
}

.home2 .paragraph h3 {
  font-size: clamp(20px, 4vw, var(--title-CollectionSize));
  color: var(--title-CollectionColor);
  font-family: Poppins, "sans-serif";
  /* margin-bottom: 20px; */
  font-weight: 600;
}

.home2 .paragraph p {
  /* font-size: clamp(var(--text-CollectionSize), 4vw, 25px); */
  /* font-size: var(--text-CollectionSize); */
  font-size: clamp(20px, 4vw, var(--text-CollectionSize));
  color: var(--text-CollectionColor);
  /* margin-bottom: 20px; */
  -moz-line-clamp: 3;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 700px;
  font-weight: 500px;
}

.button {
  color: var(--button-CollectionColor);
  margin: 14px 2px;
  cursor: pointer;
  background-color: var(--button-CollectionBackground);
  padding: 12px 10px;
  font-size: var(--SizeTextButton);
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.button:hover {
  background-color: var(--BlueSkyColor-hover);
  color: var(--ColorBottonHover);
}

/*********banner**********/
.banner_component_section {
  padding: 2rem 4%;
}

.banner_container .banner_component {
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  border: none;
}

.banner_component h2 {
  /* color: #454545; */
  color: var(--title-PromotionColor);
  font-weight: 500;
  font-size: 17px;
  margin-top: 34px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}

.paragraphe_banner {
  width: 100%;
  line-height: 45px;
  vertical-align: baseline;
  text-align: start;
  -moz-user-select: none;
  align-self: flex-start;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.banner_component .paragraphe_banner p {
  color: var(--subtitle-PromotionColor);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.85px;
  width: fit-content;
  align-self: flex-start;
  margin: auto;
}

/***********collection container******/
.collection_section {
  padding: 2rem 4%;
  background: #fff;
}

.collection_section .products-container {
  display: flex;
  justify-content: center;
  align-items: start;
  column-gap: 20px;
  row-gap: 20px;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.categorie-title {
  /* font-size: var(--title-subCategorieSize); */
  font-size: clamp(30px, 4vw, var(--title-subCategorieSize));
  font-weight: 300;
  text-transform: uppercase;
}

/* collection without border*/
.collection_section .products-container .product-1 {
  height: 20rem;
  width: 23rem;
  overflow: hidden;
  /* border: 1px solid rgba(192, 188, 188, 0.5); */
  border-radius: 0;
  position: relative;
  transition: background-color 0.3s ease-in-out;
}

.collection_section .products-container .product-1:hover {
  background-color: white;
  /* box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.12); */
  transition: background-color 0.3s ease-in-out;
}

.collection_section .products-container .product-1 div a > img {
  height: 95%;
  width: 95%;
  overflow: hidden;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  margin: auto;
}
.image-box {
  height: inherit;
  width: inherit;
}
.collection_section .products-container .product-1 .image-box a:hover img {
  transform: scale(1.1);
}
.container_category {
  width: 23rem;
}
.container_category .content {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--title-subCategorieSize);
  text-transform: uppercase;
  color: var(--title-CategorieColor);
  text-transform: uppercase;
  padding: 10px;
}

.container_category .content span {
  font-weight: 500;
  color: var(--title-subCategorieColor);
  /* color: #000; */
  font-size: var(--title-subCategorieSize);
  font-family: "Lora", sans-serif;

  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
}

.content button {
  padding: 12px 35px;
  border: 1px solid #e2e2e2;
  border-radius: 35px;
  background-color: var(--button-CategorieBackground);
  color: var(--button-CategorieColor);
  margin-top: 10px;
  cursor: pointer;
}

.content button:hover {
  background-color: var(--BlueSkyColor-hover);
  color: var(--ColorBottonHover);
  border-color: transparent;
}

/*********product_presentation********/
.product_presentation {
  padding: 2rem 4% !important;
  /* background-color: #f8f8f8; */
}

.images {
  width: 100%;
}

.product_carousel_home {
  display: flex;
  justify-content: center;
  max-width: 1440px;
  margin: auto;
}

.product_carousel_home2 {
  display: flex;
  max-width: 1440px;
  margin: auto;
  justify-content: center;
  overflow: hidden;
}

.product_carousel_home .related_small_images {
  column-gap: 30px;
  margin: 0 15px;
  /* width: 15rem; */
  height: 18rem;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
}

.product_carousel_home2 .related_small_images {
  column-gap: 30px;
  margin: 0 15px;
  width: 280px;
  height: 18rem;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
}

.related_small_images .content_2 {
  height: 30%;
}

.title_section_home_product {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.title_section_home_product h1 {
  font-weight: 300;
  font-size: clamp(25px, 4vw, var(--title-PopularSize));
  color: var(--title-CategorieColor);
  text-transform: capitalize;
  /* color: #242424; */
  font-family: "Playfair Display";
  font-size: 36px;
  line-height: 46px;
}

.title_section_home_product h5 {
  font-weight: 300;
}

.related_small_images .content_2 {
  text-align: center;
  margin-top: 30px;
  background-color: transparent;
}

.related_small_images .content_2 h2 {
  color: #454545;
  padding: 0;
  display: block;
  text-transform: capitalize;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: Poppins, sans-serif;
  text-transform: capitalize;
}

.related_small_images .content_2 h4 {
  font-weight: 300;
  font-size: 14px;
  color: rgb(167, 164, 164);
  margin-top: 0 !important;
  text-transform: capitalize;
}

.related_small_images .content_2 .price {
  margin-top: 5px;
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.product_presentation .slick-dots {
  display: none !important;
}

.product_carousel_home .related_small_images .add_product_home {
  background-color: #222222;
  color: white;
  font-size: 14px;
  position: absolute;
  bottom: 28%;
  opacity: 0;
  transition: 0.3s ease-in-out;
  width: 70%;
  right: 15%;
  text-align: center;
  padding: 10px 0;
}

.product_carousel_home .related_small_images:hover .add_product_home {
  opacity: 1;
  bottom: 34%;
  transition: 0.3s ease-in-out;
}

.product_carousel_home .related_small_images:hover {
  /* border: 1px solid; */
  border-color: #ffffff;
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.12);
}

.product_carousel_home2 .related_small_images:hover {
  /* border: 1px solid; */
  border-color: #ffffff;
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.12);
}

.product_carousel_home .related_small_images .fav {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 10px;
  cursor: pointer;
  opacity: 0;
  color: rgb(92, 101, 92);
  transition: 0.3s ease-in-out;
}

.product_carousel_home .related_small_images:hover .fav {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.product_carousel_home .slick-prev {
  left: 0;
  transition: all 0.4s ease-in-out;
  border: 1px solid #e5e5e5;
}

.product_carousel_home .slick-next {
  right: 0;
  transition: all 0.4s ease-in-out;
  border: 1px solid #e5e5e5;
}

.product_carousel_home .slick-next,
.product_carousel_home .slick-prev {
  border-radius: 50%;
  z-index: 1;
  height: 50px;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.75) !important;
  text-align: center;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.product_carousel_home:hover > .slick-next {
  right: -25px;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.product_carousel_home:hover > .slick-prev {
  left: -25px;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}
.product_carousel_home .slick-next:hover:before,
.product_carousel_home .slick-prev:hover:before {
  color: #a76d50 !important;
}
/**********banner***********/

.banner2 {
  margin-bottom: 90px !important;
}

.background_banner {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 2rem 9%;
}

.background_banner2 {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1222px;
  margin: auto;
}

.background_bannerimg {
  flex: 1 1 20rem;
  width: 50%;
}

.background_bannerimg2 {
  flex: 1 1 20rem;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.background_bannerimg img {
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background_bannerimg2 img {
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 570px;
  height: 350px;
  object-fit: cover;
}

.fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.icon img {
  height: 45px;
  width: 45px;
  object-fit: contain;
  display: flex;
  align-items: center;
}

.background_banner .paragraph_banner2 {
  width: 43%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  flex: 1 1 20rem;
  padding-top: 80px !important;
  padding-bottom: 60px !important;
}

.background_banner2 .paragraph_banner2 {
  width: 43%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  flex: 1 1 12rem;
  padding-top: 80px !important;
  padding-bottom: 60px !important;
  text-align: center;
}

.background_banner2 .paragraph_banner2 span {
  color: var(--SmallTitleColor);
  /* color: #A5A5A5; */
  font-family: "lato", Arial, Helvetica, sans-serif;
  /* font-size: 14px; */
  font-size: var(--SmallTitleSize);
  text-transform: uppercase;
  margin: 0px 0px 10px;
}
#Heading {
  font-size: var(--TitleBannerSize2);
  color: var(--TitleBannerColor2);
  /* color: #242424; */
  font-family: "Playfair Display";
  /* font-size: 36px; */
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 20px;
}

#subHeading {
  /* color: #7E7E7E; */
  color: var(--TextBannerColor2);
  /* font-size: 14px; */
  font-size: var(--TextBannerSize2);
  font-weight: 400;
  line-height: 24px;
  margin: 0px 0px 10px;
  align-self: flex-start;
  /* font-size: 16px; */
  font-family: "lato";
  line-height: 26px;
  font-weight: 400;
  /* color: #777777; */
}

.banner2 .paragraph_banner2 h3 {
  font-size: var(--title-BannerSize);
  color: var(--title-BannerColor);
  font-size: var(--title-BannerSize);
  /* color: #242424; */
  font-family: "Playfair Display";
  /* font-size: 36px; */
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 20px;
}

.banner2 .paragraph_banner2 p {
  /* color: #7E7E7E; */
  color: var(--text-BannerColor);
  /* font-size: 14px; */
  font-size: var(--text-BannerSize);
  font-weight: 400;
  line-height: 24px;
  margin: 0px 0px 10px;
  align-self: flex-start;
  /* font-size: 16px; */
  font-family: "lato";
  line-height: 26px;
  font-weight: 400;
  /* color: #777777; */
}

.box_option {
  display: flex;
  margin-top: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.boxoption {
  display: flex;
  align-items: center;
  column-gap: 20px;
  text-decoration: none;
  width: 225px;
  height: 84px;
  overflow: hidden;
}

.box_option .boxoption .linebanner {
  /* align-self: flex-end; */
  display: flex;
}

.box_option .boxoption .linebanner p {
  /* font-size: var(--title-BannerSize); */
  font-size: 16px;
  color: var(--mesure-color);
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Playfair Display";
  line-height: 20.8px;
  margin: 0px 0px 10px;
  font-weight: 400;
}

.box_option .boxoption .text .linebanner span {
  color: var(--mesure-color);
  font-size: var(--SizeTextButton);
  /* line-height: 24px; */
  font-weight: 400;
  display: flex;
  align-items: flex-end;
}

.box_option .boxoption .text span {
  /* color: #7E7E7E; */
  color: var(--submesure-color);

  /* font-size: 12px; */
  font-size: var(--SizeBody);
  line-height: 12px;
  font-weight: 400;
}

.banner2 .paragraph_banner2 .button {
  /* color: #454545; */
  color: var(--button-CollectionColor);
  /* background-color:white; */
  background-color: var(--button-CollectionBackground);
  align-self: flex-start;
  border-radius: 0;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
}

.banner2 .paragraph_banner2 .button:hover {
  background-color: var(--BlueSkyColor-hover);
  color: var(--ColorBottonHover);
  border: 1px solid var(--BlueSkyColor-hover);
}
.banner2 .paragraph_banner2 .button svg {
  fill: var(--button-CollectionColor);
}
.banner2 .paragraph_banner2 .button:hover svg {
  fill: var(--ColorBottonHover);
}

.banner2 .background_banner2 .paragraph_banner2 .button_2 {
  color: var(--button-CollectionColor);
  background-color: var(--button-CollectionBackground);
  align-self: center;
  border-radius: 0;
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  font-family: "lato", Arial, Helvetica, sans-serif;
  padding: 10px 20px;
  cursor: pointer;
}

.banner2 .background_banner2 .paragraph_banner2 .button_2:hover {
  /* background-color: #E9E9E9; */
  background-color: var(--HoverButtonBanner_1);
  /* color: #333; */
  color: var(--HoverTextButtonBanner_1);
}

/****** Product details ******/
.product_detail_presentation {
  padding: 2rem 9%;
}

.flex_box {
  display: flex;
  margin-top: 20px;
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.left {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  padding: 20px;
}

.big_image {
  width: 34rem;
  height: 600px;
  object-fit: cover;
}

.big_image div img {
  width: 100% !important;
  height: 600px !important;
  border: 1px solid rgb(206, 206, 206);
  object-fit: cover;
}

.big_image .slick-track {
  height: 100% !important;
}

html
  body
  div.flex_box
  div.left
  div.images.slider-nav.slick-initialized.slick-slider
  div.slick-list
  div.slick-track {
  margin: 0;
}

/* .draggable{
    height: 100%;
} */
img.slick-current {
  width: 34rem;
  height: 600px;
}

img.slick-current img {
  height: 600px;
}

.images {
  width: 350px !important;
  margin: 40px 0;
}

.small_images_detail {
  width: 7rem;
  height: 160px !important;
  /* margin: 0 10px; */
  padding: 0 10px;
}

.small_images_detail img {
  cursor: -moz-grab;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-fit: cover !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.images .small_images_detail .slick-dots {
  display: none !important;
}

.pname {
  font-size: 34px;
  text-transform: capitalize;
  margin: 0 0 20px;
  border: 0;
  padding: 0;
  background: none;
  color: #333333;
  line-height: 40px;
  font-family: "Lora", sans-serif;
  font-weight: 400;
}

.right {
  width: 40%;
  padding: 2rem 20px;
}

.price {
  font-size: 21px;
  font-weight: 600;
  line-height: 26px;
  font-family: "lato", Arial, Helvetica, sans-serif;
  color: #7f6051;
  /* margin-bottom: 20px;
  direction: ltr; */
}
.product-old-price {
  text-decoration: line-through;
  margin: 0 5px;
}

.price del {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

.description {
  /* margin-right: 20px; */
  max-height: 300px;
  overflow: auto;
  scroll-behavior: smooth;
  flex: 1;
}
.description ul {
  line-height: 30px;
}

.description p {
  margin-top: 20px;
  width: fit-content;
  color: #7e7e7e;
  font-size: 13px;
  line-height: 35px;
  margin: 0px 0px 25px;
  font-weight: 400;
}

.description p::first-letter {
  text-transform: capitalize !important;
}

.description > p:nth-child(1) > strong:nth-child(1) {
  font-weight: normal;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: 0px;
  border-top: 1px solid #eee;
}

.choix {
  width: fit-content;
}
.option_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.option_div span:nth-child(1) {
  display: flex;
  align-items: center;
  color: #333333;
  font-family: "lato", Arial, Helvetica, sans-serif;
  margin: 0px 5px 0px 0px;
  font-weight: 600;
  font-size: 14px !important;
}

.option_div select {
  margin-inline: 20px;
}

.options {
  width: 200px;
  height: 42px;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding-inline: 15px;
  background-color: transparent;
  color: #777;
}

.buy {
  width: 100%;
  display: flex;
  position: relative;
  margin: 20px 0;
}

.add_cart {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.add_cart_button {
  width: 100%;
}

.iti input {
  direction: ltr;
}

.return_button_div {
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.btn_ajt_cart {
  width: 100%;
  height: 42px;
  border: white;
  font-size: 15px;
  padding: 5px 20px;
  background: #7f6051;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  border: 0px solid #e5e5e5;
  box-shadow: 1px 1px 0 0 #ffffff;
  -webkit-box-shadow: 1px 1px 0 0 #ffffff;
  transition: ease-in-out all 0.3s;
}

.btn_ajt_cart:hover {
  background: #6b4f41;
  color: #ffffff;
  transition: ease-in-out all 0.3s;
}

.return {
  margin-top: 20px;
}

.return_button {
  height: 42px;
  border: white;
  font-size: 13px;
  padding: 5px 40px;
  line-height: 44px;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  border: 2px solid #e9e9e9;
  box-shadow: 1px 1px 0 0 #ffffff;
  -webkit-box-shadow: 1px 1px 0 0 #ffffff;
  transition: ease-in-out all 0.3s;
}

.return_button:hover {
  background-color: #e9e9e9;
  color: #333;
}

.or_element div hr {
  width: 100%;
  background-color: #222222;
}

.or_element div {
  display: flex;
  align-items: center;
}
.quantity {
  display: flex;
  justify-content: center;
}

.quantity form {
  outline: none;
  font-size: 20px;
}

.share {
  margin-top: 10px;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 60px;
}

.add_to_wishlist {
  font-size: 16px;
  color: rgb(85, 85, 85, 0.5);
  font-weight: 400;
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.add_to_wishlist span {
  font-size: 14px;
  color: #333333;
  font-weight: 600;
}
.add-to-wishlist .not_active {
  fill: #222;
  padding: 5px;

  border-radius: 40%;
}

.add-to-wishlist svg:hover {
  background-color: #a76d50;
  fill: white;
}
#delete_wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #7f6051;
  fill: #7f6051;
}
.category_span {
  font-size: 16px;
}

.span_man {
  color: rgb(85, 85, 85, 0.5);
  padding-left: 10px;
}

.social_media_bigclass {
  font-size: 16px;
  display: flex;
}

.social_media_bigclass span {
  display: flex;
  align-items: center;
  color: #333333;
  font-family: "lato", Arial, Helvetica, sans-serif;
  margin: 0px 5px 0px 0px;
  font-weight: 600;
  font-size: 14px;
}
.category_description {
  margin-bottom: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.105);
}
.category_description p {
  display: flex;
  align-items: center;
  color: #333333;
  font-family: "lato", Arial, Helvetica, sans-serif;
  margin: 0px 5px 0px 0px;
  font-weight: 600;
  font-size: 14px !important;
}
.category_description span {
  color: rgba(0, 0, 0, 0.6) !important;
}
.social_media_share {
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  column-gap: 15px;
}

.social_media_share iconify-icon {
  color: rgba(0, 0, 0, 0.6) !important;
}

.social_media_share .tiktok:hover {
  color: rgb(0, 0, 0) !important;
}

.social_media_share .instagram:hover {
  color: rgb(236, 105, 127) !important;
}

.social_media_share .facebook:hover {
  color: rgb(59, 89, 152) !important;
}

.social_media_share .twitter:hover {
  color: rgb(0, 172, 237) !important;
}

.social_media_share .youtube:hover {
  color: rgb(196, 48, 43) !important;
}

.btn_ajt_cart:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-default {
  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

.preloader.full::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
}

.preloader.default::before,
.preloader.full::before,
.preloader.ldbtn::before,
.preloader.bare::before {
  content: " ";
  display: block;
  border: 4px solid #d1d5db;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: lds-dual-ring 800ms linear infinite;
}

.preloader.full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.preloader.running {
  visibility: visible;
  opacity: 1;
}

.preloader {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*Loader*/
/* Loader styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  /* White background */
  z-index: 9999;
  /* Ensure loader is on top of other content */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  /* Set opacity to 1 so that it's visible initially */
  transition: opacity 0.5s;
  /* Add a smooth transition for opacity */
}

.loader {
  width: 60px;
  height: 60px;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-top: 2px solid #a76d50;
  border-right: 2px solid transparent;
  animation: spinner8217 0.8s linear infinite;
}

@keyframes spinner8217 {
  to {
    transform: rotate(360deg);
  }
}

.loader {
  position: absolute;
  top: calc(50% - 1.25em);
  left: calc(50% - 1.25em);
}
.social_media_bigclass iconify-icon {
  font-size: 22px;
  cursor: pointer;
  color: #454545;
}
#share-fb,
#share-twitter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social_media_bigclass .facebook:hover {
  color: rgb(59, 89, 152);
}
.social_media_bigclass .twitter:hover {
  color: rgb(0, 172, 237);
}

/*********related product***/
.related h1 {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  color: rgb(34, 34, 34);
}

.product_presentation {
  padding: 2rem 6%;
  background: #fff;
}

.product_carousel_home .related_small_images {
  column-gap: 30px;
  width: 283px;
  height: 34rem;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}

.product_carousel_home2 .related_small_images {
  column-gap: 30px;

  height: 34rem;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}

.slider-nave .related_small_images {
  column-gap: 30px;
  /* padding: 0 15px; */
  cursor: pointer;
  position: relative;
  border: 1px solid #dddddd;
}

.home2_product {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home2_product img:nth-of-type(2) {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s linear, transform 1s ease;
  transform: scale(1);
}

.home2_product img:nth-of-type(2):hover {
  opacity: 1;
  transform: scale(1.1);
}

.home2_product .slick-next,
.home2_product .slick-prev {
  background-color: transparent !important;
  border: none;
}

.home2_product .slick-next:hover,
.home2_product .slick-prev:hover {
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
}

.home2_product .slick-next:hover::before,
.home2_product .slick-prev:hover::before {
  color: #222222 !important;
}
.slider-nave .slick-dots {
  display: none !important;
}

.related_small_images .home2_product img {
  width: 100%;
  object-fit: cover;
  height: 350px !important;
}

.home2_product .slick-prev {
  position: absolute;
  left: 0 !important;
  z-index: 1;
  opacity: 0;
  transition: all 0.6s ease;
}

.home2_product .slick-next {
  position: absolute;
  right: 0 !important;
  z-index: 1;
  opacity: 0;
  transition: all 0.6s ease;
}

.home2_product .out_of_stock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70% !important;
  height: 0 !important;
  transform: translate(-50%, -50%);
  font-size: 13px;
}

.out_of_stock span {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000080;
  color: #d0d0d0;
  text-align: center;
}

.home2_product .slick-dots {
  display: none !important;
}

.related_small_images:hover .home2_product .slick-next {
  right: 7px;
  transition: all 0.6s ease;
  opacity: 1;
}

.related_small_images:hover .home2_product .slick-prev {
  left: 7px;
  transition: all 0.6s ease;
  opacity: 1;
}

.related_small_images .content_2 {
  height: 30%;
  /* cursor: url(drag.png) 16 9, ew-resize; */
  /* cursor: url("{{ url_for('static', filename='css/drag-cursor.png') }}"), move; */
  cursor: move;
  /* fallback: no `url()` support or images disabled */
  cursor: url(images/grab.cur);
  /* fallback: Internet Explorer */
  cursor: -webkit-grab;
  /* Chrome 1-21, Safari 4+ */
  cursor: -moz-grab;
  /* Firefox 1.5-26 */
  cursor: grab;
  /* W3C standards syntax, should come least */
}

.related_small_images .content_2:active {
  height: 30%;
  /* cursor: url(drag.png) 16 9, ew-resize; */
  /* cursor: url("{{ url_for('static', filename='css/drag-cursor.png') }}"), move; */
  cursor: url(images/grabbing.cur);
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.title_section_product {
  text-align: center;
}

.title_section_product h1 {
  margin-top: 90px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 5rem);
  text-transform: capitalize;
}

.related_small_images .content_2 {
  text-align: center;
  margin-top: 30px;
  line-height: 22px;
}

.related_small_images .content_2 h2 a {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 10px;
  color: #333333;
  line-height: 19.6px;
  font-family: "Lora";
}

.related_small_images .content_2 h2 {
  margin-bottom: 0 !important;
}

.related_small_images .content_2 h4 a {
  color: rgb(167, 164, 164);
  margin-top: 0 !important;
  text-transform: capitalize;
  font-size: 13.3px;
  line-height: 21.2833px;
  font-weight: 400;
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

.related_small_images .content_2 span:first-child {
  /* font-weight: 600;
    font-size: 14px; */
  color: #7f6051;
  /* text-transform: capitalize; */
  font-size: 13px;
  font-weight: 600;
}

.slider-nave .related_small_images {
  /* margin: 0 5px; */
  position: relative;
}

.related_small_images .quick_view {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.product .product-img .product-label {
  position: absolute;
  left: 5px;
  top: -4px;
  z-index: 22;
}

.product .product-img .product-label > span {
  border: 2px solid;
  padding: 2px 10px;
}

.product .product-img .product-label > span.sale {
  background-color: #fff;
  border-color: black;
  color: white;
}

.product .product-img .product-label > span.new {
  background-color: gray;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  line-height: 45px;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  z-index: 111;
}

.related_small_images .quick_view2 {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.image-link {
  width: 100%;
}
.aditional {
  width: 15%;
  height: 20px;
}

.aditional2 {
  width: 15%;
  height: 20px;
}

.add_product_detail {
  background-color: #222222;
  transition: 0.3s ease-in-out;
  width: 70%;
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #e5e5e5;
  border-radius: 35px;
  color: #454545;
  background: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}

.add_product_detail:hover {
  background-color: #a76d50;
  color: #ffffff;
  border: 1px solid transparent;
}

.related_small_images:hover .quick_view {
  opacity: 1;
  bottom: 10px;
  transition: 0.3s ease-in-out;
}

.related_small_images:hover .quick_view2 {
  opacity: 1;
  bottom: 30%;
  transition: 0.3s ease-in-out;
}

.fav {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 10px;
  cursor: pointer;
  opacity: 0;
  color: rgb(92, 101, 92);
  transition: 0.3s ease-in-out;
}

.slider-nave .related_small_images:hover .fav {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

/*********product_presentation********/
.product_presentation {
  padding: 2rem 9%;
}

.slider-navv {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.small_images_categorie {
  width: 20rem;
  height: 17rem;
  position: relative;
  cursor: pointer;
}

.category_all {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  text-transform: capitalize;
  font-size: clamp(16px, 20px, 20px);
}

.small_images_categorie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.small_images_categorie img:hover {
  opacity: 0.7;
  border: 1px solid #222222;
  transition: all 0.3s ease-in-out;
}

.product_content_2 {
  position: absolute;
  margin: 0;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 80px;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.4);
}

.small_images_categorie .product_content_2 a button {
  --color: #031830;
  font-family: inherit;
  display: inline-block;
  width: 6em;
  height: 2.6em;
  line-height: 2.5em;
  overflow: hidden;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: 2px solid var(--color);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.small_images_categorie .product_content_2 a button::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 150px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
}

.small_images_categorie .product_content_2 a button:hover {
  color: white;
}

.small_images_categorie .product_content_2 a button:before {
  top: 100%;
  left: 100%;
  transition: 0.3s all;
}

.small_images_categorie .product_content_2 a button:hover::before {
  top: -30px;
  left: -30px;
}

.product_content_2 a {
  display: block;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
  padding-top: 7px;
}

.product_content_2 .categories {
  font-size: 14px;
  color: black;
}

.product_content_2 .number_products {
  font-size: 12px;
  color: rgb(167, 164, 164);
}

/*********banner**********/
.banner_container {
  width: 100%;
  margin: auto;
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
}

.banner_container .banner_component {
  padding: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 350px;
}

.banner_component h4 {
  font-weight: 530;
  margin-bottom: 20px;
}

.banner_component p {
  color: rgb(150, 148, 148);
}

/************table cart selection***/
.general-cart {
  max-width: 1440px;
  margin: auto;
}

.tables_cart {
  padding: 0 1%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 40px;
  margin: 40px 0;
}

.une_table {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
}

.une_table .message_input {
  margin-top: 30px;
  align-self: flex-start;
}

.une_table .message_input input {
  color: rgb(136, 136, 136);
  background-color: white;
  border: 1px solid rgb(136, 136, 136);
}

.une_table .message_input .send_button {
  border-top: 1px solid rgb(136, 136, 136);
  border-bottom: 1px solid rgb(136, 136, 136);
  border-right: 1px solid rgb(136, 136, 136);
}

.table1 {
  width: 100%;
  height: 70px;
}

th {
  border-bottom: 1px solid rgb(189, 189, 189);
  font-weight: 400;
  color: #242424;
  font-size: 16px;
  line-height: 18.5667px;
  padding: 15px 10px;
  text-align: center;
  font-family: "Playfair Display", Arial, Helvetica, sans-serif;
}

td {
  padding: 30px 0px 12px 0px;
  text-align: center;
  border-bottom: 1px solid rgb(189, 189, 189);
}

.product_prise {
  text-transform: uppercase;
  font-size: 14px;
  display: none;
}

.ligne_image {
  display: flex;
}

.ligne_image img {
  width: 90px;
  height: 90px;
  border-radius: 5px;
  object-fit: cover;
  margin-right: 15px;
  padding: 4px;
  border: 1px solid #ddd;
}

.ligne_image .content_2 {
  line-height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: 5px;
}

.content_2 h2 a {
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 10px;
  color: #333333;
  font-size: 14px;
  line-height: 18.5667px;
  font-weight: 400;
  font-family: "Lora", Arial, Helvetica, sans-serif;
  word-wrap: break-word;
}
.content_2 h2 a::first-letter {
  text-transform: capitalize;
}

.content_2 h2 {
  margin-bottom: 10px;
}

.content_2 h4 a {
  font-weight: 300;
  font-size: 14px;
  color: rgb(136, 136, 136);
  text-transform: capitalize;
  cursor: pointer;
}

.parent {
  display: grid;
  grid-template-columns: 25px 30px 25px;
  grid-template-rows: 42px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.parent2 {
  display: grid;
  grid-template-columns: 25px 30px 25px;
  grid-template-rows: 42px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  justify-content: center;
}

.div1::selection,
.div3::selection {
  background-color: transparent;
}

.div1 {
  text-align: center;
  color: rgb(136, 136, 136);
  font-weight: 400;
  border: 2px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  grid-area: 1 / 1 / 2 / 2;
}

.div2 {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
  text-align: center;
  outline: none;
  color: rgb(34, 34, 34);
  border-style: hidden;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  grid-area: 1 / 2 / 2 / 3;
  border-right: none;
  border-left: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.div3 {
  text-align: center;
  color: rgb(136, 136, 136);
  font-weight: 400;
  border: 2px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  grid-area: 1 / 3 / 2 / 4;
}

.div1:hover,
.div3:hover {
  background-color: #7f6051 !important;
  color: white;
  border-color: transparent;
}

.div1,
.div3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prix {
  font-family: "lato", Arial, Helvetica, sans-serif;
  color: #7f6051;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.table_two {
  height: 100%;
  width: 80%;
  border: 1px solid #e2e2e2;
  padding: 30px;
}

.table_two h2 {
  font-size: 16px;
  color: rgb(34, 34, 34);
  padding: 0 0 14px;
  text-transform: uppercase;
  font-weight: 400;
}

.table_two hr {
  color: rgb(136, 136, 136);
}

.subtotal {
  padding: 11px 11px 11px 0px;
  color: rgb(102, 102, 102);
  border: none;
  font-size: 16px;
  font-weight: 400;
  width: 250px;
  text-transform: capitalize;
  text-align: left;
  text-transform: uppercase;
}
#snackbar {
  visibility: hidden;
  min-width: 280px;
  /* margin-left: -125px; */
  background-color: #222222;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 99;
  /* left: 50%;
    bottom: 30px; */
  font-weight: 700;
  bottom: 90px;
  left: 50%;
  transform: translate(-50%, -50%);
}

#snackbar.show {
  visibility: visible;
  -moz-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#hideButton {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  cursor: pointer;
}
/* Additional styles for #snackbar and #snackbarText go here */

.total,
.order-total {
  padding: 14px 14px 0px 0px;
  font-size: 20px;
  font-weight: 400;
  border: none;
  text-transform: uppercase;
  text-align: start;
  font-family: "lora", Arial, Helvetica, sans-serif;
}
.big-text {
  font-weight: bold;
  font-size: 13px;
  font-weight: 500;
  /* color: var(--title-color); */
  font-family: "Playfair Display", Arial, Helvetica, sans-serif;
}
.money,
.order-total1 {
  text-align: end;
  text-transform: uppercase;
}

.total_table {
  line-height: 30px;
  margin: 20px 0;
  width: 100%;
}

.table_two_button {
  width: 100%;
  height: 45px;
  margin-bottom: 5px;
  font-size: 16px;
  text-transform: capitalize;
  background-color: #7f6051;
  color: white;
  padding: 12px 35px;
  border: 1px solid transparent;
  margin-top: 10px;
  cursor: pointer;
}

.table_two_button:hover {
  background: #6b4f41;
  color: #ffffff;
}

.button2 {
  pointer-events: none !important;
}

html body div.tables_cart div.table_two a {
  padding: 12px 0;
}

.table_two .note textarea {
  width: 100%;
  font-size: 15px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #e2e2e2;
  outline: none;
  resize: none;
  color: rgb(102, 102, 102);
  height: 100px;
}

.button_checkout {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

/**********contact*****/

.contact {
  margin-right: auto;
  margin-left: auto;
}
.contact-container {
  display: flex;
  margin-top: 0;
  box-shadow: none;
  flex-direction: column-reverse;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.formulaire {
  /* padding: 30px; */
  width: 100%;
}

.formulaire .contact_formulaire_title {
  font-size: 18px;
  color: #7e7e7e;
  margin: 0px 0px 20px;
  padding: 7px 0px;
  line-height: 25.7167px;
}

.form__group {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  margin-bottom: 15px;
}
.iti {
  width: 100%;
}
.form__group input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.form__group .iti--separate-dial-code {
  width: 100% !important;
}

.form__group textarea {
  display: block;
  width: 100%;
  height: 250px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 2px solid rgba(0, 0, 0, 0.1);
  resize: none;
}

.form__group #email {
  width: 100% !important;
}

.form__label {
  width: 16%;
  color: #242424;
  font-size: 14px;
  margin: 0px;
  padding: 7px 15px 0px;
  text-align: right;
  text-transform: capitalize;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 17px;
  color: #fff;
  padding: 7px 0;
  background: transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.form__group input:focus {
  border-color: #a76d50;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.form__group textarea:focus {
  border-color: #a76d50;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

/* reset input */
.form__field:required,
.form__field:invalid {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.boutton-formulaire {
  padding: 0px 25px;
  color: #333333;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 44px;
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s ease-in-out;
  float: inline-end;
  cursor: pointer;
}

.boutton-formulaire:hover {
  background-color: #e9e9e9;
  color: #333;
}

.left_contact {
  width: 100%;
  padding: 0 20px;
}

.right_contact {
  width: 100%;
  padding: 0;
  margin-bottom: 8vh !important;
  position: relative;
}

.right_contact iframe {
  width: 100%;
}

.information {
  margin-top: 40px;
  display: flex;
}

.information div {
  padding: 0 14px;
}

.information div iconify-icon {
  font-size: 35px;
  cursor: pointer;
  color: #666;
}

.information .linkedin iconify-icon:hover {
  color: #0072b1;
}

.information .mail iconify-icon:hover {
  color: #7a1c1c;
}

.information .phone iconify-icon:hover {
  color: black;
}

/**************************FAQS****************************/
.container-faqs {
  padding: 2rem 9%;
}

.container-fluid {
  margin-top: 80px;
}

.faqs_section {
  margin: 0 auto;
  width: 90%;
}

.t-center {
  color: #fff;
  padding: 10px;
  width: 90%;
  background-color: #a76d50;
  border: 1px solid white;
  font-family: Poppins, sans-serif;
}

.btn-link {
  border: none;
  background-color: transparent;
  color: var(--title-color);
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.card-title {
  color: black;
  font-size: 16px;
}

.row-faqs {
  width: 90%;
  margin: auto;
}

.card-text {
  color: black;
  font-size: 16px;
}

.collapse12 {
  width: 80%;
  padding: 7px;
  padding-left: 7px;
  padding-left: 50px;
}

.sec-title {
  justify-content: center;
  text-align: center;
  display: flex;
  margin-top: 20px;
}

.row-faqs ol {
  border: 1px solid #ccc;
}

.row-faqs ol li {
  margin-bottom: 20px;
}

/***************************************fin FAQS******************************/

/*********footer*****/
.footer {
  box-sizing: border-box;
  height: 100%;
  background-color: var(--background-Footer);
  padding-top: 40px;
  /* background-color: white; */
}

.email_container {
  padding: 16px 5%;
  display: flex;
  margin: auto;
  align-items: center;
  max-width: 1440px;
}

.question_container {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.question_container > div {
  /* color: #A5A5A5; */
  color: var(--text-EmailSubColor);
  font-family: "lato", Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 22.4px;
}

.question_container h3 {
  /* color: #242424; */
  color: var(--title-EmailSubColor);
  font-family: "Playfair Display", Arial, Helvetica, sans-serif;
  font-size: 36px;
  margin: 0;
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 15px;
}

.question_container span {
  /* color: #777777; */
  color: var(--SecondTextEmailSubColor);
  font-family: "lato", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px !important;
}

.button_contact {
  color: var(--button-CollectionColor);
  background-color: var(--button-CollectionBackground);
  align-self: center;
  border-radius: 0;
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  font-family: "lato", Arial, Helvetica, sans-serif;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 13px;
}

.email_space {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  width: 50%;
  border-right: 1px solid rgba(129, 129, 129, 0.2) !important;
}

.message_input {
  display: flex;
  width: 80%;
  height: 45px;
}

.message_input input {
  display: inline-block;
  vertical-align: top;
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  line-height: 30px;
  color: var(--ColorBody);
  font-size: 13px;
  font-weight: 400;
  background: #f8f8f8;
  box-shadow: inset 1px 1px 0 0 #ffffff;
  outline: none;
  width: 100%;
}

.message_input .send_button {
  font-family: "lato", Arial, Helvetica, sans-serif;
  background-color: var(--button-EmailSubBackground);
  line-height: 15.6px;
  padding: 5px 20px;
  color: var(--button-EmailSubColor);
  font-weight: 600;
  text-transform: capitalize;
  outline: none;
  border: none;
  cursor: pointer;
  margin-left: 15px;
  font-size: 13px;
  /* "value": "#6b4f41", */
}

.message_input .send_button:hover {
  background-color: var(--button-EmailSubHover);
  /* background-color: var(--button-EmailSubColorHover); */
}

/* .message_input input:focus {
    background-color: white;
    color: #222222;
} */
.message_label {
  position: relative;
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.message_label div {
  color: var(--text-EmailSubColor);
  /* color: #A5A5A5; */
  font-family: "lato", Arial, Helvetica, sans-serif;
  /* font-size: 20px; */
  font-size: clamp(18px, 4vw, 20px);
  line-height: 25px;
  font-weight: 400;
  margin: 0px 0px 3px;
  text-transform: uppercase;
  /*

font-size: 14px;
margin-bottom: 10px;
line-height: 22.4px;
     */
}

.message_label span {
  /* color: #777777; */
  color: var(--SecondTextEmailSubColor);
  font-family: "lato", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px !important;
}

.message_label h2 {
  color: var(--title-EmailSubColor);
  font-family: "Playfair Display", Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* .message_label h2::after,
.message_label h2::before {
    content: "";
    width: 40px;
    height: 1px;
    background: #a76d50;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
}

.message_label h2::before {
    bottom: 6px;
    margin-left: -30px;
} */

.footer-container {
  padding-bottom: 20px;
  max-width: 1440px;
  margin: auto;
  padding: 2rem 10px;
}

.footer hr {
  margin-top: 20px;
  margin-bottom: 20px;
}

.box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 20px;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
}

.box .first_link:first-child {
  width: 400px !important;
}

.first_link {
  display: flex;
  flex-direction: column;
  /* text-align: left; */
  text-decoration: none;
  text-transform: capitalize;
  width: fit-content;
  padding-inline: 20px;
}

.first_link h3 {
  color: var(--title-FooterColor);
  font-size: 16px;
  display: flex;
  align-items: center;
  font-family: "Playfair Display", Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin: 0px 0px 20px;
}

.first_link a,
.first_link p {
  line-height: 30px;
  color: var(--text-FooterColor);
  /* color: #7e7e7e; */
  width: fit-content;
  font-size: 14px;
  font-family: "lato", Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.first_link a {
  display: flex;
  align-items: first baseline;
  column-gap: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: box; /* Standard display property */
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical; /* Standard box orientation */
  -webkit-line-clamp: 1; /* Limit the text to one line in WebKit browsers */
  -moz-line-clamp: 1; /* Limit the text to one line in Firefox */
  line-clamp: 1; /* Standard line clamp property */
  overflow: hidden;
}

.first_link a svg {
  fill: var(--text-FooterColor);
  text-decoration: none;
}

.first_link a:hover,
.first_link a svg:hover {
  /* color: var(--pinkfooter-hover); */
  color: var(--text-FooterHover);
  fill: var(--text-FooterHover);
}

.pages {
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none;
  text-transform: capitalize;
  width: fit-content;
}

.social_media {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.social_media iconify-icon {
  margin: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #454545;
}

.social_media .tiktok:hover {
  color: rgb(0, 0, 0);
}

.social_media .instagram:hover {
  color: rgb(236, 105, 127);
}

.social_media .facebook:hover {
  color: rgb(59, 89, 152);
}

.social_media .twitter:hover {
  color: rgb(0, 172, 237);
}

.social_media .youtube:hover {
  color: rgb(196, 48, 43);
}

/*
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 9%;
    background: #a76d50;
}

.copyright span,
.copyright span a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    line-height: 30px;
    display: flex;
    align-items: center;
    font-family: 'Poppins',sans-serif;
    font-weight: 400;
}

.copyright span a:hover {
    color: #797878
} */
.payement_methode {
  display: flex;
  column-gap: 10px;
}

.payement_methode img {
  height: 40px;
  width: 40px;
}

.bottom-details {
  width: 100%;
  background-color: var(--backgroundButtomFooter);
  border-top: 1px solid #f5f5f5;
}

.bottom-details .bottom_text {
  max-width: 1200px;
  margin: auto;
  padding: 30px 40px 10px;
  text-align: center;
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  color: var(--text-ColorButtomFooter);
  width: 70%;
  text-align: start;
  margin-right: 25px;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bottom-details .bottom_text a {
  margin-right: 10px;
}

.store_infos {
  width: 350px;
  height: 35%;
  background-color: red;
  position: absolute;
  bottom: 15%;
  left: 25%;
  transform: translate(-50%);
  z-index: 1;
  margin-bottom: 0;
  padding: 30px;
  max-width: 300px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.store_infos h4 {
  color: #a5a5a5;
  margin: 0px 0px 10px;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}
.store_infos h3 {
  color: #242424;
  margin: 0px 0px 10px;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Playfair Display", Arial, Helvetica, sans-serif;
}
.store_infos span {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  margin: 0px 0px 10px;
  display: -webkit-box;
  display: -moz-box;
  display: box; /* Standard display property */
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical; /* Standard box orientation */
  -webkit-line-clamp: 1; /* Limit the text to one line in WebKit browsers */
  -moz-line-clamp: 1; /* Limit the text to one line in Firefox */
  line-clamp: 1; /* Standard line clamp property */
  overflow: hidden;
}
.store_infos a {
  color: #333333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .left_contact {
    width: 1200px;
  }
}

@media (min-width: 1400px) {
  .box_option {
    display: flex;
    margin-top: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .pdf_file_container {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .left_contact {
    width: 970px;
  }
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (max-width: 1246px) {
  .sof {
    column-gap: 30px;
    justify-content: center;
  }
}

/* @media (max-width:1199px) {
    .table_two {
        width: 35%;
    }
} */

@media (max-width: 1035px) {
  .filter_check {
    position: fixed;
    padding: 15px 10px;
    border-bottom-right-radius: 50%;
    border-top-right-radius: 50%;
    background-color: #a76d50;
    color: white;
    z-index: 1;
    cursor: pointer;
    font-size: 25px;
    top: 350px;
    display: block;
    margin-right: 30px;
    transition: all 0.8s ease-in-out;
    box-shadow: -6px -6px 14px rgba(255, 255, 255, 0.7),
      -6px -6px 10px rgba(255, 255, 255, 0.5),
      6px 6px 8px rgba(255, 255, 255, 0.075), 6px 6px 10px rgba(0, 0, 0, 0.15);
  }

  .quitter4 {
    position: fixed;
    top: 10px;
    left: -100%;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: block;
    transition: all 0.8s ease-in-out;
    background-color: white;
  }

  .filtrage {
    width: 290px;
    padding-top: 15px;
    position: fixed;
    z-index: 10;
    background-color: white;
    left: -100%;
    height: 100%;
    top: 0;
    display: block;
    overflow-y: auto !important;
    transition: all 0.8s ease-in-out;
  }

  #checkbtn6:checked ~ .filtrage {
    position: fixed;
    left: 0%;
    z-index: 100;
    transition: all 0.8s ease-in-out;
  }

  #checkbtn6:checked ~ label .quitter4 {
    left: 295px;
    position: fixed;
    transition: all 0.8s ease-in-out;
  }

  #checkbtn6:checked ~ label .filter_check {
    display: none;
  }

  #checkbtn6:checked ~ .empty7 {
    display: block;
    position: fixed;
    height: 110vh !important;
    transition: all 0.8s ease-in-out;
  }

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

  .sof {
    justify-content: center !important;
  }
  .container_category {
    aspect-ratio: 1/1;
    width: 33%;
    height: auto;
  }
  .container_category .product-1 {
    height: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  .slick-next {
    opacity: 1 !important;
  }

  .slick-prev {
    opacity: 1 !important;
  }

  .head {
    padding: 0 4%;
  }

  header {
    padding-left: 4%;
    padding-right: 4%;
  }

  .footer {
    padding-left: 6%;
    padding-right: 6%;
  }

  .tables_cart {
    flex-direction: column;
  }

  .table_two {
    width: 620px;
    margin-top: 30px;
  }

  .product_presentation {
    padding: 2rem 10px;
  }

  .slider-nav {
    column-gap: 10px;
  }

  .small_images_all {
    width: 15rem !important;
    /* height: 100%; */
  }

  .small_images_all .slick-slide {
    width: 15rem !important;
  }

  /* .all_products .small_images_all .add{
        bottom: 125px !important;
    } */
  .all_products .small_images_all .fav {
    right: 0px !important;
  }

  .banner_container .banner_component {
    padding: 15px !important;
    align-self: flex-start;
  }

  .home2 img {
    width: 100%;
    height: 95vh;
  }

  /* .background_banner {
        height: 80vh;
    } */

  .product_carousel_home .slick-next {
    right: 0px !important;
  }

  .product_carousel_home .slick-prev {
    left: -10px !important;
  }

  .product_carousel_home .small_images img {
    height: 70% !important;
  }

  .collection_section {
    padding: 2rem 2%;
  }

  .image-box .content {
    height: 80px;
    width: 100%;
  }

  .image-box .content span {
    font-size: 18px;
  }

  .left {
    padding-right: 0;
  }

  .right {
    padding-left: 20px;
  }

  .big_image {
    width: 25rem;
    height: 100%;
  }

  img.slick-current {
    width: 25rem;
    height: 100%;
  }

  .images {
    width: 350px !important;
    margin: 40px 0;
  }

  .small_images_detail {
    width: 7rem;
    height: 120px;
  }

  .right {
    width: 45%;
  }

  .commander-boutton {
    width: 100%;
  }

  .background_banner {
    flex-direction: column-reverse;
  }

  .background_banner .paragraph_banner2 {
    width: 100%;
  }

  .background_bannerimg {
    width: 100%;
  }

  .background_banner2 {
    flex-direction: column-reverse;
  }

  .background_banner2 .paragraph_banner2 {
    width: 100%;
  }

  .background_bannerimg2 {
    width: 100%;
  }

  .background_bannerimg2 img {
    width: 100%;
    height: auto;
  }

  .email_container {
    flex-direction: column;
  }

  .email_space {
    border-right: none !important;
    width: 100%;
    border-bottom: 1px solid rgba(129, 129, 129, 0.2) !important;
    padding-bottom: 30px;
  }

  .question_container {
    width: 100%;
    padding-top: 30px;
  }

  .message_input {
    width: 60%;
  }
  .box {
    justify-content: start;
  }
  .pdf_file_container {
    flex-wrap: wrap;
  }
  /* .noselect {
    width: 200px;
  } */
  .noselect .text {
    color: #fff;
  }

  .noselect .icon {
    position: static;
    margin: auto;
    width: fit-content;
    border-left: none;
    transform: translateX(0);
  }
}

@media (max-width: 940px) {
  .hamburger {
    display: block !important;
  }
  .wishlist_page {
    display: none;
  }
  .facebook {
    color: rgb(59, 89, 152) !important;
  }

  .instagram {
    color: rgb(236, 105, 127) !important;
  }

  .twitter {
    color: rgb(0, 172, 237) !important;
  }

  .tiktok {
    color: rgb(0, 0, 0) !important;
  }

  .youtube {
    color: rgb(196, 48, 43) !important;
  }

  .social_media_bigclass .social_media_share #share-fb {
    color: rgb(59, 89, 152);
  }

  .social_media_bigclass .social_media_share #share-twitter {
    color: rgb(0, 172, 237);
  }

  .search {
    display: none;
  }

  .navbar {
    display: none;
  }

  .link {
    order: 1 !important;
    width: 10%;
  }

  .logo {
    order: 2 !important;
  }

  .logos_nav {
    order: 3 !important;
  }

  .head {
    display: flex;
    justify-content: space-between;
  }

  .footer {
    padding-left: 4%;
    padding-right: 4%;
  }

  .logos li {
    padding: 0 5px;
  }
  .small_images_categorie {
    width: 18rem;
    height: 15rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
  }

  .small_images_all {
    width: 12rem !important;
    height: 25rem;
  }

  .small_images_all .slick-slide {
    width: 12rem !important;
  }

  .small_images_all .product_carousel img {
    height: 18rem !important;
  }
  .small_images_all .slick-dots {
    display: none !important;
  }

  .sidebar ul {
    z-index: 100;
  }

  .sof {
    display: flex;
    justify-content: center !important;
    row-gap: 50px;
  }

  .banner_container {
    flex-wrap: wrap;
  }

  .banner_container .banner_component {
    padding: 10px !important;
  }

  .home2 img {
    width: 100%;
    height: 90vh;
  }
  .big_image {
    width: 20rem;
    height: auto;
  }

  .big_image div img {
    width: 100% !important;
    height: 100% !important;
  }

  img.slick-current {
    width: 20rem;
    height: auto;
  }

  .images {
    width: 350px !important;
    margin: 40px 0;
  }

  .small_images_detail {
    width: 7rem;
    height: 120px;
  }

  .product_carousel_home .related_small_images {
    border: 1px solid;
    border-color: #ffffff;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.12);
  }

  .product_carousel_home2 .related_small_images {
    border: 1px solid;
    border-color: #ffffff;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.12);
  }
  .quick_view {
    /* opacity: 1 !important;
        bottom:45% !important; */
    display: none !important;
  }

  .quick_view2 {
    /* opacity: 1 !important;
        bottom:45% !important; */
    display: none !important;
  }

  .all_products .small_images_all .add {
    display: none;
  }

  .all_products .small_images_all:hover .add {
    bottom: 34% !important;
  }
}

@media (max-width: 823px) {
  .banner_component_section {
    padding: 2rem 1%;
  }

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

  .paragraphe_banner {
    width: 100%;
    /* height: 96px; */
    line-height: 40px;
  }

  .banner_component .paragraphe_banner p {
    font-size: 14px;
    line-height: 20px;
  }

  .banner_component .icon img {
    height: 40px;
    width: 40px;
  }

  .home2 .paragraph {
    line-height: 60px;
  }
  .home2 .paragraph h3 {
    font-size: 2rem;
    text-align: left;
  }

  .home2 .paragraph span {
    font-size: 1.5rem;
  }

  .button {
    font-size: 14px;
    padding: 12px 30px;
    margin-top: 5px;
  }

  .images {
    width: 250px !important;
    margin: 40px 0;
  }

  .small_images_detail {
    width: 5rem;
    height: 100px;
  }

  .bottom_text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .payement_methode {
    margin-top: 20px;
  }
}

@media (max-width: 810px) {
  .formulaire {
    padding: 15px;
  }

  #email {
    width: 90% !important;
  }

  .message_input input {
    width: 100%;
  }

  .email_space {
    flex-direction: column;
    row-gap: 15px;
  }

  /* .copyright img{
        width: 200px;
        height: 20px;
    } */
  .home2 img {
    width: 100%;
    height: 80vh;
  }

  .flex_box {
    flex-direction: column;
    padding: 0 9%;
  }

  .left,
  .right {
    width: 100%;
    padding: 0;
  }

  .big_image {
    width: 95%;
    height: auto;
  }

  .images {
    width: 440px !important;
    margin: 40px 0;
  }

  .small_images_detail {
    width: 7rem;
    height: 160px;
  }

  .related_small_images .content_2 {
    margin-top: 30px !important;
  }
}

@media (max-width: 768px) {
  .form__group {
    flex-direction: column-reverse;
  }

  .form__label {
    min-height: 1px;
    width: 100% !important;
    text-align: left;
    padding: 0 !important;
    padding: 0 0 5px 0 !important;
  }

  .formulaire {
    padding: 0;
  }

  .contact-container {
    padding: 0;
  }

  #box {
    height: 200px;
  }

  .box_option {
    width: 100%;
    row-gap: 10px;
  }
}

@media (max-width: 685px) {
  .banner_component h2 {
    font-size: 16px;
  }

  .banner_component .paragraphe_banner p {
    font-size: 12px;
    line-height: 20px;
  }

  .home2 img {
    width: 100%;
    height: 60vh;
  }

  .images {
    height: 100%;
  }

  .images {
    width: 80% !important;
    height: auto;
    margin: 40px 0;
  }

  .small_images_detail {
    width: 100%;
    height: auto;
  }

  .slick-dots li button::before {
    border: none !important;
  }

  .home2 .slick-next,
  .home2 .slick-prev {
    background-color: transparent !important;
  }
}

@media (max-width: 660px) {
  .table_two {
    width: 100%;
  }

  .content_2 {
    text-align: left;
  }

  .remove,
  .product_prise {
    display: block;
  }

  .table1 th:nth-child(3) {
    display: none;
  }

  .table1 th:nth-child(5) {
    display: none;
  }

  .table1 td,
  .ligne_input div {
    justify-content: flex-start;
  }

  .table1 td:nth-child(3) {
    display: none;
  }

  .table1 td:nth-child(5) {
    display: none;
  }

  .table1 th {
    font-size: 14px;
    text-align: left;
  }

  .une_table {
    width: 100% !important;
  }

  /* .parent {
    display: grid;
    grid-template-columns: 45px 21px;
    grid-template-rows: repeat(2, 21px);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  } */

  /* .div2 {
    border-left: 1px solid rgb(202, 200, 200);
    grid-area: 1 / 1 / 3 / 2;
  }

  .div1 {
    grid-area: 1 / 2 / 2 / 3;
    border: 1px solid rgb(202, 200, 200);
    border-radius: 0;
    border-bottom: none;
  }

  .div3 {
    grid-area: 2 / 2 / 3 / 3;
    border: 1px solid rgb(202, 200, 200);
    border-radius: 0;
  } */


  .btn_ajt_cart {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .return_button {
    width: 100%;
    justify-content: center;
  }

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

  .subtotal {
    font-size: 14px;
  }

  .total {
    font-size: 17px;
  }

  .message_input {
    width: 90%;
  }

  .message_input input {
    font-size: 14px;
  }

  .plus_moin_cart span {
    display: flex !important;
  }

  .content_2 {
    margin: 0 !important;
  }

  .content_2 h2 {
    margin-bottom: 0;
  }

  .content_2 h4 a {
    font-size: 12px;
  }

  .wish_table tbody tr th:nth-child(4) {
    text-align: center;
    padding-left: 0px !important;
  }

  .prix {
    font-size: 14px;
    padding-top: 0px;
  }

  .remove {
    font-size: 12px;
  }

  .product_prise {
    font-size: 12px;
  }

  .ligne_image img {
    height: 90px;
    width: 70px;
  }

  td {
    padding: 20px 11px 12px 15px;
  }

  .table1 th {
    padding: 20px 0px 12px 15px !important;
  }

  .sub_nav {
    padding: 15px;
  }

  .table_two {
    padding: 15px;
  }

  .button_checkout {
    flex-direction: column;
  }

  .button_checkout:nth-child(1) {
    width: 100%;
  }

  html body div.tables_cart div.table_two a {
    padding: 0;
  }

  .button2 {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: white;
    color: #222;
  }

  .small_images_all {
    width: 14rem !important;
  }

  .small_images_all .slick-slide {
    width: 14rem !important;
  }

  .all_products_container {
    padding: 2rem 1%;
  }

  .banner_container {
    row-gap: 12px;
  }

  .banner_component h2 {
    text-align: center;
  }

  .banner_container tr {
    display: flex;
    justify-content: space-between;
  }

  .banner_container .banner_component {
    border: 1px solid rgba(213, 213, 213, 0.7);
  }

  .banner_component .icon img {
    height: 100%;
    width: 100%;
  }

  .home2 img {
    width: 100%;
    height: 55vh;
  }

  .home2 .paragraph {
    line-height: 40px;
  }

  .home2 .paragraph h3 {
    font-size: 1rem;
    text-align: left;
  }

  .home2 .paragraph span {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .home2 .paragraph p {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .button {
    font-size: 12px;
    padding: 10px 20px;
    margin-top: 5px;
  }

  /* .product_carousel_home .small_images img {
        height: 90% !important;
        width: 100% !important;
      } */
  .product_carousel_home .slick-prev {
    left: -15px !important;
  }

  .products-container {
    display: block !important;
  }
  .container_category {
    width: 60%;
    height: auto;
    margin: 0 auto;
  }
  .banner2 {
    margin-bottom: 0 !important;
  }

  /* .collection_section .products-container .product-1 {
        height: 20rem;
        width: 75%;
        overflow: hidden;
    } */
  .store_infos {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .extend_button {
    display: flex;
  }
  .product_carousel_home2 {
    max-height: 35rem;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .product_carousel_home2.extended {
    max-height: 100%;
    transition: max-height 1s ease-in-out;
  }
}

@media (max-width: 497px) {
  .small_images_all {
    width: 12rem !important;
    height: auto;
  }

  .small_images_all .slick-slide {
    width: 12rem !important;
  }

  .all_products_container {
    padding: 2rem 4%;
  }

  .banner_component .icon img {
    height: 80%;
    width: 80%;
  }

  .home2 img {
    width: 100%;
    height: 50vh;
  }

  .home2 .paragraph {
    top: 35%;
  }

  .home2 .slick-dots {
    display: none !important;
  }

  /* .collection_section .products-container .product-1 {
        height: 17rem;
        width: 75%;
        overflow: hidden;
    } */

  .background_banner .paragraph_banner .button {
    font-size: 12px;
    padding: 5px 15px !important;
  }

  .background_banner2 .paragraph_banner .button {
    font-size: 12px;
    padding: 5px 15px !important;
  }

  .banner2 .paragraph_banner2 h3 {
    font-size: 20px;
  }

  .background_banner {
    padding: 2rem 9%;
  }

  .background_banner2 {
    padding: 0 2%;
  }

  .box_option {
    margin-bottom: 10px;
  }

  .home2 .slick-prev {
    height: 30px;
    width: 30px;
  }

  .home2 .slick-next {
    height: 30px;
    width: 30px;
  }

  /* .related_small_images .home2_product img {
        height: 23rem !important;
        width: 100%;
    } */

  /* .quick_view{
        bottom: 130px;
    }
    .slider-nave .related_small_images:hover .quick_view{
        bottom:145px;
    }*/

  /* .product_detail_presentation {
        width: 20rem;
        place-items: center;
        display: flex;
        flex-direction: column;

    } */
  /* .related_small_images .home2_product{
        width: 90% !important;
        height: auto;
    }
    .related_small_images .home2_product .slick-slide{
        width: 90% !important;
        height: 22rem;
    } */
  .small_images_categorie {
    width: 100%;
    padding: 2rem 9%;
  }

  .related_small_images .home2_product img {
    /* height: 23rem !important; */
    width: 100%;
  }

  /* .product_carousel_home .related_small_images {
        height: 31rem !important;
    } */
  .container_category {
    width: 75%;
    height: auto;
  }
  .container_category .product-1 {
    height: 100% !important;
    width: 100% !important;
  }
}
@media (max-width: 449px) {
  .small_images_all {
    width: 20rem !important;
    height: auto;
  }

  .small_images_all .slick-slide {
    width: 20rem !important;
  }

  .small_images_all .product_carousel img {
    height: 100% !important;
  }
}

@media (max-width: 445px) {
  .sidebar2 ul {
    width: 75%;
  }

  .login_container h1 {
    font-size: 15px;
  }

  /* .sidebar3 ul {
        width: 75%;
    } */
  .user_login {
    display: none !important;
  }

  #check-shopp:checked ~ label .quitter2 {
    right: 76%;
  }

  #check-user:checked ~ label .quitter3 {
    right: 76%;
  }

  .signin,
  .signup {
    width: 100% !important;
  }

  .small_images_categorie {
    width: 100%;
    padding: 2rem 9%;
  }

  .product_content_2 .categories {
    font-size: 12px;
  }

  .product_content_2 .number_products {
    font-size: 11px;
  }

  .small_images_all {
    width: 20rem !important;
    height: auto;
  }

  .small_images_all .slick-slide {
    width: 20rem !important;
  }

  .small_images_all .product_carousel img {
    height: 100% !important;
  }

  .all_products_container {
    padding: 2rem 4%;
  }

  /* .collection_section .products-container .product-1 {
        height: 17rem;
        width: 90%;
        overflow: hidden;
    } */

  /* .home2 img {
        width: 100%;
        height: 35vh;
    } */

  .images {
    height: 100%;
  }

  .images {
    width: 80% !important;
    height: auto;
    margin: 40px 0;
  }

  .small_images_detail {
    width: 100%;
    height: 110px;
  }

  .pname {
    font-size: 18px;
  }

  .price {
    font-size: 17px;
  }

  .price span {
    font-size: 14px;
  }

  .description {
    margin-right: 0;
  }

  .description p {
    margin-top: 20px;
    font-size: 14px;
  }

  .commander-boutton {
    font-size: 14px;
    margin-top: 0;
  }

  .share {
    margin-top: 25px;
  }

  .add_to_wishlist {
    font-size: 14px;
  }

  .category_span {
    font-size: 14px;
  }

  .social_media_bigclass {
    font-size: 14px;
    display: flex;
  }

  .background_bannerimg {
    width: 100%;
  }

  .background_bannerimg2 {
    width: 100%;
  }

  /* .related_small_images .home2_product img {
        height: 210px !important;
        width: 100%;
    } */

  /* .product_carousel_home .related_small_images {
        height: 23rem !important;
    } */
  /*
    .product_carousel_home2 .related_small_images {
        height: 23rem;

    } */
}

@media (max-width: 400px) {
  .sidebar ul {
    width: 75%;
  }

  .search_side input {
    width: 100%;
  }

  .user_sidebar {
    column-gap: 2px;
  }

  .flex_box {
    padding: 0 5%;
  }

  .filtrage {
    width: 75%;
    overflow-y: auto;
    padding: 15px 20px;
  }

  #checkbtn6:checked ~ label .quitter4 {
    left: 76%;
  }

  #checkbtn:checked ~ label .quitter {
    left: 77%;
    transition: all 0.8s ease-in-out;
    position: fixed;
  }

  .description {
    margin-right: 0;
  }

  .sub-links {
    column-gap: 10px;
    padding: 10px 0;
  }

  .lordicon {
    height: 30px !important;
    width: 30px !important;
  }

  .sub-links .description span {
    font-size: 12px;
  }

  /* .sub-links img {
        height: 100px;
    } */

  header {
    display: none;
  }

  .formulaire_name {
    flex-direction: column;
    width: 100%;
  }

  #last_name,
  #first_name {
    width: 60%;
  }

  .copyright {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }

  .message_label {
    font-size: 21px;
  }

  /* .small_images_categorie{
        width: 10rem;
      } */
  .banner_component h2 {
    font-size: 14px;
  }

  .product_carousel_home .small_images {
    height: auto !important;
  }

  .home2 img {
    width: 100%;
    height: 40vh;
  }

  .home2 .slick-next,
  .home2 .slick-prev {
    display: none !important;
  }
  .container_category {
    width: 90% !important;
    height: auto !important;
    margin: 20px auto;
  }
}

@media (max-width: 349px) {
  /* .small_images_categorie {
      width: 80%;
    } */
  .small_images_all {
    width: 16rem !important;
    height: auto;
  }

  .small_images_all .slick-slide {
    width: 16rem !important;
  }

  .all_products_container {
    padding: 2rem 4%;
  }

  /* .home2 img {
        width: 100%;
        height: 30vh;
    } */

  .banner_component h2 {
    text-align: center;
  }
}
.modali {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
  background: #ffffff;
  border: 1px solid #eaecef;
  border-image: initial;
  border-radius: 10px;
  pad: 10px;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  /* border: 2px solid var(--BlueSkyColor-hover);
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  color: #717171;
  margin-top: 20px; */
}
.input_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.input_container input,
.input_container select {
  /* text-align: left; */
  border: 1px solid var(--BlueSkyColor-hover);
  height: 50px;
  width: 50% !important;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 14px;
  background-color: transparent;
  outline: none;
  color: var(--ColorBody);
  background: #ffffff;
  border-image: initial;
  border-radius: 8px;
/* border: 1px solid #e4e7ed; */
}
/* .input_container > input {
  margin-bottom: 20px;
} */
#tab-3,
#tab-5 {
  display: none;
}

#tab-3 ~ label,
#tab-5 ~ label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 42px;
  cursor: pointer;
  border-bottom: 2px solid var(--BlueSkyColor-hover);
  padding: 0 10px;
  margin-top: 15px;
}

.radio-group,
.radio-group1 {
  max-height: 500px; /* adjust based on your content size */
  overflow: hidden;
   transition: max-height 0.6s ease, padding 0.6s ease;
}

#tab-3:checked ~ .radio-group,
#tab-5:checked ~ .radio-group1 {
 max-height: 0;
  padding: 0 !important;
  margin-bottom: 0;
}

.label-span {
  font-size: 16px;
  position: relative;
  color: #0a0a0a;
  font-weight: 500;
}

#tab-3:checked ~ label ~ .radio-group,
#tab-5:checked ~ label ~ .radio-group1 {
  height: 0px;
  overflow: hidden;
}

#tab-3:checked ~ label .upperdown .upper,
#tab-5:checked ~ label .upperdown .upper {
  display: block;
}

#tab-3:checked ~ label .upperdown .down,
#tab-5:checked ~ label .upperdown .down {
  display: none;
}

.upper {
  display: none;
}

.upper i,
.down i {
  font-size: inherit;
  color: var(--BlueSkyColor-hover);
}
#judecheckout_show_hide {
  /* background: #fcfcfc;
  padding: 10px;
  margin-top: 0; */
  position: relative;
  display: block;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 20px 0;
  background: #fafbfc;
}

#judecheckout_show_hide table {
  margin-bottom: 0;
  width: 100% !important;
}

#judecheckout_count_number {
  display: inline-block;
  font-size: 12px;
  height: 18px;
  line-height: 18px;
  padding: 0 3px;
  background-color: var(--BlueSkyColor-hover);
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
}

#judecheckout_count_number:before {
  content: "x ";
}

#judecheckout_d_free span {
  display: inline-block;
  font-size: 15px;
  height: 20px;
  line-height: 20px;
  padding: 0 7px;
  background-color: #685f59;
  border-radius: 3px;
  color: #fff;
}

.summary-product-title {
  font-weight: bold !important;
  color: #0a0a0a;
}

.summary-select-state {
  font-size: 14px;
  opacity: 0.8;
}

.judecheckout_currency {
  display: none;
}

#shipping-methods {
  font-size: 14px;
  margin-left: 10px;
  opacity: 0.75;
}

#judecheckout_show_hide table tbody tr {
  background: #fafbfc;
}

#judecheckout_show_hide .variation-prices .crossed-price bdi {
  font-weight: normal;
  color: #aeaeae;
}

#judecheckout_show_hide td {
  border: none;
  border-bottom: 2px dotted #0a0a0a;
  text-align: center;
  padding: 10px 5px 10px;
}

#judecheckout_show_hide .full-price td {
  font-weight: bold;
  border-bottom: 0;
}

#judecheckout_show_hide .full-price td:last-child {
  color: #685f59;
}

@media (max-width: 500px) {

  .input_container input,
  .input_container select,
  .iti--separate-dial-code {
    width: 100% !important;
    margin: 0 !important;
    /* margin-bottom: 20px !important; */
  }
  .credit-card-info--form {
    margin-top: 20px;
  }



  .prodDetailAddCart button {
    font-size: 15px;
  }

  .input_container{
    margin-top: 0;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }


  .whatsapp-order-section {
    display: none !important;
  }

  .whatsapp-order-section-2 {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-order-section-2 #whatsapp-orders {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(37, 211, 102);
    color: #fff !important;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 4px 0px;
  }


  .choix {
    width: 100%;
  }

  .dispo-product1, .dispo-product{
    width: 100%;
  }

  .dispo-product {
    flex-direction: column;
  }

  #add-to-cart-form .add-to-cart {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10px 20px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    margin: 0 !important;
  }

  .buy {
    margin: 0 !important;
  }

  .dispo-product1 {
    text-align: center !important;
  }

  #add-to-cart-form .add-to-cart {
    gap: 10px !important;
  }

  .option_div {
    flex-direction: column;
  }
}

@media (max-width: 370px) {
  .whatsapp-order-section .whatsapp1{
		font-size: 10px;
	}
}
/* .whatsapp-order-section #whatsapp-orders {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 70%;
  margin: auto;
  border: 2px solid transparent;
  padding: 9px 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-top: 20px;
  background: #25d466;
  cursor: pointer;
}
.whatsapp-order-section #whatsapp-orders span {
  font-size: 13px;
}
.whatsapp-order-section #whatsapp-orders:hover {
  background-color: #fff;
  color: #25d466;
  border-color: #25d466;
}
.whatsapp-order-section #whatsapp-orders > i {
  color: #25d466;
  opacity: 0;
  visibility: hidden;
}
.whatsapp-order-section #whatsapp-orders:hover > i {
  opacity: 1;
  visibility: visible;
} */


.whatsapp-order-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-order-section-2 {
  display: none;
}

.whatsapp-order-section #whatsapp-orders {
  width: 54px;
  height: 54px;
  position: fixed;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(37, 211, 102);
  color: #fff !important;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.whatsapp-order-section #whatsapp-orders:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}


.grecaptcha-badge {
  display: none;
}


.iti--separate-dial-code {
  margin: 0 !important;
  width: 50%;
}

.input_container input:focus, .input_container select:focus {
  border-color: red;
  box-shadow: 0 0 4px red;
}
/* Download pdf button  */
.telecharger {
  width: 100%;
  border-radius: 13px;
  background: #f5f5f5;
  align-items: baseline;
  padding: 12px 12px 16px 22px;
}
.pdf_file_container {
  display: flex;
  gap: 10px;
  margin: 5px;
  width: 100%;
}
.noselect {
  width: 150px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  /* background: red; */
  border: none;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  background: var(--BlueSkyColor-hover);
  overflow: hidden;
}

.noselect,
.noselect span {
  transition: 200ms;
}

.noselect .text {
  /* transform: translateX(35px); */
  color: white;
  font-weight: bold;
  padding-left: 5px;
  width: 110px;
  overflow: hidden;
}

.noselect .icon {
  position: absolute;
  border-left: 1px solid #a87f6a;
  transform: translateX(110px);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noselect img {
  height: 25px;
  width: 25px;
}

.noselect:hover {
  background: var(--BlueSkyColor-hover);
}

.noselect:hover .text {
  color: transparent;
}

.noselect:hover .icon {
  width: 150px;
  border-left: none;
  transform: translateX(0);
}

.noselect:focus {
  outline: none;
}

.noselect:active .icon img {
  transform: scale(0.8);
}
html {
  visibility: visible;
  opacity: 1;
}



/********** paiment *****/
/* Payment Methods Styles */
.payment-methods-container {
  background: var(--background-color);
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
}

/* Animation for selection */
@keyframes select-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

.payment_logo {
  width: 18px;
  object-fit: contain;
  margin-left: 4px;
}

.payment-name {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  text-align: center;
  margin-left: 10px;
}

.payment-method-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  padding: 0 5px;
  gap: 10px;
}
#cib-conditions-container {
  display: none;
  margin: 8px 15px;
  padding: 12px 15px;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid rgb(232, 232, 232);
  transition: 0.3s;
  margin-bottom: 0px;
}


#pickup-options, #home-delivery-options {
  margin-top: 10px;
  font-size: 16px;
}


.input-radio {
  color: var(--ColorBody);
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
  position: absolute;
}

.input-radio label,
.input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"] + label span,
.input-checkbox input[type="checkbox"] + label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #e4e7ed;
  background: #fff;
}

.input-radio input[type="radio"] + label span {
  border-radius: 50%;
}

.input-radio input[type="radio"] + label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #fff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"] + label span:after {
  content: "✔";
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #fff;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked + label span,
.input-checkbox input[type="checkbox"]:checked + label span {
  background-color: var(--ColorBody);
  border-color: var(--ColorBody);
}

.input-radio input[type="radio"]:checked + label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked + label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked ~ .caption,
.input-checkbox input[type="checkbox"]:checked ~ .caption {
  max-height: 800px;
}



.deliveryContainer {
  margin: 20px 0;
  text-align: start;
}


#pickup-options .input-radio, #home-delivery-options .input-radio {
  position: relative;
  display: block;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fafbfc;
}


#pickup-options .input-radio input,
#home-delivery-options .input-radio input {
  appearance: none;
  position: absolute;
  line-height: 0;
	margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#pickup-options .input-radio input::after,
#home-delivery-options .input-radio input::after {
  content: "";
  position: relative !important;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  top: 0;
  left: 0;
}

#pickup-options .input-radio input:checked::after,
#home-delivery-options .input-radio input:checked::after {
  background-color: var(--ColorBody);
}






.stockleft {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(25,118,210,.08);
  color: #0d47a1;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 0 0 3px #1976d2 inset;
  text-align: center;
  gap: 5px;
  height: 30px;
}

.dispo-product1 {
  text-align: start;
  display: none;
}


.dispo-product{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.info-product{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}



/*********** new style of variant ****************/
.smallFormWrapper {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
  border: 1px solid #eaecef;
  border-radius: 10px;
  pad: 10px;
  padding: 14px;
  /* text-align: center; */
  font-size: 14px;
}


/* Layout container */
.modali-variants {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 16px;
  border: 1px solid #eceff1;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  /* margin: 16px 0 50px; */
}

/* Title */
.modali-variants__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
}

.product-available {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(25, 118, 210, .08);
  color: #0d47a1;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  /* line-height: inherit !important; */
  box-shadow: 0 0 0 3px #1976d2 inset;
  height: 30px;
}

#add-to-cart-form .add-to-cart {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-inline: 10px;
  margin: 15px 0;
  gap: 20px;
}
/* success popup */
#success-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#success-popup-overlay.show {
  display: flex !important;
}

#success-popup {
  background: #fff;
  flex: 1 0 0;
  max-width: 650px;
  min-width: 500px;
  border-radius: 25px;
  padding: 55px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#success-popup .sp-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #7f6051;
  line-height: 1;
}

#success-popup .success-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 14px;
  line-height: 1.4;
}

#success-popup .success-msg {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}
/* end success popup */

/* newsletter section */
#success-popup .newsletter-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

#success-popup .newsletter-title {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

#success-popup #sp-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#success-popup #sp-email-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

#success-popup #sp-email-input:focus {
  border-color: var(--text-color);
}

#success-popup #sp-newsletter-btn {
  background: #7f6051;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}

#success-popup #sp-newsletter-btn:disabled {
  background: #a8e6c1;
  cursor: not-allowed;
}

#success-popup .newsletter_message_popup {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  min-height: 16px;
}

@media (max-width: 540px) {
  #success-popup {
    min-width: 0;
    width: 90%;
    padding: 40px 24px;
  }
}
/* end newsletter section */
