/*------------------------------------------------------------------
Project:  
Version:  
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/Poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Light;
  src: url('../fonts/Poppins/Poppins-Light.ttf'); 
}

@font-face {
  font-family: Poppins-ExtraLight;
  src: url('../fonts/Poppins/Poppins-ExtraLight.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/Poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Italic;
  src: url('../fonts/Poppins/Poppins-Italic.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/Poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/Poppins/Poppins-SemiBold.ttf'); 
}


/*---------------------------------------------*/
@font-face {
  font-family: PlayfairDisplay-Regular;
  src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Regular.ttf'); 
}

@font-face {
  font-family: PlayfairDisplay-Bold;
  src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Bold.ttf'); 
}

/*---------------------------------------------*/
@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/Montserrat/Montserrat-Regular.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/Montserrat/Montserrat-Bold.ttf'); 
}


/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/

/*------------------------------------------------------------------
[ Bootstrap ]*/
.container {max-width: 1380px;}

@media (max-width: 1600px) {
  .container {max-width: 1300px;}
}

/*------------------------------------------------------------------
[ Slick2 ]*/
.slick-slide {outline: none !important;}


/*//////////////////////////////////////////////////////////////////
[ LOADDING ]*/
.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader05 {
  width: 56px;
  height: 56px;
  border: 4px solid #717fe0;
  border-radius: 50%;
  position: relative;
  animation: loader-scale 1s ease-out infinite;
  top: 50%;
  margin: -28px auto 0 auto; 
}

@keyframes loader-scale {
  0% {
    transform: scale(0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 0; } 
}

/*//////////////////////////////////////////////////////////////////
[ BUTTON BACK TO TOP ]*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 38px;
  bottom: 20px; 
  left: 20px;
  background-color: #ff0000;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 25px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  background-color: #ff0000;
}

@media (max-width: 575px) {
  .btn-back-to-top {
    bottom: 20px;
    right: 10px;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Header ]*/

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Desktop ]*/

.container-menu-desktop {
  height: auto;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.header-v2 .container-menu-desktop {
  height: 84px;
}

.header-v3 .container-menu-desktop {
  height: auto;
}

.header-v4 .container-menu-desktop {
  height: 124px;
}
/*---------------------------------------------*/
/* Barra superior */
.top-bar {
  height: 39px;
  background-color: #ebebeb;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 20px;
}

.left-top-bar {
  display: flex; 
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.left-top-bar ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.left-top-bar i {
  font-size: 11px; 
  color: #888888; 
  transition: color 0.3s; 
}

.left-top-bar i:hover {
  color: #797777; 
}

.right-top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.right-top-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.right-top-bar li {
  margin-left: 0;
}

.right-top-bar a {
  font-family: Poppins-Regular;
  font-size: 11px;
  line-height: 1.8;
  color: #444343;
  text-decoration: none;
  transition: color 0.3s;
}

.right-top-bar a:hover {
  color: #797777;
}

/*---------------------------------------------*/
.topbar-mobile li {
  padding: 8px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background-color: #222;
}

/*==================================================================
[ Menu ]*/

.wrap-menu-desktop {
  position: fixed;
  z-index: 1100;
  background-color: transparent;
  width: 100%;
  height: 84px;
  top: 39px;
  left: 0px; 
  background-color: rgba(255, 255, 255, 1); /* Fondo blanco sólido */
  box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2); /* Sombra ligera */
  -moz-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);


  -webkit-transition: height 0.3s, background-color 0.3s;
  -o-transition: height 0.3s, background-color 0.3s;
  -moz-transition: height 0.3s, background-color 0.3s;
  transition: height 0.3s, background-color 0.3s;
}

.header-v2 .wrap-menu-desktop {
  background-color: #fff;
  top: 0;
}

.header-v3 .wrap-menu-desktop {
  background-color: transparent;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-v4 .wrap-menu-desktop {
  background-color: #fff;
}


/*---------------------------------------------*/
.limiter-menu-desktop {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
}



/*------------------------------------------------------------------
[ Logo ]*/
.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 35%;
  margin-right: 60px;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
}
/*------------------------------------------------------------------
[ Logo mobile ]*/
.logo-mobile {
  display: block;
  position: relative;
  height: 70%;
  padding-right: 25px;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  flex-grow: 1;
}

.logo-mobile img {
  max-width: calc(100% - 20px);
  max-height: 100%;
  position:absolute;
  top: 0; 
  left: 0; 
  bottom: 0;
  margin: auto;
}




/*------------------------------------------------------------------
[ Menu ]*/

.menu-desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu {
  list-style-type: none;
  margin: 0;
text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.main-menu > li {
  display: block;
  position: relative;
  padding: 20px 10px 20px 0px;
  margin: 0px 4px 0px 20px;
}

.main-menu > li > a {
  font-family: Poppins-Medium;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  padding: 5px 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.header-v3 .main-menu > li > a {
  color: #fff;
}

/*---------------------------------------------*/
.sub-menu {
  list-style-type: none;
  position: absolute;
  top:0;
  left:100%;
  min-width: 178px;
  max-width: 225px;
  background-color: #fff;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  padding: 5px 0;

  box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);

  visibility: hidden;
  opacity: 0; 
}

.sub-menu li {
  position: relative;
  background-color: transparent;

  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.main-menu > li > .sub-menu {
  top:100%;
  left: 0;
}

.sub-menu a {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #555;

  display: block;
  padding: 8px 20px; 
  width: 100%;

  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

/*---------------------------------------------*/
.main-menu > li:hover > a {
  text-decoration: none;
  color: #000000d0;
}

.main-menu > li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}

.sub-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
} 

.sub-menu li:hover {
  background-color: transparent;
}

.sub-menu > li:hover > a {
  color: #6c7ae0;
  text-decoration: none;
}

@media (max-width: 1300px) {
  .main-menu > .respon-sub-menu .sub-menu {
    right: 100%;
    left: auto;
  }

  .main-menu > .respon-sub-menu > .sub-menu {
    right: 0px;
    left: auto;
  }
}

/*------------------------------------------------------------------
[ Icon header ]*/

.wrap-icon-header {
  flex-grow: 1;
}

.icon-header-item {
  position: relative;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.custom-icon i {
  font-size: 17px;
}


/*---------------------------------------------*/
.icon-header-noti::after {
  content: attr(data-notify);
  font-family: Poppins-Regular;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  text-align: center;
border-radius: 20px;
  display: block;
  position: absolute;
  top: -7px;
  right: 0;
  min-width: 20px;
  height: 20px;
  padding: 0 3px;
  background-color: #ff0000;
}

/*---------------------------------------------*/
.wrap-header-mobile .wrap-icon-header {
  flex-grow: unset;
}


/*------------------------------------------------------------------
[ Modal search ]*/
.modal-search-header {
  position: fixed;
  z-index: 2000;
  width: 100%;
  height: 100%;
  bottom: 101%;
  left: 0;
  background-color: rgba(255,255,255,0.9);
  padding: 50px 15px 100px 15px;
}

.show-modal-search {
  bottom: 0;
}

.container-search-header {
  width: auto;
  max-width: 100%;
  position: relative;
}

/*---------------------------------------------*/
.btn-hide-modal-search {
  position: absolute;
  padding: 5px;
  right: 0;
  top: -45px;
  opacity: 0.8;
}

.btn-hide-modal-search:hover {
  opacity: 1;
}

.wrap-search-header {
  width: 960px;
  max-width: 100%;
  height: 120px;
  border: 2px solid #e6e6e6;
  background: #fff;
}

/*---------------------------------------------*/
.wrap-search-header input {
  font-family: Poppins-ExtraLight;
  font-size: 25px;
  line-height: 1.2;
  color: #333;
  
  padding: 0px 30px 0px 0px;
  width: calc(100% - 70px);
  height: 100%;
  background-color: transparent;
}

.wrap-search-header button {
  font-size: 50px;
  color: #333;
  width: 70px;
  height: 100%;
}

.wrap-search-header button:hover {
  color: #ff0000;
}
.modal-search-header .wrap-search-header button i {
  font-size: 25px;
}
/*---------------------------------------------*/
@media (max-width: 767px) {
  .wrap-search-header input,
  .wrap-search-header button {
    font-size: 30px;
  }

  .wrap-search-header {
    height: 90px;
  }
}

@media (max-width: 575px) {
  .wrap-search-header input,
  .wrap-search-header button {
    font-size: 20px;
  }

  .wrap-search-header button {
    width: 40px;
  }

  .wrap-search-header {
    height: 80px;
  }
}


/*==================================================================
[ Fixed menu desktop ]*/

.fix-menu-desktop .wrap-menu-desktop {
  height: 70px;
  background-color: rgba(255,255,255,1);
  box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
}

.header-v2 .fix-menu-desktop.container-menu-desktop {
  height: 70px;
}

.header-v3 .fix-menu-desktop .wrap-menu-desktop {
  background-color: #222;
  border-color: #222;
}

.header-v4 .fix-menu-desktop.container-menu-desktop {
  height: 110px;
}

/*---------------------------------------------*/
.main-menu > li.active-menu > a {
  color: #ff0000;
}



/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Mobile ]*/
.wrap-header-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 70px;
  background-color: #fff;
  padding: 15px;
  display: none;

  box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
}


/*------------------------------------------------------------------
[ btn show menu ]*/
.hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
}

.hamburger:hover {
  opacity: 1;
}

/*---------------------------------------------*/
@media (max-width: 1075px){
  .wrap-header-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .container-menu-desktop {display: none;}
}
.icon-header-item {
  display: flex;
  align-items: center;
    transition: color 0.3s;

}


.icon-text {
  margin-left: 8px;
  font-size: 13px;
  color: #333; 
  transition: color 0.3s; 
  
}

.icon-header-item:hover i,
.icon-header-item:hover .icon-text {
    color: #ff0000;
}
/*==================================================================
[ Menu mobile ]*/
.menu-mobile {
  width: 100%;
  background-color: white;
  display: none;
}

.main-menu-m {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ffffff;
}

