/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99999 !important;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  background: #004917 !important;
  color: var(--bs-white) !important;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  transition: 0.5s;
  border: none;
}

.btn.btn-primary:hover {
  background: #015e3f !important;
  color: var(--bs-white);
}

.btn.btn-secondary {
  background: var(--bs-secondary) !important;
  color: var(--bs-white);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-secondary:hover {
  background: var(--bs-danger) !important;
  color: #fff !important;
  border: none;
}

/*** Topbar Start ***/
.topbar {
  padding: 2px 10px 2px 20px;
  background: #015e3f !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.nav-bar .categories-bars .categories-bars-item {
  padding: 8px 15px;
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  max-height: 40px;
}

.nav-bar .categories-bars .categories-bars-item a,
.nav-bar .categories-bars .categories-bars-item span {
  color: var(--bs-dark);
  transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item:hover {
  background: #004917;
  color: #fff;
}

.nav-bar .categories-bars .categories-bars-item:hover a,
.nav-bar .categories-bars .categories-bars-item:hover span {
  color: var(--bs-white);
}

.nav-bar .navbar.navbar-light {
  padding: 0 !important;
}

.nav-bar .navbar .navbar-nav .nav-link {
  padding: 18px 15px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
  color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .nav-bar .navbar .navbar-nav .nav-link {
    padding: 8px 0px;
  }
}

.dropdown .dropdown-menu a:hover {
  background: #015e3f;
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  transition: 0.5s;
  opacity: 1;
}

.navbar .navbar-toggler {
  padding: 5px 15px;
}

#allCat {
  position: absolute;
  left: 0;
  right: 0;
  top: 51px;
  z-index: 999;
  background: transparent;
}

.nav-bar .navbar-toggler {
  border-radius: 5px !important;
  box-shadow: none !important;
}

.menu-categorias {
  display: none; /* Oculto por defecto */
  transition: all 0.3s; /* Animación */
}

.menu-categorias.show {
  display: block;
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel.owl-carousel .owl-nav .owl-prev,
.header-carousel.owl-carousel .owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 87%;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004917;
  color: var(--bs-white);
}

.header-carousel.owl-carousel .owl-nav .owl-prev {
  right: 130px;
  transition: 0.5s;
}

.header-carousel.owl-carousel .owl-nav .owl-next {
  right: 60px;
  transition: 0.5s;
}

.header-carousel.owl-carousel .owl-nav .owl-prev:hover,
.header-carousel.owl-carousel .owl-nav .owl-next:hover {
  background: #015e3f;
  color: var(--bs-white);
}

.carousel .carousel-header-banner {
  position: relative;
}

.carousel .carousel-banner-offer {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.carousel .carousel-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
/*** Carousel Header End ***/

/*** Page Header start ***/
.page-header {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/carousel-1.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/*** Page Header end ***/
/*** Page Header start ***/
.page-header-about {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/banner-about.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/*** Page Header end ***/

/*** Products Start ***/
.product .product-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.product .product-item .product-item-inner {
  height: 100%;
}

.product .product-item .product-item-add {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.product .product-item:hover .product-item-add {
  background: var(--bs-white);
  margin-bottom: -69px;
  opacity: 1;
}
.product .product-item:hover .product-item-inner {
  border-bottom: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.product .product-item .product-item-inner .product-item-inner-item {
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  overflow: hidden;
}

.product
  .product-item
  .product-item-inner
  .product-item-inner-item
  .product-new,
.product
  .product-item
  .product-item-inner
  .product-item-inner-item
  .product-sale {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product
  .product-item
  .product-item-inner
  .product-item-inner-item
  .product-new {
  background: #015e3f;
  color: var(--bs-white);
}

.product
  .product-item
  .product-item-inner
  .product-item-inner-item
  .product-sale {
  background: #f92400;
  color: var(--bs-white);
}

.product .product-item .product-item-inner img {
  transition: 0.5s;
}

.product .product-item:hover .product-item-inner img {
  transform: scale(1.1);
}

.product
  .product-item
  .product-item-inner
  .product-item-inner-item
  .product-details {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}

.product
  .product-item
  .product-item-inner
  .product-item-inner-item
  .product-details
  a
  i {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #015e3f;
  color: var(--bs-white);
  transition: 0.5s;
}

.product
  .product-item:hover
  .product-item-inner
  .product-item-inner-item
  .product-details
  a
  i:hover {
  background: #015e3f;
  color: var(--bs-white);
}

.product .product-item:hover .product-item-inner .product-details {
  opacity: 1;
}

.product .tab-class .nav .nav-item a.active {
  background: #004917 !important;
}

.product .tab-class .nav .nav-item a.active span {
  color: var(--bs-white) !important;
}
.product-item-inner-title {
  color: #015e3f;
  font-size: 0.8rem;
}
/*** Product End ***/

/*** ProductList Categories Start ***/
.productList .productList-carousel {
  height: 215px !important;
}

.productList
  .productList-carousel
  .productImg-carousel.productList-item
  .productImg-item {
  position: relative;
  width: calc(100% - 1px);
  transition: 0.5s;
}

.productList
  .productList-carousel
  .productImg-carousel.productList-item
  .productImg-item {
  margin-bottom: 75px;
}

.productList
  .productList-carousel
  .productImg-carousel.productList-item
  .productImg-item:hover {
  border-bottom: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.productList .productList-carousel .owl-nav .owl-prev,
.productList .productList-carousel .owl-nav .owl-next {
  position: absolute;
  top: -40px;
  padding: 5px 40px;
  border-radius: 30px;
  background: #004917;
  color: var(--bs-white);
  transition: 0.5s;
}

.productList .productList-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .owl-nav .owl-next:hover {
  background: #015e3f !important;
  color: var(--bs-white) !important;
}

.productList .productList-carousel .owl-nav .owl-prev {
  left: 0;
}

.productList .productList-carousel .owl-nav .owl-next {
  right: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
  position: absolute;
  top: 0px;
  padding: 5px 10px;
  border-radius: 30px;
  background: #004917;
  color: var(--bs-white);
  transition: 0.5s;
  opacity: 0;
}

.productList
  .productList-carousel
  .productImg-carousel
  .owl-nav
  .owl-prev:hover,
.productList
  .productList-carousel
  .productImg-carousel
  .owl-nav
  .owl-next:hover {
  background: #015e3f !important;
  color: var(--bs-white) !important;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev {
  left: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
  right: 0;
}

.productList
  .productList-carousel
  .productImg-carousel.productList-item:hover
  .owl-nav
  .owl-prev,
.productList
  .productList-carousel
  .productImg-carousel.productList-item:hover
  .owl-nav
  .owl-next {
  opacity: 1;
}
/*** ProductList Categories End ***/

/*** bestseller Products Start ***/
.products .products-mini .products-mini-item {
  position: relative;
  border-radius: 10px;
  transition: 0.5s;
}

.products .products-mini .products-mini-item:hover {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.products .products-mini .products-mini-item .products-mini-img {
  position: relative;
  overflow: hidden;
}

.products .products-mini .products-mini-item .products-mini-img img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
  height: 190px !important;
}

.products .products-mini .products-mini-item:hover .products-mini-img img {
  border-bottom-left-radius: 0 !important;
  transform: scale(1.3);
}

.products
  .products-mini
  .products-mini-item
  .products-mini-img
  .products-mini-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}

.products
  .products-mini
  .products-mini-item:hover
  .products-mini-img
  .products-mini-icon {
  opacity: 1;
  cursor: pointer;
  color: #004917 !important;
}

.products
  .products-mini
  .products-mini-item:hover
  .products-mini-img
  .products-mini-icon:hover {
  background: #015e3f !important;
}

.products .products-mini .products-mini-item .products-mini-add {
  position: absolute;
  bottom: 0;
  left: -1px;
  right: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bs-white);
  transition: 0.5s;
  z-index: 9;
  opacity: 0;
}

.products .products-mini .products-mini-item:hover .products-mini-add {
  opacity: 1;
  margin-bottom: -59px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
/*** bestseller Products End ***/

/*** Pagination Start ***/
.pagination {
  display: inline-block;
}

.pagination a {
  color: var(--bs-dark);
  padding: 10px 16px;
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid #004917;
  margin: 0 4px;
}

.pagination a.active {
  background-color: #015e3f;
  color: var(--bs-light);
  border: 1px solid #004917;
}

.pagination a:hover:not(.active) {
  background-color: #015e3f;
  color: #fff;
}

.nav.nav-tabs .nav-link {
  color: #004917;
}
.nav.nav-tabs .nav-link.active {
  border-bottom: 2px solid #004917 !important;
}
/*** Pagination End ***/

/*** Shop Page Start ***/
.shop .product-categories .categories-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.shop .product-categories .categories-item a {
  transition: 0.5s;
  font-size: 16px;
}

.shop .product-categories .categories-item a:hover {
  color: #015e3f !important;
}

.shop .product-color .product-color-item {
  display: flex;
  padding: 10px 0;
}

.shop .product-color .product-color-item a {
  transition: 0.5s;
}

.shop .product-color .product-color-item a:hover {
  color: var(--bs-secondary);
}

.shop .price {
  padding: 10px 0;
}

.shop .additional-product .additional-product-item {
  padding: 10px 0;
}

.shop .featured-product .featured-product-item {
  display: flex;
  align-items: center;
  justify-content: start;
}

.shop .product-tags .product-tags-items a {
  display: inline-block !important;
  background: var(--bs-white);
  color: var(--bs-dark);
  transition: 0.5;
}

.shop .product-tags .product-tags-items a:hover {
  background: #015e3f !important;
  color: var(--bs-white) !important;
}

/*** Shop Page End ***/

/*** Single Products Start ***/
.single-product .owl-nav .owl-prev,
.single-product .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -13%;
  font-size: 22px;
  color: #015e3f;
}

.single-product .owl-nav .owl-prev {
  left: 0;
}

.single-product .owl-nav .owl-next {
  right: 0 !important;
}

.single-product .single-carousel .owl-dots {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  transition: 0.5s;
}

.single-product .single-carousel .owl-dots .owl-dot img {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  margin-right: 15px;
  /* border: 2px solid #015e3f; */
  transition: 0.5s;
}

.single-product .single-carousel .owl-dots .owl-dot.active img {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  border: 1px solid #004917;
  box-shadow: 0 0 10px rgba(0, 73, 23, 0.4);
}

.related-product .related-carousel .related-item {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 125px;
  transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-add {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  z-index: 99;
}

.related-product .related-carousel .related-item:hover .related-item-add {
  background: var(--bs-white);
  margin-bottom: -80px;
  opacity: 1;
}

.related-product .related-carousel .related-item:hover .related-item-inner {
  border-bottom: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.related-product
  .related-carousel
  .related-item
  .related-item-inner
  .related-item-inner-item {
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  overflow: hidden;
}

.related-product
  .related-carousel
  .related-item
  .related-item-inner
  .related-item-inner-item
  .related-new,
.related-product
  .related-carousel
  .related-item
  .related-item-inner
  .related-item-inner-item
  .related-sale {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.related-product
  .related-carousel
  .related-item
  .related-item-inner
  .related-item-inner-item
  .related-new {
  background: #015e3f;
  color: var(--bs-white);
}

.related-product
  .related-carousel
  .related-item
  .related-item-inner
  .related-item-inner-item
  .related-sale {
  background: #015e3f;
  color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner img {
  transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner img {
  transform: scale(1.1);
}

.related-product
  .related-carousel
  .related-item
  .related-item-inner
  .related-item-inner-item
  .related-details {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}

.related-product
  .related-carousel
  .related-item
  .related-item-inner
  .related-item-inner-item
  .related-details
  a
  i {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #015e3f;
  color: var(--bs-white);
  transition: 0.5s;
}

.related-product
  .related-carousel
  .related-item:hover
  .related-item-inner
  .related-item-inner-item
  .related-details
  a
  i:hover {
  background: #015e3f;
  color: var(--bs-white);
}

.related-product
  .related-carousel
  .related-item:hover
  .related-item-inner
  .related-details {
  opacity: 1;
}

.related-product .owl-nav .owl-prev,
.related-product .owl-nav .owl-next {
  position: absolute;
  top: -40px;
  padding: 5px 40px;
  border-radius: 30px;
  background: #015e3f;
  color: var(--bs-white);
  transition: 0.5s;
}
.related-item-inner-category {
    font-size: 0.8rem;
}
.related-product .owl-nav .owl-prev {
  left: 0;
}

.related-product .owl-nav .owl-next {
  right: 0;
}

.related-product .owl-nav .owl-prev:hover,
.related-product .owl-nav .owl-next:hover {
  background: var(--bs-secondary) !important;
}
/*** Single Products End ***/

/*** Footer Start ***/
.footer {
  background: #015e3f;
}
.footer .footer-item a {
  line-height: 30px;
  color: #fff;
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 30px;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: #fff;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  background: #004917 !important;
}
/*** copyright end ***/
/* scss accetecsac */

.topbarContainer {
  background: #004917 !important;
  color: #ffffff !important;
}
.gifDelibery {
  height: 40px;
}
.socialMenu {
  display: flex;
  gap: 8px;
}
.socialMenu a {
  color: inherit;
  text-decoration: none;
  font-size: 20px;
}
.socialItem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  transition: transform 0.3s;
}
.socialItem:hover {
  transform: translateY(-5px);
}
.facebook {
  background: #0762f7;
  color: #fff;
}
.facebook:hover {
  background: #0762f7;
  color: #fff;
}

.instagram {
  background: linear-gradient(
    to top right,
    #f7b634,
    #f3a62f,
    #f48638,
    #f52b51,
    #c31d97
  );
  color: #fff;
  border: none;
}
.instagram:hover {
  background: linear-gradient(
    to top right,
    #f7b634,
    #f3a62f,
    #f48638,
    #f52b51,
    #c31d97
  );
  color: #fff;
}
.tiktok {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}
.tiktok:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

.logo {
  width: 100%;
  height: 40px;
}
.topbarSubContainer {
  background: #015e3f;
}
.navbarContainer {
  background: #004917;
}
.navbarContainer .navbar {
}
.navbarContainer .navbar button h4 {
  color: #fff;
}
.navbarContainer .navbar-collapse {
  width: 600px;
}
.categories-bars {
  position: relative;
  width: 300px;
  background: #fff;
}

.category-item {
  position: relative;
}

.categories-bars-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.categories-bars-item:hover {
  background: #347e65;
  color: #fff;
}

/* Submenú lateral */
.subcategories-list {
  display: none;
  position: absolute;
  top: 0;
  left: 300px; /* se muestra a la derecha */
  width: 300px;
  background: #fff;
  /* border-left: 2px solid #347e65; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  z-index: 10;
}

.subcategories-list li a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.subcategories-list li a:hover {
  background: #004917;
  color: #fff;
}

/* Mostrar el submenú cuando haces hover */
.category-item:hover .subcategories-list {
  display: block;
}
.searchTopbar {
}
.searchTopbar input {
  background: #347e65;
}
.searchTopbar input::placeholder {
  color: #fff;
}
.searchTopbar .form-control:focus {
  background: #347e65;
  color: #fff;
  box-shadow: none;
}
.searchTopbar button {
  background: #347e65;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: default !important;
}
.searchTopbar button:hover,
.searchTopbar button:active,
.searchTopbar button:focus {
  color: #fff;
  box-shadow: none;
  outline: none;
}

/* Oculta la flechita del datalist */
input[list]::-webkit-calendar-picker-indicator {
  display: none !important;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
}

.navbarMain {
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25d366;
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp i {
  font-size: 1.4rem;
}

.btn-whatsapp:hover {
  background-color: #1ebe5b;
  transform: translateY(-2px);
  color: #fff;
}

.btn-whatsapp:active {
  transform: scale(0.97);
}
.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 25s linear infinite;
}

/* Cada item con ancho fijo para sincronización */
.slide-item {
  flex: 0 0 auto;
  width: 180px; /* <--- IMPORTANTE (ajusta este valor) */
  padding: 20px;
  display: flex;
  justify-content: center;
}

.slide-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* accordion shop*/
/* CONTENEDOR PRINCIPAL */
.custom-accordion .accordion-item {
  background: transparent;
  border: none;
  padding: 0;
}

/* BOTÓN DEL ACCORDION */
.custom-accordion .accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #222; /* color del texto */
  transition: color 0.3s ease;
}

/* Hover en el botón principal */
.custom-accordion .accordion-header:hover {
  color: #015e3f; /* azul Bootstrap (puedes cambiarlo) */
}

/* ICONO */
.arrow-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Rotación al abrir */
.accordion-item.active .arrow-icon {
  /* transform: rotate(180deg); */
}

/* CONTENIDO */
.custom-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 10px; /* sangría bonita */
}

/* MOSTRAR CONTENIDO */
.custom-accordion .accordion-item.active .accordion-content {
  max-height: 400px;
}

/* LISTA INTERNA */
.custom-accordion .list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}

/* ÍTEMS */
.custom-accordion .list li {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* línea suave */
}

/* Último sin línea */
.custom-accordion .list li:last-child {
  border-bottom: none;
}

/* ENLACES */
.custom-accordion .categories-item a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  transition: color 0.3s ease;
}

/* Hover */
.custom-accordion .categories-item a:hover {
  color: #0d6efd; /* azul bootstrap */
}

.title-animated {
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 15px;
}

/* Línea pequeña por defecto */
.title-animated::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* separación del texto */
  width: 25%; /* pequeño por defecto */
  height: 2px;
  background: #015e3f; /* tu color (puedes cambiarlo) */
  transition: width 0.3s ease;
}

/* Al hacer hover → se agranda */
.title-animated:hover::after {
  width: 100%;
}

/* Estrella */
.stars {
  display: flex;
  gap: 3px;
}

.stars i {
  font-size: 16px;
  color: #c8c8c8; /* color gris suave para las vacías o inactivas */
  transition: color 0.2s ease;
}

.stars i.active {
  color: #f7d20b; /* amarillo dorado bonito */
}
.textThrough {
  color: #919191 !important;
}

/* FILTRO DE SHOP */
/* Contenedor personalizado */
.custom-select-container {
  background-color: #f8f9fa; /* fondo suave */
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

/* Select personalizado */
.custom-select-sm {
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #004917; /* color de tu paleta */
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  min-width: 160px;
  color: #004917; /* texto en verde oscuro */
}

/* Hover y focus */
.custom-select-sm:hover,
.custom-select-sm:focus {
  border-color: #004917; /* verde principal */
  box-shadow: 0 0 5px rgba(0, 73, 23, 0.3);
  outline: none;
}

/* Flecha personalizada */
.custom-select-sm {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23004917' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1em;
}

/* ICONOS SHOP ORDENAR */

/* Contenedor de tabs */
.icon-tabs {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
}

/* Ítems individuales */
.icon-tabs .nav-item .nav-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s ease;
  font-size: 1.2rem; /* tamaño más agradable */
  color: #004917; /* tu color principal */
  border: 1px solid #ddd;
}

/* Hover / activo */
.icon-tabs .nav-item .nav-link:hover,
.icon-tabs .nav-item .nav-link.active {
  background-color: #004917; /* verde principal */
  color: #fff;
  transform: scale(1.1);
  border-color: #004917;
}

/* Contenedor del search */
.search-container {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Input */
.search-input {
  border: none;
  border-radius: 50px 0 0 50px;
  outline: none;
  box-shadow: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  box-shadow: 0 0 10px rgba(0, 73, 23, 0.3); /* verde de tu paleta */
}

/* Icono */
.search-icon {
  background-color: #004917; /* verde principal */
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-icon:hover {
  background-color: #006622; /* verde más claro al hover */
  transform: scale(1.1);
}

/* Ajuste del icono dentro del span */
.search-icon i {
  font-size: 1.1rem;
}

/* SEARCH INPUT SHOP */
.inputSearchShop {
}
.inputSearchShop .form-control {
  border-right: none;
}
.inputSearchShop .form-control:focus,
.inputSearchShop .form-control:active {
  border: 1px solid #ced4da;
  border-right: none;
  box-shadow: none;
}
.inputSearchShop .input-group-text {
  background: transparent;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  border-left: none; /* sin borde izquierdo */
}
.inputSearchShop .form-control::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer; /* cursor pointer si quieres que sea clickeable */
}

/* SOBRE NOSOTROS */
/* Cards suaves y modernas */
.vision-card {
  background: #ffffff;
  border-left: 4px solid #004917; /* tu color clave */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Iconos */
.iconbox i {
  color: #004917 !important;
}

/* Título principal */
.text-primary {
  color: #004917 !important;
}

/* Lista de valores */
.vision-card ul li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* Logo */

.logo-sm {
  height: 25px;
}
.navbar-brand-sm {
  padding: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 991.98px) {

    /* QUITAMOS EL ANCHO FIJO QUE ROMPE MOBILE */
    .navbarContainer .navbar-collapse {
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* Forzamos el sistema collapse */
    .navbar-collapse-native {
        display: none;
        width: 100%;
        background: #004917;
        padding: 15px;
        border-radius: 0 0 12px 12px;
    }

    .navbar-collapse-native.show {
        display: block !important;
    }

    .navbar-nav {
      margin-bottom: 10px;
    }
}


/* Animación general para los botones de compartir */
.share-btn {
  transition: transform 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-5px);
}
.noResults {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    max-height: 350px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.search-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: .2s;
}

.search-item:hover {
    background: #f4f6f8;
}

.search-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
}

.search-item .name {
    font-weight: 600;
    font-size: 14px;
}

.search-item .price {
    font-size: 13px;
    color: #2e8b57;
}
/* Contenedor principal */
.menu-categorias {
    position: relative;
}

/* El UL principal */
.menu-categorias .categories-bars {
    position: relative;
}

/* TODOS los submenus */
.menu-categorias .subcategories-list {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 230px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.15);
    z-index: 9999;
}

/* Primer nivel (hijos del padre) */
.menu-categorias .categories-bars > .category-item > .subcategories-list {
    left: 100%;
    top: 0;
}

/* Segundo nivel (nietos) */
.menu-categorias .subcategories-list .category-item > .subcategories-list {
    left: 100%;
    top: 0;
}

/* Mostrar submenus SOLO con hover */
.menu-categorias .category-item:hover > .subcategories-list {
    display: block;
}
.img-fit {
    height: 299px !important;
    width :100%;
    object-fit: cover;
}
.related-item-name {
    font-size: 1rem;
    font-weight: 600;
}
.products-mini-content-name {
    font-size: 0.8rem;
    font-weight: 600;
}
.products-mini-content-precio {
   font-size: 1rem;
}
.section-left-title {
    font-size: 0.8rem;
}

.caracteristicas-container {
  width: 100%;       /* ocupa todo el contenedor padre */
  max-width: 100%;   /* nunca se salga del ancho disponible */
  overflow-x: auto;  /* permite scroll solo si algo realmente desborda */
  box-sizing: border-box;
}

/* Para contenido generado por Summernote */
.caracteristicas-container img,
.caracteristicas-container table,
.caracteristicas-container iframe {
  max-width: 100%;
  height: auto;      /* mantiene proporción */
}

.caracteristicas-container table {
  table-layout: fixed; /* evita que tablas grandes rompan el contenedor */
  word-wrap: break-word;
}

.caracteristicas-container p,
.caracteristicas-container h1,
.caracteristicas-container h2,
.caracteristicas-container h3,
.caracteristicas-container h4,
.caracteristicas-container h5,
.caracteristicas-container h6 {
  margin-left: 0;
  margin-right: 0;
  width: auto !important;
}

.img_topbar {
    height: 70px;
    object-fit: cover;
}
.carousel-content-title {
        font-size: 3rem;
}
.carousel-banner-price {
    color: #fff !important;
    background: #015e3f !important;
    padding: 4px 8px;
    border-radius: 8px;
}
#imagenGrande {
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

#imagenGrande.zoomed {
  transform: scale(2); /* Ajusta nivel de zoom */
  cursor: zoom-out;
}