.main-menu-m > li > a {
  font-family: Poppins-Medium;
  font-size: 14px;
  color: rgb(19, 19, 19);
  line-height: 2.0;
  padding: 1px 20px 1px 20px;
}

.main-menu-m > li {
  color: white;
  position: relative;
}

.arrow-main-menu-m {
  font-size: 14px;
  color: rgb(19, 19, 19);

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 2px;
  padding: 10px;
  cursor: pointer;
}

.arrow-main-menu-m i {
  transform-origin: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.turn-arrow-main-menu-m i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*---------------------------------------------*/
.sub-menu-m {
  background-color: #fff;
  padding: 1px 15px 1px 30px;
  display: none;
}

.sub-menu-m a {
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #666;
  line-height: 2.5;
  padding: 5px 0 5px 0;
}

.sub-menu-m a:hover {
  text-decoration: none;
  color: #555555;
}

@media (min-width: 992px){
  .menu-mobile {
    display: none;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Sidebar ]*/
.wrap-sidebar {
  position: fixed;
  z-index: 1100;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: rgba(0,0,0,0.0);
  visibility: hidden;
  
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;  
  transition: all 0.4s;
}

.sidebar {
  position: fixed;
  z-index: 1100;
  width: 320px; 
  max-width: calc(100% - 30px); 
  height: 100vh;
  top: 0;
  right: -310px; 
  background-color: #fff;
  
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;  
  transition: all 0.4s;

  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
}
.show-sidebar {
  visibility: visible;
  background-color: rgba(0,0,0,0.6);
}

.show-sidebar .sidebar {
  right: 0;
}

@media (max-width: 991px) {
  .wrap-sidebar {
    display: none;
  }
}
.sidebar-link i {
  margin-right: 25px; 
  vertical-align: middle; 
  color: #999999; 

}


/*---------------------------------------------*/
.sidebar-content {
  flex-grow: 1;
  overflow: auto;
  align-content: space-between;
}

/*---------------------------------------------*/
.wrap-item-gallery {
  width: calc((100% - 20px) / 3);
}

.item-gallery {
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.item-gallery::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(103,117,214,0.8);
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.34;  
  transition: all 0.4s;
}

.item-gallery:hover:after {
  opacity: 1;
}


/*//////////////////////////////////////////////////////////////////
[ Header cart ]*/
.wrap-header-cart {
  position: fixed;
  z-index: 1100;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: rgba(0,0,0,0.0);
  visibility: hidden;
  
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;  
  transition: all 0.4s;
}

.header-cart {
  position: fixed;
  z-index: 1100;
  width: 400px;
  max-width: calc(100% - 30px);
  height: 100vh;
  top: 0;
  right: -400px;
  background-color: #fff;
  
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.34;  
  transition: all 0.4s;

  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
}

.header-cart::after {
  content: "";
  display: block;
  width: 100%;
  height: 9%;
  min-height: 30px;
}

.show-header-cart {
  visibility: visible;
  background-color: rgba(0,0,0,0.6);
}

.show-header-cart .header-cart {
  right: 0;
}


/*---------------------------------------------*/
.header-cart-title {
  width: 260px;
  max-width: 100%;
  height: 16.5%;
  min-height: 85px;
}

.header-cart-content {
  flex-grow: 1;
  overflow: auto;
  align-content: space-between;
}

.header-cart-wrapitem {
  flex-grow: 1;
}

/*---------------------------------------------*/
.header-cart-item-img {
  width: 70px;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

.header-cart-item-img img {
  width: 100%;
}




/*---------------------------------------------*/
.header-cart-item-txt {
  width: calc(100% - 80px);
}

.header-cart-item-name {
  display: block;
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #555;
  line-height: 1.3;
}

.header-cart-item-info {
  display: block;
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.header-cart-total {
  font-family: Poppins-Regular;
  font-size: 18px;
  color: #222;
  line-height: 1.3;
}

/*---------------------------------------------*/
@media (max-width: 575px) {
  .header-cart {
    padding: 30px;
  }

  .header-cart-title {
    padding-bottom: 35px;
  }
}
/*//////////////////////////////////////////////////////////////////
[ Header filter ] */
.wrap-header-filter {
  position: fixed;
  z-index: 1100;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.0);
  visibility: hidden;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.header-filter {
  position: fixed;
  z-index: 1100;
  width: 340px; 
  max-width: calc(100% - 40px); 
  height: 100vh;
  top: 0;
  right: -340px; 
  background-color: #fff;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
}

.header-filter::after {
  content: "";
  display: block;
  width: 100%;
  height: 9%;
  min-height: 30px;
}

.show-header-filter {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.6);
}

.show-header-filter .header-filter {
  right: 0; 
}


.header-filter-title {
  width: 100%;
  padding-left: 25px; 
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  max-width: 100%;
  height: auto;
  min-height: 85px;
}

.header-filter-content {
  flex-grow: 1;
  overflow: auto;
  align-content: space-between;
  padding-left: 25px; 
  padding-right: 25px;
  width: 100%;
}

.header-filter-wrapitem {
  flex-grow: 1;
  width: 100%;
}

.header-filter-item-txt {
  width: 100%;
}

.header-filter-item-name {
  display: block;
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #555;
  line-height: 1.3;
}

.header-filter-item-info {
  display: block;
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.header-filter-total {
  font-family: Poppins-Regular;
  font-size: 18px;
  color: #222;
  line-height: 1.3;
}

.price-filter-button button {
  width: 100%; 
}
.price-range-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}

.price-range-group {
  display: flex;
  flex-direction: column;
}

.price-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #ff0000;
  outline: none;
  opacity: 0.9;
  transition: opacity 0.2s;
  border-radius: 5px;
}

.price-range:hover {
  opacity: 1;
}

.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ff0000;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
}

.price-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ff0000;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
}

.price-display {
  text-align: center;
}

/*---------------------------------------------*/
/* Estilo específico para los checkboxes de esta sección */
.custom-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ff0000;
}

.custom-checkbox:hover {
  filter: brightness(0.9);
}

/*---------------------------------------------*/
@media (max-width: 575px) {
  .header-filter {
    width: 280px; /* Ancho ajustado para pantallas pequeñas */
    right: -280px; /* Alinear con el nuevo ancho */
    padding: 15px;
  }

  .header-filter-title {
    padding-bottom: 20px;
  }

  .header-filter-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Separador entre secciones del filtro */
.filter-separator {
  border: none;
  height: 1px;
  background-color: #e0e0e0; /* Color de la línea */
  margin: 20px 0; /* Espaciado vertical */
}
.color-label {

  border: 2px solid transparent; /* Borde inicial transparente */
  border-radius: 40px; /* Bordes redondeados */
  transition: all 0.3s ease;
  overflow: hidden; /* Para ajustar la imagen dentro del contenedor */
}

.color-option1 .color-label {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-radius: 50%; 
  cursor: pointer;
  border-color: #cfcece; 
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.color-option1 .color-label.selected {
  border-color: #ff0000; 
}
.color-label input[type="radio"] {
  display: none; /* Ocultar el input */
}

.color-label .color-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5; /* Fondo del contenedor */
}

.color-label .color-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mostrar la imagen completa dentro del contenedor */
}

.color-label input[type="radio"]:checked + .color-container {
  border: 2px solid #ff0000; /* Resaltar contenedor cuando está seleccionado */
  background-color: #ffe6e6; /* Fondo más claro para resaltar */
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}





/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/

.rs1-select2 .select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.rs1-select2 .select2-container .select2-selection--single {
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  background-color: transparent;
  border-radius: 0px;
  position: relative;
}

/*------------------------------------------------------------------
[ in select ]*/
.rs1-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #555;
  line-height: 1.2;
  padding-left: 20px;
  background-color: transparent;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 38px;
  height: 20px;
  top: calc(50% - 10px);
  right: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e6e6e6;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "\f0dc";
  font-family: FontAwesome;
  font-size: 13px;
  color: #808080;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow:hover:after {
  color: #e06c6c;
}


/*------------------------------------------------------------------
[ Dropdown option ]*/
.rs1-select2 .select2-container--open .select2-dropdown {
  z-index: 1251;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 0px;
  overflow: hidden;
  background-color: white;
  left: 0px;

  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.rs1-select2 .select2-dropdown--above {top: -2px;}
.rs1-select2 .select2-dropdown--below {top: 2px;}

.rs1-select2 .select2-container .select2-results__option[aria-selected] {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected="true"] {
  background: #858585;
  color: white;
}

.rs1-select2 .select2-container .select2-results__option--highlighted[aria-selected] {
  background: #ff0000;
  color: white;
}

.rs1-select2 .select2-results__options {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #555;
  line-height: 1.2;
}

.rs1-select2 .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #555;
  line-height: 1.2;
}

/*------------------------------------------------------------------
[ rs2 ]*/
.rs2-select2 .select2-container .select2-selection--single {
  height: 40px;
}

.rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 35px;
  right: 0px;
  border-left: none;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "\f0d7";
}
.carousel-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.desktop-banner {
  display: block !important;
}

.mobile-banner {
  display: none !important;
}

@media (max-width: 648px) {
  .desktop-banner {
    display: none !important;
  }

  .mobile-banner {
    display: block !important;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Slick1 ]*/
.wrap-slick1 {
  position: relative;
}

.item-slick1 {
  height: calc(100vh - 40px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.rs1-slick1 .item-slick1 {
  height: calc(100vh - 84px);
}

.rs2-slick1 .item-slick1 {
  height: 100vh;
}

@media (max-width: 991px) {
  .item-slick1 {
    height: calc(100vh - 70px) !important;
  }
}

.arrow-slick1 {

  width: 50px; 
  height: 80px; 
  background-color: #d6d5d585; 
  font-size: 50px; 
  color: #fff; 
  
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  opacity: 0;
  
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);

  z-index: 200;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
  opacity: 1;
}

.arrow-slick1:hover {
  color: #ffffff;
}

.next-slick1 {
  right: 0px;
  left: auto;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0; 
  border-bottom-right-radius: 0;
}

.prev-slick1 {
  left: 0px;
  right: auto;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px; 
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media (max-width: 991px) {
  .next-slick1 {
    right: 0px;
  }

  .prev-slick1 {
    left: 0px;
  }
}

/*---------------------------------------------*/
.rs2-slick1 .arrow-slick1 {
  color: rgba(255,255,255,0.3);
}

.rs2-slick1 .arrow-slick1:hover {
  color: #ffffff;
}

.wrap-slick1-dots {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 60px;
}

.slick1-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.slick1-dots li {
  max-width: 190px;
  position: relative;
  cursor: pointer;
  margin-right: 1px;
}

.slick1-dots li img {
  width: 100%;
}

.caption-dots-slick1 {
  font-family: Poppins-ExtraLight;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  text-align: center;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  padding: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.slick1-dots li:hover .caption-dots-slick1 {
  opacity: 1;
}

.slick1-dots li.slick-active .caption-dots-slick1 {
  opacity: 1;
}

@media (max-width: 575px) {
  .caption-dots-slick1 {
    font-size: 13px;
  }

  .wrap-slick1-dots {
    bottom: 25px;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Slick2 ]*/

.wrap-slick2 {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; 
  height: 45px; 
  background-color: #a0a0a07a; 
  border-radius: 50px; 
  font-size: 20px; 
  color: #fff; 
  transition: all 0.4s ease;
}


.arrow-slick2:hover {
  background-color:#b9b8b87a; 
  color: #fff; 
}

.next-slick2 {
  right: 15px; 
}

.prev-slick2 {
  left: 15px; 
}

@media (max-width: 1300px) {
  .next-slick2 {
    right: 0px;
  }

  .prev-slick2 {
    left: 0px;
  }
}

.arrow-slick7 {
  position: absolute;
  z-index: 100;
  top: calc((100% - 60px) / 2);
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  background-color: #ff0000; 
  border: none;
  border-radius: 50%; 
  width: 30px; 
  height: 30px; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.arrow-slick7:hover {
  background-color: rgb(255, 0, 55); 
}

.prev-slick7 {
  left: -60px; 
}

.next-slick7 {
  right: -60px; 
}

@media (max-width: 1300px) {
  .prev-slick7 {
      left: 0;
  }

  .next-slick7 {
      right: 0;
  }
}

/*//////////////////////////////////////////////////////////////////
[ Slick3 ]*/
.wrap-slick3 {
  position: relative;
}

/*---------------------------------------------*/
.wrap-slick3-arrows {
  position: absolute;
  z-index: 100;
  width: 83.333333%;
  right: 0;
  top: calc(50% - 20px);
}

.arrow-slick3 {
  font-size: 25px;
  color: #fff;
  
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(0,0,0,0.5);

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.arrow-slick3:hover {
  background-color: rgba(0,0,0,0.9);
}

.prev-slick3 {left: 0px;}
.next-slick3 {right: 0px;}

/*---------------------------------------------*/
.wrap-slick3-dots {
  width: 11.111111%;
}

.slick3 {
  width: 83.333333%;
}

.slick3-dots li {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 27px;
}

.slick3-dots li img {
  width: 100%;
}

.slick3-dot-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.slick3-dot-overlay:hover {
  border-color: #ccc;
}

.slick3-dots .slick-active .slick3-dot-overlay {
  border-color: #ccc;
}

/* [Slick5] */
.wrap-slick5 {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}
/* ------------------------------------ */
.arrow-slick5 {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; 
  height: 45px; 
  background-color: #a0a0a07a; 
  border-radius: 50px; 
  font-size: 20px; 
  color: #fff; 
  transition: all 0.4s ease;
}

.arrow-slick5:hover {
  background-color:#b9b8b87a; 
  color: #fff; 
}

.next-slick5 {
  right: 15px; 
}

.prev-slick5 {
  left: 15px; 
}

@media (max-width: 1300px) {
  .next-slick5 {
    right: 5px;
  }

  .prev-slick5 {
    left: 5px;
  }
}

@media (max-width: 768px) {
  .sec-relate-product .item-slick5 {
      padding-left: 30px;
      padding-right: 30px;
  }
}

@media (max-width: 576px) {
  .sec-relate-product .item-slick5 {
      padding-left: 30px;
      padding-right: 30px;
  }
}

.no-arrows .arrow-slick5 {
  display: none !important;
}

/* [Slick6] */
.wrap-slick6 {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick6 {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; 
  height: 30px; 
  background-color: #ff0000; 
  border-radius: 5px; 
  font-size: 20px; 
  color: #fff; 
  transition: all 0.4s ease;
}

.arrow-slick6:hover {
  background-color: #ff0000; 
  color: #fff;
}

.next-slick6 {
  right: 15px; 
}

.prev-slick6 {
  left: 15px; 
}

@media (max-width: 1300px) {
  .next-slick6 {
    right: 0px;
  }

  .prev-slick6 {
    left: 0px;
  }
}


/* [Slick8] */
.wrap-slick8 {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick8 {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; 
  height: 45px; 
  background-color: #a0a0a07a; 
  border-radius: 50px; 
  font-size: 20px; 
  color: #fff; 
  transition: all 0.4s ease;
}

.arrow-slick8:hover {
  background-color:#b9b8b87a; 
  color: #fff; 
}

.next-slick8 {
  right: 15px; 
}

.prev-slick8 {
  left: 15px; 
}


/* [Slick9] */
.wrap-slick9 {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick9 {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; 
  height: 45px;
  background-color: #a0a0a07a; 
  border-radius: 50px; 
  font-size: 20px;
  color: #fff; 
  transition: all 0.4s ease;
}

.arrow-slick9:hover {
  background-color:#b9b8b87a; 
  color: #fff; 
}

.next-slick9 {
  right: 15px; 
}

.prev-slick9 {
  left: 15px; 
}


/* [Slick10] */
.wrap-slick10 {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick10 {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px; 
  background-color: #494949; 
  border-radius:50px; 
  font-size: 20px; 
  color: #fff; 
  transition: all 0.4s ease;
}

.arrow-slick10:hover {
  background-color:#494949;
  color: #fff; 
}

.next-slick10 {
  right: 1px; 
}

.prev-slick10 {
  left: 1px; 
}
/*//////////////////////////////////////////////////////////////////
[ RS Magnific-Popup ]*/
.mfp-bg {
  z-index: 10000;
  background-color: #000;
  opacity: 0.9;
}

.mfp-wrap {
  z-index: 10000;
}

.mfp-arrow:after,
.mfp-arrow:before {
  display: none;
}

.mfp-arrow {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

button.mfp-arrow-right {
  background-image: url(../images/icons/icon-next.png);
  background-position: center center;
  background-repeat: no-repeat;
}

button.mfp-arrow-left {
  background-image: url(../images/icons/icon-prev.png);
  background-position: center center;
  background-repeat: no-repeat;
}

button.mfp-close {
  width: 75px !important;
  height: 58px !important;
  line-height: 44px;
  position: fixed;
  right: 0;
  top: 0;
  color: transparent !important;
  background-image: url(../images/icons/icon-close.png);
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer !important;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.9;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}


/*//////////////////////////////////////////////////////////////////
[ Tab01 ]*/
.tab01 .nav-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: none;
}

.tab01 .nav-tabs .nav-item {
  margin: 0px 15px;
}

.tab01 .nav-link {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #888;
  line-height: 1.2;

  padding: 0;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid transparent;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.tab01 .nav-link.active {
  color: #333;
  border-color: #797979;
}

.tab01 .nav-link:hover {
  color: #333;
  border-color: #797979;
}



/*//////////////////////////////////////////////////////////////////
[ RS sweet alert ]*/
.swal-overlay {overflow-y: auto;}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
  background-color: #717fe0;
  font-family: Poppins-Regular;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  font-weight: unset;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.swal-button:hover {
  background-color: #333;
}

.swal-button:active {
  background-color: #333;
}

.swal-title {
  font-family: Poppins-Bold;
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  padding: 0 15px;
}

.swal-text {
  font-family: Poppins-Regular;
  color: #555555;
  font-size: 16px;
  line-height: 1.666667;
  text-align: center;
}

.swal-footer {
    margin-top: 0;
}
a.stext-107 {
  font-weight: bold; 
}

.footer-divider-top, .footer-divider-bottom {
  border: 0;
  border-top: 1px solid #e0e0e0; 
  margin: 0;
  padding: 0;
}

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

.footer-divider-bottom {
  margin-top: 20px;
}
.input-container {
  background-color: rgb(233, 233, 233);
  padding: 10px;
  border-radius: 50px; 
}

.input1 {
  background: none;
  border: none;
  outline: none;
  width: 100%;
}

.input1::placeholder {
  color: #7d7d7d;   
}


/*//////////////////////////////////////////////////////////////////
[ Filter ]*/
.show-search .icon-search,
.show-filter .icon-filter {display: none;}

.show-search .icon-close-search,
.show-filter .icon-close-filter {display: unset;}

.show-search,
.show-filter {
  background-color: #f2f2f2;
  border-color: #e7e7e7;
  position: relative;
}

.show-search::after,
.show-filter::after {
  content: "";
  position: absolute;
  display: block;

  width: 14px;
  height: 14px;
  background-color: #f2f2f2;
  border-left: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  
  transform-origin: center center;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);

  left: calc(50% - 7px);
  bottom: -8px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.show-search:hover:after,
.show-filter:hover:after {
  background-color: #717fe0;
  border-color: #717fe0;
}

/*---------------------------------------------*/
.filter-col1 {width: 27%;}
.filter-col2 {width: 27%;}
.filter-col3 {width: 26%;}
.filter-col4 {width: 20%;}

/*---------------------------------------------*/
.filter-link {
  color: #aaa;
  border-bottom: 1px solid transparent;
}

.filter-link:hover {
  color: #6c7ae0;
  border-bottom: 1px solid #6c7ae0;
}

.filter-link-active {
  color: #6c7ae0;
  border-bottom: 1px solid #6c7ae0;
}

@media (max-width: 767px) {
  .filter-col1,
  .filter-col2,
  .filter-col3,
  .filter-col4 {width: 50%;}
}

@media (max-width: 575px) {
  .filter-col1,
  .filter-col2,
  .filter-col3,
  .filter-col4 {width: 100%;}
}



/*//////////////////////////////////////////////////////////////////
[ Num Product ]*/
.wrap-num-product {
  width: 130px;
  height: 35px;
  border-radius: 20px;
  overflow: hidden;
}

.btn-num-product-down {
  width: 35px;
  height: 100%;
  border-radius: 20px 0 0 20px; 
  border-right: none; 
  cursor: pointer;
}

.btn-num-product-up {
  width: 35px;
  height: 100%;
  border-radius: 0 20px 20px 0; 

  border-left: none; 
  cursor: pointer;
}

.num-product {
  width: calc(100% - 90px);
  height: 100%;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  background-color: #f7f7f7;
}

input.num-product {
  -moz-appearance: textfield;
  appearance: none;
  -webkit-appearance: none;
}

input.num-product::-webkit-outer-spin-button,
input.num-product::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; 
}

/*//////////////////////////////////////////////////////////////////
[ Tolltip100 ]*/
.tooltip100 {
  position: relative;
}

.tooltip100::after {
  content: attr(data-tooltip);
  font-family: Poppins-Regular;
  font-size: 12px;
  color: #888;
  line-height: 18px;
  white-space: nowrap;

  display: block;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  height: 20px;
  padding: 0px 8px;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);

  box-shadow: 0 3px 6px 0px rgba(0,0,0,0.18);
  -moz-box-shadow: 0 3px 6px 0px rgba(0,0,0,0.18);
  -webkit-box-shadow: 0 3px 6px 0px rgba(0,0,0,0.18);
  -o-box-shadow: 0 3px 6px 0px rgba(0,0,0,0.18);
  -ms-box-shadow: 0 3px 6px 0px rgba(0,0,0,0.18);

  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  
  visibility: hidden;
  opacity: 0;
}

.tooltip100:hover:after {
  visibility: visible;
  opacity: 1;
}


/*//////////////////////////////////////////////////////////////////
[ Modal1 ]*/
.wrap-modal1 {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9000;
  overflow: auto;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  visibility: hidden;
  opacity: 0;
}

.overlay-modal1 {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}

.show-modal1 {
  visibility: visible;
  opacity: 1;
}

/*//////////////////////////////////////////////////////////////////
[ Table Shopping Cart ]*/

.wrap-table-shopping-cart {
  overflow: auto;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.table-shopping-cart {
  border-collapse: collapse;
  width: 100%;
  min-width: 680px;
}

.table-shopping-cart tr {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.table-shopping-cart .column-1 {
  width: 133px;
  padding-left: 50px;
}

.table-shopping-cart .column-2 {
  width: 220px;
  font-size: 15px;
}

.table-shopping-cart .column-3 {
  width: 120px;
  font-size: 16px;
}

.table-shopping-cart .column-4 {
  width: 145px;
  text-align: right;
}

.table-shopping-cart .column-5 {
  width: 172px;
  padding-right: 50px;
  text-align: right;
  font-size: 16px;
}

.table-shopping-cart .table_row {
  height: 185px;
}

.table-shopping-cart .table_row td {
  padding-bottom: 20px;
}

.table-shopping-cart .table_row td.column-1 {
  padding-bottom: 30px;
}

.table-shopping-cart .table_head th {
  font-family: Poppins-Bold;
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  line-height: 1.6;
  padding-top: 15px;
  padding-bottom: 15px;
}

.table-shopping-cart td {
  font-family: Poppins-Regular;
  color: #555;
  line-height: 1.6;
}



/*//////////////////////////////////////////////////////////////////
[ Block1 ]*/
.block1 {
  overflow: hidden;
  border-radius: 10px;
}

.block1-txt {
  background-color: rgba(103,117,214,0.0);
}

/*---------------------------------------------*/
.block1-name {color: #333;}
.block1-info {color: #555;}

/*---------------------------------------------*/
.block1-txt-child2 {
  border-bottom: 2px solid #fff;
  overflow: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}

.block1-link {
  -webkit-transform: translateY(250%);
  -moz-transform: translateY(250%);
  -ms-transform: translateY(250%);
  -o-transform: translateY(250%);
  transform: translateY(250%);
}

/*---------------------------------------------*/
.block1-txt:hover {
  background-color: rgba(202, 16, 16, 0.664);
}

.block1-txt:hover .block1-txt-child2 {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.block1-txt:hover .block1-link {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.block1-txt:hover .block1-name,
.block1-txt:hover .block1-info {
  color: #fff;
}

/*//////////////////////////////////////////////////////////////////
/* Estilo de la tarjeta Block2 */
.block2 {
  background-color: #fff;
  border-radius: 0px; 
  padding: 10px; 
  overflow: hidden; 
  position: relative; 
  transition: all 0.3s ease;
  z-index: 2; 
}


.block2:hover {
  z-index: 3; 
}

.block2-pic {
  position: relative;
  z-index: 3; 
  margin: -10px;

}
.block2 .buy-btn {
  width: 100%;
  border-radius: 0 0 10px 10px;
  font-weight: 500;
  box-sizing: border-box; 
  transition: all 0.5s ease;
  opacity: 0; 
  position: absolute; 
  bottom: -50px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.block2:hover .buy-btn {
  opacity: 1; 
  bottom: 0px; 
}

.block2:hover {
  padding-bottom: 50px; 
}


.size-availability {
  opacity: 0; 
  height: 0; 
  transition: opacity 0.5s ease, height 0.5s ease; 
  position: relative; 
  z-index: 4;
}

.block2:hover .size-availability {
  opacity: 1; 
  height: auto; 
}


.size-availability .sizes {
  display: grid;
  grid-template-columns: repeat(4, 30px); 
  gap: 8px;
  margin-top: 5px;
}

.size-availability .size {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px; 
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 0px;
  background-color: #ffffff9d;
  cursor: pointer;
  font-size: 12px;
}

.size-availability .size:hover {
  background-color: #ddd;
}

.size-availability .size.selected {
  background-color: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.timer-overlay {
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.3s ease, visibility 0.3s ease; 
}

.block2:hover .timer-overlay {
  opacity: 1; 
  visibility: visible; 
}

#product-image {
  width: 100%;
  height: auto;

}

.product-name-container {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3em;
  line-height: 1.5em; 
}


/*---------------------------------------------*/
.block2-txt-child1 {
  width: calc(100% - 30px);
}

.block2-txt-child2 {
  width: 30px;
}

.btn-addwish-b2 .icon-heart2 {
  opacity: 0;
}

.btn-addwish-b2:hover .icon-heart2 {
  opacity: 1;
}

.btn-addwish-b2:hover .icon-heart1 {
  opacity: 0;
}

.js-addedwish-b2 .icon-heart2 {
  opacity: 1;
}

.js-addedwish-b2 .icon-heart1 {
  opacity: 0;
}

/*---------------------------------------------*/
.label-new {
  position: relative;
}

.label-new::after {
  content: attr(data-label);
  font-family: Montserrat-Regular;
  font-size: 12px;
  color: #fff;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  min-width: 50px;
  height: 22px;
  border-radius: 11px;
  padding: 0 6px;
  background-color: #66a8a6;
  top: 42px;
  left: 12px;
}



/*==================================================================
    TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
==================================================================*/
.cl0 {color: #fff;}
.cl1 {color: #717fe0;}
.cl2 {color: #333;}
.cl3 {color: #525252;}
.cl4 {color: #8a8a8a;}
.cl5 {color: #222;}
.cl6 {color: #888;}
.cl7 {color: #b2b2b2;}
.cl8 {color: #555;}
.cl9 {color: #aaa;}
.cl10 {color: #1d1d1d;}
.cl11 {color: #f9ba48;}
.cl12 {color: #ccc;}
.cl13 {color: #ff0000;}
.cl14 {color: #393e6d;}
.cl15 {color: #ff0000;}
.cl16 {color: #348d00;}

.cl15:hover {
  color: #ff0000 !important;
}
.cl13 {
  text-transform: uppercase;
}
small {
  font-size: 12px;
}

.text-up {
  text-transform: uppercase;

}
/*//////////////////////////////////////////////////////////////////
[ S-Text 0 - 15 ]*/
.stext-101 {
  font-family: Poppins-Medium;
  font-size: 13px;
  line-height: 1.466667;
  text-transform: uppercase;
}

.stext-102 {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
}

.stext-103 {
  font-family: Poppins-Regular;
  font-size: 12px;
  line-height: 1.466667;
  text-transform: uppercase;

}

.stext-104 {
  font-family: Poppins-Regular;
  font-size: 12px;
  line-height: 1.466667;
}

.stext-105 {
  font-size: 16px;
  line-height: 1.466667;
  font-family: sans-serif;
}

.stext-106 {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  
}

.stext-107 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.923;
}

.stext-108 {
  font-family: Poppins-Light;
  font-size: 13px;
  line-height: 1.7143;
}

.stext-109 {
  font-family: Poppins-Regular;
  font-size: 12px;
  line-height: 1.833333;
}

.stext-110 {
  font-family: Poppins-Medium;
  font-size: 16px;
  line-height: 1.466667;
}

.stext-111 {
  font-family: Poppins-Medium;
  font-size: 14px;
  line-height: 1.466667;
}

.stext-112 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.6923;
  text-transform: uppercase;
}

.stext-113 {
  font-family: Poppins-Light;
  font-size: 15px;
  line-height: 1.7857;
  
}

.stext-114 {
  font-family: Poppins-Italic;
  font-size: 15px;
  line-height: 1.666667;
}

.stext-115 {
  font-family: Poppins-Regular;
  font-size: 15px;
  line-height: 1.666667;
}

.stext-116 {
  font-family: Poppins-Regular;
  font-size: 15px;
  line-height: 1.266667;
}

.stext-117 {
  font-family: Poppins-Light;
  font-size: 15px;
  line-height: 1.666667;
}

.stext-118 {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.833333;
}

.stext-119 {
  font-family: Poppins-Regular;
  font-size: 11px;
  line-height: 1.833333;
}
.stext-120 {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.833333;
}
.stext-121 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.923;
}
.stext-122 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.833333;
}
/*---------------------------------------------*/
.stext-301 {
  font-family: Poppins-Medium;
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
  text-transform: uppercase;
}


/*//////////////////////////////////////////////////////////////////
[ M-Text 16 - 25 ]*/
.mtext-101 {
  font-family: Poppins-Medium;
  font-size: 18px;
  line-height: 1.333333;
}

.mtext-102 {
  font-family: Poppins-SemiBold;
  font-size: 16px;
  line-height: 1.6;
}

.mtext-103 {
  font-family: Poppins-Bold;
  font-size: 18px;
  line-height: 1.333333;
  text-transform: uppercase;
}

.mtext-104 {
  font-family: Poppins-Medium;
  font-size: 16px;
  line-height: 1.6;
}

.mtext-105 {
  font-family: Poppins-Regular;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.mtext-106 {
  font-family: Poppins-SemiBold;
  font-size: 18px;
  line-height: 1.388888;
}

.mtext-107 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.625;
}

.mtext-108 {
  font-family: Poppins-Regular;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

.mtext-109 {
  font-family: Poppins-Bold;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
}

.mtext-110 {
  font-family: Poppins-Regular;
  font-size: 18px;
  line-height: 1.222222;
}

.mtext-111 {
  font-family: Poppins-Bold;
  font-size: 25px;
  line-height: 1.2;
}

.mtext-112 {
  font-family: Poppins-Bold;
  font-size: 22px;
  line-height: 1.333333;
}

.mtext-113 {
  font-family: Poppins-Bold;
  font-size: 22px;
  line-height: 1.333333;
  text-transform: uppercase;
}


/*//////////////////////////////////////////////////////////////////
[ L-Text >= 26 ]*/
.ltext-101 {
  font-family: Poppins-Regular;
  font-size: 28px;
  line-height: 1.2857;
}

.ltext-102 {
  font-family: Poppins-Bold;
  font-size: 28px;
  line-height: 1.1;
}

.ltext-103 {
  font-family: Poppins-Bold;
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .ltext-103 {
    font-size: 20px; 
  }
}

.ltext-104 {
  font-family: Poppins-Bold;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
}

.ltext-105 {
  font-family: Poppins-Bold;
  font-size: 50px;
  line-height: 1.1;
}

.ltext-106 {
  font-family: Poppins-Bold;
  font-size: 36px;
  line-height: 1.2;
}

.ltext-107 {
  font-family: Poppins-Bold;
  font-size: 30px;
  line-height: 1.1;
}

.ltext-108 {
  font-family: Poppins-Bold;
  font-size: 26px;
  line-height: 1.3846;
}

.ltext-109 {
  font-family: Poppins-Bold;
  font-size: 36px;
  line-height: 1.2;
}


/*---------------------------------------------*/
.ltext-201 {
  font-family: PlayfairDisplay-Bold;
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
}

.ltext-202 {
  font-family: PlayfairDisplay-Regular;
  font-size: 28px;
  line-height: 1.2857;
}




/*==================================================================
    SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE 
==================================================================*/


/*//////////////////////////////////////////////////////////////////
[ Size ]*/
.size-101 {
  min-width: 161px;
  height: 46px;
}

.size-102 {
  min-width: 139px;
  height: 40px;
}

.size-103 {
  min-width: 179px;
  height: 46px;
}

.size-104 {
  min-width: 94px;
  height: 40px;
}

.size-105 {
  min-width: 111px;
  height: 40px;
}

.size-106 {
  width: 88px;
  height: 100%;
}

.size-107 {
  min-width: 145px;
  height: 40px;
}

.size-108 {
  width: 40px;
  height: 40px;
}

.size-109 {
  width: 60px;
  height: 60px;
}

.size-110 {
  width: 100%;
  min-height: 100px;
}

.size-111 {
  width: 100%;
  height: 40px;
}

.size-112 {
  min-width: 134px;
  height: 43px;
}

.size-113 {
  width: 38px;
  height: 60px;
}

.size-114 {
  width: calc(100% - 38px);
  height: 60px;
}

.size-115 {
  min-width: 185px;
  height: 45px;
}

.size-116 {
  width: 100%;
  height: 50px;
}

.size-117 {
  width: 220px;
  height: 45px;
}

.size-118 {
  min-width: 163px;
  height: 45px;
}

.size-119 {
  min-width: 156px;
  height: 45px;
}

.size-120 {
  width: 100%;
  min-height: 199px;
}

.size-121 {
  width: 100%;
  height: 46px;
}

.size-122 {
  width: 55px;
  height: 100%;
}

.size-123 {
  width: 70px;
  min-height: 70px;
}

.size-124 {
  width: 100%;
  min-height: 150px;
}

.size-125 {
  min-width: 180px;
  height: 40px;
}

/*//////////////////////////////////////////////////////////////////
[ Width ]*/
.size-201 {
  max-width: 270px;
}

.size-202 {
  width: calc(100% / 3);
}

.size-203 {
  width: 105px;
}

.size-204 {
  width: calc(100% - 105px);
}

.size-205 {
  width: 145px;
}

.size-206 {
  width: calc(100% - 145px);
}

.size-207 {
  width: calc(100% - 78px);
}

.size-208 {
  width: 34.5%;
}

.size-209 {
  width: 65.5%;
}

.size-210 {
  width: 50%;
}

.size-211 {
  width: 60px;
}

.size-212 {
  width: calc(100% - 60px);
}

.size-213 {
  max-width: 245px;
}

.size-214 {
  width: 90px;
}

.size-215 {
  width: calc(100% - 110px);
}

.size-216 {
  width: 55px;
}

.size-217 {
  width: calc(100% - 55px);
}

.size-218 {
  max-width: 286px;
}

.h3-title-w1 {
  font-family: 'Impact', sans-serif;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 200;
  
}

/*//////////////////////////////////////////////////////////////////
[ Height ]*/
.size-301 {
  min-height: 30px;
}

.size-302 {
  min-height: 80px;
}

.size-303 {
  height: 390px;
}


/*==================================================================
   BACKGROUND BACKGROUND BACKGROUND BACKGROUND BACKGROUND BACKGROUND 
==================================================================*/
.bg-none {background-color: transparent;}
.bg0 {background-color: #fff;}
.bg1 {background-color: #717fe0;}
.bg2 {background-color: #e6e6e6;}
.bg4 {background-color: #f3f3f3;}
.bg3 {background-color: #222;}
.bg5 {background-color: rgb(0, 0, 0);}
.bg6 {background-color: #f2f2f2;}
.bg7 {background-color: #333;}
.bg8 {background-color: #f3f3f3;}
.bg9 {background-color: rgba(255,255,255,0.9);}
.bg10 {background-color: #ff0000;}
/*---------------------------------------------*/

.bg-overlay1::before {
  content: "";
  position: absolute;
  z-index: -100;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}

/*---------------------------------------------*/
.bg-img1 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}




/*==================================================================
       BORDER BORDER  BORDER  BORDER  BORDER  BORDER  BORDER  BORDER
==================================================================*/
.bor0 {border-radius: 50%;}

.bor1 {
  border-radius: 23px;
}

.bor2 {
  border-radius: 20px;
}

.bor3 {
  border-bottom: 1px solid transparent;
}

.bor4 {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
}

.bor5 {
  border-left: 1px solid #f0eded;
  border-right: 1px solid #f0eded;
}

.bor6 {border-right: 1px solid rgba(255,255,255,0.1);}

.bor7 {
  border-radius: 5px;
}

.bor8 {
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}

.bor9 {
  border-right: 1px solid #e6e6e6;
}

.bor10 {
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}

.bor11 {
  border-radius: 21px;
}

.bor12 {
  border-bottom: 1px dashed #d9d9d9;
}

.bor13 {
  border: 1px solid #e6e6e6;
  border-radius: 22px;
}

.bor14 {
  border-radius: 25px;
}

.bor15 {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.bor16 {
  border-left: 3px solid #e6e6e6;
}

.bor17 {
  border: 1px solid #e6e6e6;
  border-radius: 25px;
}

/*---------------------------------------------*/
.bor18 {
  border-top: 1px solid #e6e6e6;
}

.bor18:last-child {
  border-bottom: 1px solid #e6e6e6;
}

/*---------------------------------------------*/
.bor19 {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.bor20 {
  border-radius: 0px;

}



/*==================================================================
 HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW 
==================================================================*/
.plh0::-webkit-input-placeholder { color: #999999;}
.plh0:-moz-placeholder { color: #999999;}
.plh0::-moz-placeholder { color: #999999;}
.plh0:-ms-input-placeholder { color: #999999;}

.plh1::-webkit-input-placeholder { color: #b2b2b2;}
.plh1:-moz-placeholder { color: #b2b2b2;}
.plh1::-moz-placeholder { color: #b2b2b2;}
.plh1:-ms-input-placeholder { color: #b2b2b2;}

.plh2::-webkit-input-placeholder { color: #333;}
.plh2:-moz-placeholder { color: #333;}
.plh2::-moz-placeholder { color: #333;}
.plh2:-ms-input-placeholder { color: #333;}

.plh3::-webkit-input-placeholder { color: #555;}
.plh3:-moz-placeholder { color: #555;}
.plh3::-moz-placeholder { color: #555;}
.plh3:-ms-input-placeholder { color: #555;}

.plh4::-webkit-input-placeholder { color: #888;}
.plh4:-moz-placeholder { color: #888;}
.plh4::-moz-placeholder { color: #888;}
.plh4:-ms-input-placeholder { color: #888;}

/*---------------------------------------------*/
.js-addedwish-detail {
  color: #6c7ae0;
}

/*---------------------------------------------*/
.label1 {
  position: relative;
}

.label1::after {
  content: attr(data-label1);
  font-family: Poppins-Regular;
  font-size: 10px;
  line-height: 15px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;

  display: block;
  position: absolute;
  top: 3px;
  right: -9px;
  height: 15px;
  min-width: 32px;
  border-radius: 7px;
  padding: 0 4px;
  background-color: #f74877;
}

.label1.rs1::after {
  top: calc(50% - 8px);
  right: auto;
  left: 90%;
}

/*---------------------------------------------*/
.how-active1 {
  color: #333;
  border-color: #797979;
}


/*---------------------------------------------*/
.wrap-input1 {
  position: relative;
  border-bottom: 2px solid rgba(204,204,204, 0.1);
}

.input1 {
  background-color: transparent;
  width: 100%;
}

.focus-input1 {
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  left: 0;
  bottom: -2px;
}

.input1:focus + .focus-input1 {
  width: 100%;
}


/*---------------------------------------------*/
.how-pagination1 {
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #808080;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
}

.how-pagination1:hover {
  background-color: #999;
  border-color: #999;
  color: #fff;
}

.active-pagination1 {
  background-color: #999;
  border-color: #999;
  color: #fff;
}

/*---------------------------------------------*/
.how-shadow1 {
  box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
}

/*---------------------------------------------*/
.how-pos1 {
  position: absolute;
  top: 10px;
  right: 10px;
}

/*---------------------------------------------*/
.how-pos2 {
  padding-left: 10.7%;
  padding-right: 11%;
}

@media (max-width: 991px) {
  .how-pos2 {
    padding-left: 8%;
    padding-right: 8%;
  }
}

/*---------------------------------------------*/
.how-pos3-parent {
  position: relative;
}

.how-pos3 {
  position: absolute;
  top: -35px;
  right: 0px;
}

/*---------------------------------------------*/
.how-pos4-parent {
  position: relative;
}

.how-pos4 {
  position: absolute;
  top: calc(50% - 9px);
  left: 28px;
}

/*---------------------------------------------*/
.how-pos5-parent {
  position: relative;
}

.how-pos5 {
  position: absolute;
  top: 15px;
  left: 10px;
}



/*---------------------------------------------*/
.how-itemcart1 {
  width: 60px;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
}

.how-itemcart1 img {
  width: 100%;
}

.how-itemcart1::after {
  content: '\e870';
  font-family: Linearicons-Free;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  opacity: 0;
}

.how-itemcart1:hover:after {
  opacity: 1;
}

/*---------------------------------------------*/
.how-bor2,
.how-bor1 {
  position: relative;
  z-index: 1;
}

.how-bor2::before,
.how-bor1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 3px solid #ccc;
}

.how-bor1::before {
  bottom: -21px;
  left: -21px;
}

@media (max-width: 767px) {
  .how-bor1::before {
    bottom: -21px;
    right: -21px;
    left: auto;
  }
}

.how-bor2::before {
  bottom: -21px;
  right: -21px;
}



/*==================================================================
      PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ Focus ]*/
.focus-in0:focus::-webkit-input-placeholder { color:transparent; }
.focus-in0:focus:-moz-placeholder { color:transparent; }
.focus-in0:focus::-moz-placeholder { color:transparent; }
.focus-in0:focus:-ms-input-placeholder { color:transparent; }




/*//////////////////////////////////////////////////////////////////
[ Hover ]*/

.hov-cl0:hover {color: #fff;}
.hov-bg0:hover {background-color: #fff;}
.hov-cl1:hover {color: #000000af;}
.hov-bg1:hover {background-color: #ff0000;}
.hov-cl2:hover {color: #ff0000;}
.hov-bg2:hover {background-color: #ff0000;}

/*---------------------------------------------*/
.hov-img0 {
  display: block;
  overflow: hidden;
}

.hov-img0 img{
  width: 100%;
  -webkit-transition: transform 0.9s ease;
  -o-transition: transform 0.9s ease;
  -moz-transition: transform 0.9s ease;
  transition: transform 0.9s ease;
}
/*
.hov-img0:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
*/
.price-container {
  display: flex;
  align-items: center;
}

.original-price {
  color: #2e2e2ea8; 
  text-decoration: line-through; 
  margin-right: 15px; 
  font-size: 14px; 
  font-weight:lighter;
}

.discount-price {
  color: #ff0000;
  font-size: 14px; 
  font-weight: bold;
}

.regular-price {
  color: #333; 
  font-size: 14px; 
  font-weight: bold;
}
@media (max-width: 991px) {
  .original-price, .discount-price, .regular-price {
    font-size: 13px;
  }
}

.discount-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #ff0000;
  color: #fff;
  padding: 12px 7px;
  font-size: 14px;
  border-radius: 50px;
  z-index: 10;
  font-family: 'Anton', sans-serif;
}

.block2-pic {
  position: relative; 
}

.btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.original-price2 {
  color: #2e2e2ea8; 
  text-decoration: line-through; 
  margin-right: 15px; 
  font-size: 17px; 
  font-weight: lighter;

}

.discount-price2 {
  color: #ff0000;
  font-size: 17px; 
  font-weight: bold;

}
.regular-price2 {
  color: #333; 
  font-size: 18px; 
  font-weight: bold;

}
/*---------------------------------------------*/
.hov-btn1 {
  background: #ff0000; 
  color: #fff;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #ff0000 50%, #fff 50%);
  transition: background-position 0.6s ease-in-out, color 0.6s ease-in-out, border-color 0.6s ease-in-out;
}

.hov-btn1:hover {
  border-color: #d30e0e; 
  background-position: -100% 0;
  color: #333;
}

.hov-btn2 {
  background: transparent;
  color: #fff; 
  border: 1px solid #fff;
  font-family: 'Anton', sans-serif;
  font-size: 18px; 
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, #000000 50%);
  transition: background-position 0.6s ease-in-out, color 0.6s ease-in-out, border-color 0.6s ease-in-out;
}

.hov-btn2:hover {
  background-position: -100% 0; 
  color: #ffffff; 
  border-color: #000000; /
}




/*---------------------------------------------*/
.hov-btn3 {
  background-color: #ff0000;
  color: #fff;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #ff0000 50%, #ff2c2c 50%);
  transition: background-position 0.6s ease-in-out, color 0.6s ease-in-out, border-color 0.6s ease-in-out;
}
.hov-btn3 i {
  color: #fff;
} 



.hov-btn3:hover {
  border-color: #ffffff; 
  background-position: -100% 0;
  color: #ffffff;
}

.hov-btn3:hover i {
  color: #fff;
} 
.hov-btn5 {
  background: #ffffff; 
  border: 1px solid #ff0000; 
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #ffffff 50%, #ff0000  50%);
  transition: background-position 0.6s ease-in-out, color 0.6s ease-in-out, border-color 0.6s ease-in-out;
}

.hov-btn5:hover {
  border: 1px solid #ff0000; 
  background-position: -100% 0;
  color: #fff;

}



.hov-btn4:hover {
  border-color:  #ff0000;
  background-color:  #ff0000;
  color: #fff;
}

.hov-btn4:hover i {
  color: #fff;
} 

.hov-btn6 {
  background: #ffffff; 
  border: 1px solid #25D366; 
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #25D366 50%, #22ca60 50%);
  transition: background-position 0.6s ease-in-out, color 0.6s ease-in-out, border-color 0.6s ease-in-out;
}

.hov-btn6:hover {
  border: 1px solid #25D366; 
  background-position: -100% 0;
}

/*---------------------------------------------*/
.hov-tag1:hover {
  color: #717fe0;
  border-color: #717fe0;
}


/*---------------------------------------------*/
.hov-ovelay1 {
  position: relative;
}

.hov-ovelay1::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(103,117,214,0.8);
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.hov-ovelay1:hover:after {
  opacity: 1;
}


/*---------------------------------------------*/
.hov1:hover {
  color: #333;
  border-color: #797979;
}

/*---------------------------------------------*/
.hov2:hover {
  background-color: #f2f2f2;
}

/*---------------------------------------------*/
.hov3 {
  opacity: 0.6;
}

.hov3:hover {
  opacity: 1;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*---------------------------------------------*/
.btn-remove {
  position: relative; /* Necesario para que z-index funcione */
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  margin-right: 20px;
  transition: background-color 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 10; /* Asegura que el botón esté delante */
}

.btn-remove:hover {
  background-color: #e0e0e0;
}

.btn-remove i {
  pointer-events: none; /* Evita que el ícono bloquee los clics en el botón */
  color: red;
  font-size: 16px;
  z-index: 20; /* Asegura que el ícono esté siempre por delante */
}

.btn-container {
  position: relative;
  z-index: 1; /* Menor z-index que el botón */
}
.precio-resumen {
  text-align: right; /* Mantiene el texto alineado a la derecha */
}




/*==================================================================
  RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ XL ]*/
@media (max-width: 1199px) {
  .m-0-xl {margin: 0;}
  .m-lr-0-xl {margin-left: 0; margin-right: 0;}
  .m-lr-15-xl {margin-left: 15px; margin-right: 15px;}
  .m-l-0-xl {margin-left: 0;}
  .m-r-0-xl {margin-right: 0;}
  .m-l-15-xl {margin-left: 15px;}
  .m-r-15-xl {margin-right: 15px;}

  .p-0-xl {padding: 0;}
  .p-lr-0-xl {padding-left: 0; padding-right: 0;}
  .p-lr-15-xl {padding-left: 15px; padding-right: 15px;}
  .p-l-0-xl {padding-left: 0;}
  .p-r-0-xl {padding-right: 0;}
  .p-l-15-xl {padding-left: 15px;}
  .p-r-15-xl {padding-right: 15px;}

  .w-full-xl {width: 100%;}

  /*---------------------------------------------*/

}


/*//////////////////////////////////////////////////////////////////
[ LG ]*/
@media (max-width: 991px) {
  .m-0-lg {margin: 0;}
  .m-lr-0-lg {margin-left: 0; margin-right: 0;}
  .m-lr-15-lg {margin-left: 15px; margin-right: 15px;}
  .m-l-0-lg {margin-left: 0;}
  .m-r-0-lg {margin-right: 0;}
  .m-l-15-lg {margin-left: 15px;}
  .m-r-15-lg {margin-right: 15px;}

  .p-0-lg {padding: 0;}
  .p-lr-0-lg {padding-left: 0; padding-right: 0;}
  .p-lr-15-lg {padding-left: 15px; padding-right: 15px;}
  .p-l-0-lg {padding-left: 0;}
  .p-r-0-lg{padding-right: 0;}
  .p-l-15-lg {padding-left: 15px;}
  .p-r-15-lg {padding-right: 15px;}

  .w-full-lg {width: 100%;}

  /*---------------------------------------------*/
  .respon4 {
    width: 50%;
  }

  /*---------------------------------------------*/
  .respon5 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}


/*//////////////////////////////////////////////////////////////////
[ MD ]*/
@media (max-width: 767px) {
  .m-0-md {margin: 0;}
  .m-lr-0-md {margin-left: 0; margin-right: 0;}
  .m-lr-15-md {margin-left: 15px; margin-right: 15px;}
  .m-l-0-md {margin-left: 0;}
  .m-r-0-md {margin-right: 0;}
  .m-l-15-md {margin-left: 15px;}
  .m-r-15-md {margin-right: 15px;}

  .p-0-md {padding: 0;}
  .p-lr-0-md {padding-left: 0; padding-right: 0;}
  .p-lr-15-md {padding-left: 15px; padding-right: 15px;}
  .p-l-0-md {padding-left: 0;}
  .p-r-0-md{padding-right: 0;}
  .p-l-15-md {padding-left: 15px;}
  .p-r-15-md {padding-right: 15px;}

  .w-full-md {width: 100%;}

  /*---------------------------------------------*/
  .respon4 {
    width: 100%;
  }

}


/*//////////////////////////////////////////////////////////////////
[ SM ]*/
@media (max-width: 575px) {
  .m-0-sm {margin: 0;}
  .m-lr-0-sm {margin-left: 0; margin-right: 0;}
  .m-lr-15-sm {margin-left: 15px; margin-right: 15px;}
  .m-l-0-sm {margin-left: 0;}
  .m-r-0-sm {margin-right: 0;}
  .m-l-15-sm {margin-left: 15px;}
  .m-r-15-sm {margin-right: 15px;}

  .p-0-sm {padding: 0;}
  .p-lr-0-sm {padding-left: 0; padding-right: 0;}
  .p-lr-15-sm {padding-left: 15px; padding-right: 15px;}
  .p-l-0-sm {padding-left: 0;}
  .p-r-0-sm{padding-right: 0;}
  .p-l-15-sm {padding-left: 15px;}
  .p-r-15-sm {padding-right: 15px;}

  .w-full-sm {width: 100%;}

  /*---------------------------------------------*/
  .respon1 {
    font-size: 40px;
  }
  
  /*---------------------------------------------*/
  .respon2 {
    font-size: 20px;
  }

  /*---------------------------------------------*/
  .respon6 {
    width: 65px;
  }

  .respon6-next {
    width: calc(100% - 65px);
  }

  /*---------------------------------------------*/
  .respon7 {
    padding-left: 60px;
  }

  
}

/*//////////////////////////////////////////////////////////////////
[ SSM ]*/
@media (max-width: 480px) {
  .m-0-ssm {margin: 0;}
  .m-lr-0-ssm {margin-left: 0; margin-right: 0;}
  .m-lr-15-ssm {margin-left: 15px; margin-right: 15px;}
  .m-l-0-ssm {margin-left: 0;}
  .m-r-0-ssm {margin-right: 0;}
  .m-l-15-ssm {margin-left: 15px;}
  .m-r-15-ssm {margin-right: 15px;}

  .p-0-ssm {padding: 0;}
  .p-lr-0-ssm {padding-left: 0; padding-right: 0;}
  .p-lr-15-ssm {padding-left: 15px; padding-right: 15px;}
  .p-l-0-ssm {padding-left: 0;}
  .p-r-0-ssm{padding-right: 0;}
  .p-l-15-ssm {padding-left: 15px;}
  .p-r-15-ssm {padding-right: 15px;}

  .w-full-ssm {width: 100%;}

  /*---------------------------------------------*/
  .respon3 {
    padding: 20px;
  }

}
.quantity-container {
  display: flex;
  align-items: center;
}
.quantity-btn {
  width: 30px;
  height: 30px;
  background-color: #f3f3f3;
  border: 1px solid #ddd;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  line-height: 30px;
  margin: 0 5px;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.quantity-btn:hover {
  background-color: #e2e2e2;
}
.quantity {
  font-size: 18px;
  min-width: 40px;
  text-align: center;
}
.quantity-btn.increment {
  background-color: #ff0000; 
  color: #fff; 
  border: 1px solid #cc0000; 
}

@media (max-width: 576px) {
  .isotope-grid .col-sm-6 {
      flex: 0 0 50%;
      max-width: 50%;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .isotope-grid .col-md-4 {
      flex: 0 0 33.33%; 
      max-width: 33.33%;
  }
}
@media (min-width: 992px) {
  .isotope-grid .col-lg-4 {
      flex: 0 0 33.33%; 
      max-width: 33.33%;
  }
}
@media (min-width: 992px) {
  .isotope-grid .col-lg-3 {
      flex: 0 0 25%; 
      max-width: 25%;
  }
}
.col-sm-6,
.col-md-4,
.col-lg-3 {
    padding-left: 5px; 
    padding-right: 5px; 
}


.p-b-35 {
    margin-bottom: 20px; 
}

.row {
    margin-left: -10px; 
    margin-right: -10px;
}
.bg-danger {
  background-color:  #ffe6e6 !important;
}
.bg-danger-background {
  background-color:  #ff0000 !important;
}

.item-slick2 {
  padding-left: 5px; 
  padding-right: 5px; 
}

.chat-float-button, .whatsapp-float-button, .call-float-button {
  position: fixed;
  right: 20px;
  z-index: 1000;
}

.chat-float-button {
  bottom: 20px;
}
.whatsapp-float-button {
  bottom: 80px; 
}
.call-float-button {
  bottom: 140px; 
}
.chat-link, .whatsapp-link, .call-link {
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.chat-link {
  background-color: #ff0000;
}
.whatsapp-link {
  background-color: #25D366; 
  padding: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.call-link {
  background-color: #ff0000;
  padding: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.chat-link i, .whatsapp-link i, .call-link i {
  font-size: 22px;
}
.chat-link:hover, .whatsapp-link:hover, .call-link:hover {
  color: #fff;
  transform: scale(1.1);
} 

.sec-banner .col-md-6, .sec-banner .col-lg-4 {
  padding-bottom: 10px; 
}
.sec-banner .row {
  margin-left: -5px;
  margin-right: -5px;
}
.sec-banner .col-md-6, .sec-banner .col-lg-4 {
  padding-left: 5px;
  padding-right: 5px; 
}
.beneficio-box {
  background-color: #ffe6e6;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  height: 170px; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  text-align: left;
}

.icono {
  width: 60px;
  height: 60px;
  min-width: 60px; 
  min-height: 60px; 
  background-color: #ff0000;
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0; 
}
@media (max-width: 768px) {
  .beneficio-box {
    height: auto;
    padding: 10px;
  }

}
.custom-alert {
  position: fixed;
  bottom: 20px; 
  left: 20px;
  z-index: 1100;
  background-color: #ff0015;
  color: white;
  padding: 20px 15px;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column; 
  max-width: 400px; 
}
.custom-alert.show {
  opacity: 1;
  transform: translateY(0);
}
.alert-error {
  background-color: #ff0015; 
  color: #ffffff; 
  padding: 15px;
  border-radius: 5px;
  font-size: 13px;
  font-family: Poppins-Regular;
  line-height: 1.923;
}
.alert-error a {
  color: #ffffff; 
  text-decoration: underline;
}
.alert-success {
  background-color: #505050; 
  color: #ffffff; 
  padding: 15px;
  border-radius: 5px;
  font-size: 13px;
  font-family: Poppins-Regular;
  line-height: 1.923;
  
  
}
.alert-danger {
  background-color: #ec000021; 
  color: #eb3434; 
  padding: 15px;
  border-radius: 5px;
}
.alert-success a {
  color: #ffffff; 
  text-decoration: underline;
}
@media (max-width: 768px) {
  .custom-alert {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    border-radius: 0;
    max-width: none; 
    transform: translateY(0);
  }
}

.login-register-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; 
}
.login-register-container > div {
  flex: 1;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%; 
}
@media (max-width: 992px) {
  .login-register-container {
      flex-direction: column; 
  }
}
@media (max-width: 576px) {
  .login-register-container > div {
      padding: 20px; 
      max-width: 100%; 
  }
}

.form-check-container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.form-check-container .form-check {
  margin-bottom: 0; 
}

.form-check-container .stext-109 {
  margin-bottom: 0; 
}

.password-recovery-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.password-recovery-container > div {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%; 
  width: 100%;
  max-width: 500px; 
}
@media (max-width: 576px) {
  .password-recovery-container > div {
      padding: 20px; 
  }
}
.bg-light-color {
  background-color: #f3f3f3;
}
.truncate-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px; 
  display: inline-block;
}

.floating-banner {
  background-color: #3a3737;
  color: white;
  text-align: center;
  padding: 7px; 
  position: relative;
  z-index: 10; 
  display: flex;
  flex-direction: column; 
  margin: 0; 
  width: 100%;
  font-size: 13px;
}

.floating-banner a {
  color: white;
  font-size: 13px;
  font-weight:lighter;
  text-decoration: underline;
}

.close-banner {
  position: absolute;
  right: 15px;
  top: 5px;
  cursor: pointer;
  font-size: 20px; 
  color: white; 
}

@media (max-width: 600px) {
  .floating-banner {
      font-size: 11px; 
      padding: 8px; 
  }

  .close-banner {
      font-size: 18px; 
      right: 10px; 
      top: 10px;
  }

  .floating-banner p {
      margin: 5px 20px; 
      overflow-wrap: break-word; 
  }
  .floating-banner a {
    font-size: 11px; 
  }
}
.hiddensubcategoria {
  display: none;
}
.custom-col {
  flex: 0 0 20%; 
  max-width: 20%;
}
.list-group-item.active {
  border: 2px solid #ff0000; 
  color: #ffffff; 
  background-color: #ff0000; 
}
.form-check-input {
      cursor: pointer;
  }

.form-check-input:checked {
      accent-color: red; 
  }

.btn-remove {
    background-color: red; 
    border: none; 
    color: white; 
    padding: 8px 12px; 
    border-radius: 4px; 
    cursor: pointer; 
}
.btn-remove i {
    color: white; 
}
.header-cart-empty {
  height: 300px; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  text-align: center; 
}

.icon-empty {
  font-size: 50px;
  margin-bottom: 10px; 
  color: #ff0000;
}

.message-empty {
  padding: 0 50px;
  margin: 0; 
}

.cantidad-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 0px;
  padding: 5px;
  width: 180px;
  margin-left: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cantidad-btn {
  color: #ffffff;
  border: none;
  width: 50px;
  height: 35px;
  cursor: pointer;
  border-radius: 0px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.cantidad-btn:first-child {
  background-color: #d3d3d3; 
}

.cantidad-btn:last-child {
  background-color: #ff0000; 
}

.cantidad-btn:first-child:hover {
  background-color: #c0c0c0; 
}

.cantidad-btn:last-child:hover {
  background-color: #ff4d4d; 
}

#cantidad {
  width: 50px;
  height: 35px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 0px;
  padding: 5px;
  margin: 0 5px;
  font-size: 16px;
}

.color-option {
  display: inline-block;
  position: relative;
  margin: 4px;
}

.color-label {
  cursor: pointer;
  display: block;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0; 
  transition: border 0.3s;
  width: 40px;
  height: 30px;
  overflow: hidden; 
}

input[type="radio"]:checked + .color-label::after {
  content: "✔";
  position: absolute;
  bottom: -5px;
  right: -5px;
  font-size: 12px;
  background-color: red;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.color-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 0; 
}

.size-option {
  display: inline-block;
  position: relative;
  margin: 4px;
}

.size-label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 0;
  width: 50px;
  height: 40px;
  font-size: 12px;
  background-color: #f7f4f4;
  color: #333;
  transition: border 0.3s;
}

input[type="radio"]:checked + .size-label::after {
  content: "✔";
  position: absolute;
  bottom: -5px;
  right: -5px;
  font-size: 11px;
  background-color: red;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type="radio"]:checked + .color-label, 
input[type="radio"]:checked + .size-label {
  border-color: red;
}

.size-unavailable .size-label {
  background-color: #e6e6e6ab;
  color: #888; 
  cursor: not-allowed;
  position: relative;
}

.size-unavailable .size-label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #bbbbbb;
  transform: rotate(-45deg);
  transform-origin: center;
}

.size-unavailable input {
  pointer-events: none;
}
.info-inline {
  display: flex;
  gap: 10px; 
  align-items: center; 
  margin-top: 5px; 
}
.header-cart-item-info {
  margin: 0; 
}
.paginacion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
}

.paginacion a {
  padding: 6px 13px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #ff0000;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.paginacion a:hover {
  background-color: #f0f0f0;
}

.paginacion a.active {
  background-color: #ff0000;
  color: white;
}

.paginacion-contenedor {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.paginacion-contenedor::-webkit-scrollbar {
  height: 6px;
}

.paginacion-contenedor::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 5px;
}

.paginacion .anterior,
.paginacion .siguiente {
  padding: 6px 13px;
  background-color: #ddd;
  border: none;
  color: #ff0000;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .paginacion a,
  .paginacion .anterior,
  .paginacion .siguiente {
    font-size: 14px;
    padding: 5px 10px;
  }

  .paginacion-contenedor {
    max-width: 50%;
  }
}
.ct {
  margin-left: 10px;
}


.menu-icon-container {
  background-color: rgb(255, 0, 0); 
  border-radius: 5px; 
  width: 40px; 
  height: 40px; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
  transition: background-color 0.3s ease, color 0.3s ease; 
}

.menu-icon-container i {
  color: white; 
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-icon-container:hover i {
  color: rgb(255, 255, 255); 
}

.togglePasswordButton {
  border: 1px solid #dbdbdb; 
  background-color: transparent;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.togglePasswordButton:focus, .togglePasswordButton:active {
  border-color: #dbdbdb;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.togglePasswordButton:hover {
  background-color: transparent; 
  border-color: #dbdbdb;
  opacity: 1;
}
#passwordIcon, #confirmPasswordIcon, #currentPasswordIcon, #newPasswordIcon, #confirmNewPasswordIcon {
  color: rgb(255, 0, 0);
  pointer-events: none; 
}
input.form-control:focus {
  border-color: #dbdbdb;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  outline: none;
}
select.form-control:focus {
  border-color: #dbdbdb;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  outline: none;
}
textarea.form-control:focus {
  border-color: #dbdbdb;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  outline: none;
}
.fade-out {
      opacity: 0;
      transition: opacity 1s ease-out;
} 
.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  padding: 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 3px;
}

.slick-dots li button {
  font-size: 0;
  width: 13px;
  height: 13px; 
  background-color: #ccc;
  border-radius: 50%; 
  border: none;
  transition: background-color 0.3s ease;
}

.slick-dots li.slick-active button {
  background-color: #ff0000; 
}
.custom-card {
  position: relative;
}
.custom-card-image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.custom-card-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.custom-card-img {
  transition: transform 0.3s ease;
  display: block;
}

.custom-card:hover .custom-card-img {
  transform: scale(1.05); 
}

.img-width {
  width: 43px;
}
.separator-line {
  border-left: 1px solid #ccc; 
  height: 20px;
}
.s1 {
  padding: 10px; 
  width: 200px;
}

.row.isotope-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100px; 
}

.no-products-message {
  text-align: center;
  font-style: italic;
  font-size: 18px;
  margin: 0; 
}
.qr_img_container {
  border: 1px solid #ddd;
  padding: 10px; 
  max-width: 200px;
}
.qr_img {
  max-width: 100%;
}
/* Modal Container */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; 
  background-color: rgba(0, 0, 0, 0.5); 
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  padding: 20px;
  width: 85%;
  max-width: 600px;
  max-height: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.modal-content .col-auto a {
  text-decoration: none;
}
.modal-close-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

.modal-close-icon:hover {
  color: #ff0000;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}
.modal-body a {
  color: #ff0000;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.line-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}
.rating-summary-alt {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.average-rating {
  margin-bottom: 20px;
}

.average-rating .stars i {
  font-size: 20px;
  color: #ffcc00; 
}

.average-rating .display-4 {
  font-size: 40px;
  font-weight: bold;
  color: #383838;
}


.break-word {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal; 
}

.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.share-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 95%;
  max-width: 600px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.share-modal-close-icon {
  font-size: 24px;
  color: #000;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.share-options {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between; 
  gap: 20px; 
}

.share-option {
  flex: 0 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px; 
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #ccc; 
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  transition: background-color 0.3s;
}

.icon-circle:hover {
  background-color: #555; 
}

.share-option span {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

@media (min-width: 768px) {
  .share-option {
      flex: 0 1 calc(25% - 20px); 
  }

  .share-modal-content {
      max-width: 700px; 
  }
}
#stock-display {
  font-style: italic;
  font-size: 13px; 
  transition: color 0.3s; 
  font-weight:bolder;

}
.sd2 {
  font-style: italic;
  font-size: 13px; 
  transition: color 0.3s; 
  font-weight:bolder;

}


.discount-container {
  display: inline-block; 
  background-color: #ff0d00; 
  color: #ffffff;
  font-weight: 100;
  font-size: 13px;
  padding: 5px 10px; 
  border-radius: 0; 
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); 
  margin-left: 30px; 
  text-align: center;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;

}


.product-sku-container {
  margin-bottom: 5px; 
}

.sku-text {
  font-size: 13px;
  color: #555; 
  margin: 0; 
  font-weight: bold;

  
}
.temporizador-container {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.temporizador {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; 
  margin-top: 15px;
}

.temporizador-item {
  text-align: center;
  font-size: 1rem;
  padding: 15px; 
  min-width: 80px; 
  height: auto; 
  border: 1px solid #ddd;
  border-radius: 10px; 
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.temporizador-numero {
  display: block;
  font-size: 1.25rem; 
  font-weight: 700; 
  color: #e63131; 
  padding: 10px; 
  line-height: 1.2; 
  word-wrap: break-word;
  border-radius: 5px; 
  background: #ffe5e5; 
}

.temporizador-label {
  font-size: 0.7rem;
  color: #e63131; 
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight:lighter;
  margin-top: 8px; 
}
.temporizador-h5 {
  font-weight: 400;

}
/**/
.timer-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 80%; 
  z-index: 10;
}

.timer-item {
  background: rgba(255, 255, 255, 0.7); 
  border-radius: 8px; 
  padding: 5px 7px;
  margin: 0 3px; 
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
  flex: 1; 
}

.timer-number {
  font-size: 12px; 
  font-weight: 660;
  color: #444;
  display: block;
  margin-bottom: -1px; 
}

.timer-label {
  font-size: 9px;
  color: #666; 
  text-transform: uppercase;
  letter-spacing: 0.5px; 
  margin-top: -3px; 
}
@media (max-width: 768px) {
  .timer-content {
    width: 100%; 
    bottom: 20px; 
    padding: 0 10px; 
  }

  .timer-item {
    padding: 6px 8px;
    margin: 0 3px; 
  }

  .timer-number {
    font-size: 12px; 
  }

  .timer-label {
    font-size: 8px; 
  }
}
/**/
.disabled-card {
  background-color: #f5f5f5;
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.disabled-card .block2-btn,
.disabled-card a {
  pointer-events: none;
}
.no-banners-message {
  text-align: center;  
  width: 100%;        
}
