.categories-dropdown {
  cursor: pointer;
  position: relative;
  display: flex;
  height: inherit;
}

.categories-dropdown::after {
  content: ">";
}

.categories-dropdown > .top-category {
  position: absolute;
  top: 185%;
  width: max-content;
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-inline: 20px 40px;
  transition: height 0.3s;
  overflow: auto;

  height: 0;
}

.categories-dropdown > .top-category > li {
  text-align: left;
  border-bottom: 1px solid gray;
  padding: 5px 20px;
  padding-left: 0;
  position: relative;
  transition: all 0.3s;
  display: flex;
}

.categories-dropdown > .top-category > li:hover p {
  color: #ffe220;
  border-color: #ffe220;
  transition: all 0.3s;
}

.categories-dropdown > .top-category > li > p::after {
  content: ">";
  position: absolute;
  right: 0;
}

.categories-dropdown > .top-category > li:hover .sub-category {
  min-width: max-content !important;
  max-width: max-content !important;
  width: max(350px, max-content) !important;
  height: max-content;
  /* height: clamp(70px, 700px ,750px); */
  opacity: 1;
  overflow: auto;
  max-height: 210px;
}

.sub-category {
  position: absolute;
  /* transform: translateX(300px); */
  left: 100% !important;
  top: 0;
  padding-left: 40px;
  background-color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 0;
  min-width: 0;
  height: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.sub-category li {
  border-bottom: 1px solid gray;
  padding: 8px;
  padding-right: 19px;
}

.showCategories {
  height: max-content !important;
  overflow: initial !important;
}

@media screen and (max-width: 993px) {
  .categories-dropdown {
    display: none;
  }
  .side-filter-shop {
    order: 2;
  }
}

.categories-mob,
.categories-mob * {
  all: unset;
}

.categories-mob {
  display: flex;
  flex-direction: row;
  padding-block: 10px;
}

.categories-mob .toggle-button .toggle-button-wrapper {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 10px;
  cursor: pointer;
  gap: 20px;
}

.categories-mob .toggle-button {
  position: relative;
}

.categories-mob .toggle-button .top-category-mob {
  position: absolute;
  top: 150%;
  left: 10%;
  background-color: rgb(253, 253, 253) !important;
  color: rgb(90, 85, 85);
  display: flex !important;
  flex-direction: column !important;
  gap: 3px;
  padding-inline: 20px 40px;
  transition: all 0.4s;
  z-index: 9999;

  width: max-content;
  overflow: hidden;
  height: 0;
  opacity: 0;
}

.showCategoriesMob {
  opacity: 1 !important;
}

.categories-mob .toggle-button .top-category-mob > li {
  text-align: left;
  border-bottom: 1px solid gray;
  padding: 5px 10px;
  padding-left: 0;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.categories-mob .toggle-button .top-category-mob > li:hover p {
  color: #ffe220;
  border-color: #ffe220;
  transition: all 0.3s;
  cursor: pointer;
}
.categories-mob .toggle-button .top-category-mob > li a {
  margin-right: 15px;
}

.categories-mob .toggle-button .top-category-mob > li:hover .sub-category-mob {
  transition: all 0.3s;
}

.sub-category-mob {
  padding-left: 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.5s;

  max-width: 0;
  min-width: 0;
  height: 0;
  opacity: 0;
}

.showSubCategoryMob {
  min-width: max-content !important;
  max-width: max-content !important;
  width: max(350px, max-content) !important;
  height: max-content;
  opacity: 1;
  overflow: auto;
}

.sub-category-mob li {
  padding: 8px;
  padding-right: 19px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.sub-category-mob li:not(:last-child) {
  border-bottom: 1px solid gray;
}

.categories-mob .toggle-button .button1 {
  width: 25px !important;
  height: 25px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.categories-mob .toggle-button .button1 span {
  width: 100%;
  height: 2px;
  background-color: gray;
}

.categories-mob .toggle-button p {
  margin: unset;
  font-weight: 700;
  font-size: 1.2em;
}

@media screen and (min-width: 992px) {
  .categories-mob {
    display: none;
  }
}

/* .offers-slider, .offers-slider *{
	all: unset !important;
} */

.offers-slider {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin: 0 auto !important;
  height: 100%;
  margin-bottom: 100px !important;
}

.offers-slider .header {
  margin: 20px 0 !important;
  width: 100% !important;
  text-align: left !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.offers-slider .header .filtered-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.offers-slider .header .filtered-items .filtered-item {
  background-color: var(--main-color);
  padding: 4px 14px;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
}

.offers-slider .header .title p {
  margin: 0 !important;
  font-size: 2em !important;
  padding: 15px !important;
  z-index: 1 !important;
  border-bottom: 2px solid var(--main-color) !important;
  width: max-content;
}

.offers-slider .header .title p::before {
  content: "";
  position: absolute !important;
  bottom: 0px !important;
  left: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background-color: rgb(209, 196, 196) !important;
  isolation: isolate !important;
  z-index: -1 !important;
}

.offers-slider .splide {
  width: 100%;
  height: max-content;
  /* padding-block: 50px; */
  /* min-height: 300px; */
  padding: 0 10px;
}

.splide__pagination {
  counter-reset: pagination-num;
  bottom: -30px;
}

.splide__pagination__page.is-active {
  background-color: var(--main-color) !important;
}

.splide__arrow.splide__arrow--prev,
.splide__arrow.splide__arrow--next {
  color: var(--main-color);
}

.splide__arrow.splide__arrow--prev {
  left: 8px;
}

.splide__arrow.splide__arrow--next {
  right: 8px;
}

.offers-slider .splide__list .splide__slide {
  display: flex;
  /* width: 250px !important; */
}

.offers-slider .splide__list .splide__slide .container,
.shop-product {
  transition: all 0.5s;
  padding: 0 !important;
  padding-block: 10px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offers-slider .splide__list .splide__slide .container:hover,
.shop-product:hover {
  background-color: rgb(235, 241, 243);
  transform: scale(1.01);
}

.offers-slider .splide__list .splide__slide .container .splide-category-name,
.shop-product .splide-category-name {
  text-align: left;
  font-size: 12px;
  color: gray !important;
}

.offers-slider .splide__list .splide__slide .container .splide-category-name a,
.shop-product .splide-category-name a {
  color: gray !important;
}

.offers-slider .splide__list .splide__slide .container .item-name,
.shop-product .item-name {
  text-align: left;
  font-size: 14px;
}

.offers-slider .splide__list .splide__slide .container .price,
.shop-product .price {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 50px;
  width: 100%;
}

.offers-slider .splide__list .splide__slide .container .card-descritpion,
.shop-product .card-descritpion {
  text-align: left;
  padding: 10px;
  display: flex;
  /* text-decoration: underline; */
  color: gray !important;
}

.offers-slider .splide__list .splide__slide .container .card-descritpion a,
.shop-product .card-descritpion a {
  color: gray !important;
}

.offers-slider
  .splide__list
  .splide__slide
  .container
  .card-descritpion
  a:hover,
.shop-product .card-descritpion a:hover {
  color: rgb(70, 94, 230) !important;
  text-decoration: underline;
}

.offers-slider .splide__list .splide__slide .container .price p,
.shop-product .price p {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
}

/* .offers-slider .splide__list .splide__slide .container .price p:last-child,
.shop-product .price p.discount {
	text-decoration: line-through;
	color: red;
} */
.discount {
  text-decoration: line-through;
  color: red;
}

.offers-slider .splide__list .splide__slide .container .price p:first-child,
.shop-product .price p:first-child {
  font-weight: 900;
}

.offers-slider .splide__list .splide__slide .container .cart-whish-list,
.shop-product .cart-whish-list {
  display: flex;
  justify-content: space-around;
  background-color: rgb(241, 231, 231);
  margin-top: auto;
}

.offers-slider .splide__list .splide__slide .container .cart-whish-list i,
.shop-product .cart-whish-list i {
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
  font-style: initial !important;
  cursor: pointer;
}

.offers-slider
  .splide__list
  .splide__slide
  .container
  .cart-whish-list
  .whish-list
  i,
.shop-product .cart-whish-list .whish-list i {
  color: red;
}

.offers-slider .splide__list .splide__slide .container .cart-whish-list .cart i,
.shop-product .cart-whish-list .cart i {
  color: var(--main-color);
}

.offers-slider .splide__list .splide__slide .container .item-image,
.shop-product .item-image {
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  height: 250px;
  object-fit: cover !important;
}

.offers-slider .splide__list .splide__slide .container .item-image img,
.shop-product .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.offers-slider .splide__list .splide__slide .container .compare,
.shop-product .compare {
  font-style: initial !important;
  background-color: gray;
  color: #fff;
  margin-top: 20px;
  padding: 5px 10px !important;
  width: 50px;
  margin: 10px auto 0 auto;
  border-radius: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.offers-slider .splide__list .splide__slide .container .compare i,
.shop-product .compare i {
  font-style: initial !important;
  color: #fff;
}

.shop-product a:last-child {
  text-align: center;
}

.featured-offers {
  display: grid;
  grid-template-columns: repeat(auto-fill, 422px);
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 25px;
}

@media screen and (max-width: 480px) {
  .featured-offers {
    grid-template-columns: repeat(auto-fill, 350px);
  }

  .featured-offer {
    height: 350px;
  }
}

.featured-offer {
  height: 422px;
  width: 100%;
  position: relative;
  overflow: hidden;
  /* border: 1px solid rgb(235, 229, 229);
	box-shadow: 0px 1px 5px var(--main-color) !important; */
}

.featured-offer .infos {
  position: relative;
  height: 100%;
  width: 100%;
}

.featured-offer .infos .image {
  width: 100%;
  height: 100%;
}

.featured-offer .infos .image img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: contain;
}

.featured-offer .name-price {
  position: absolute;
  bottom: 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  height: 80px;
}

.name-price p {
  padding: 0;
  margin: 0;
  font-size: 1.3em;
  font-weight: 900;
  color: #fff;
}

.featured-offer .actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  transform: scale(0);
  pointer-events: none;
  transition: all 0.3s;
}

.featured-offer .actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  isolation: isolate;
  z-index: -1;
  transition: all 0.3s;
  transform: scale(0);
}

.featured-offer:hover .actions,
.featured-offer:hover .actions::before {
  pointer-events: all;
  transform: scale(1);
}

.featured-offer .actions .name {
  font-size: 1.5em;
  font-weight: 900;
  color: #fff;
}

.featured-offer .actions .cart-whishlist {
  display: flex;
  gap: 60px;
}

.featured-offer .actions .cart-whishlist * {
  font-style: initial;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.featured-offer .actions .cart-whishlist i:first-child:hover {
  color: var(--main-color);
}

.featured-offer .actions .cart-whishlist i:last-child:hover {
  color: red;
}

.swiper-title-3::before {
  background-color: var(--main-color) !important;
  all: unset;
}

.swiper-title-3 {
  background: linear-gradient(to bottom, white, var(--main-color)) !important;
}

@media (max-width: 1200px) {
  .rd-navbar-brand {
    left: 30% !important;
    transform: translateX(-50%);
  }
  .mobile-whatsapp {
    display: block !important;
  }
}

/* My New Edits*/
.product-simple .unit .product-simple-figure img {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-simple .unit .product-simple-figure {
  width: 97% !important;
  min-width: 97% !important;
  max-width: 97% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.status-stock {
  width: 100%;
  height: 40px;
  gap: 10px;
  padding-inline: 20px;
  /* align-items: center; */
  /* justify-content: center; */
}

.status-stock p:first-child {
  font-weight: 700;
}

.status-stock p:first-child::after {
  content: ":";
}

.product-minimal-figure img {
  width: 106px !important;
  height: 104px !important;
  object-fit: cover;
}

.product-whatsapp {
  width: 240px;
  height: 80px;
  margin-top: 30px;
  margin-left: 50px;
}

.product-whatsapp img {
  width: 100%;
  height: 100%;
}

.single-product-addtional-info ul {
  margin-top: 20px;
  padding-left: 40px;
  /* color: red */
}

.single-product-addtional-info ul li {
  display: flex;
  gap: 10px;
}

.single-product-addtional-info ul li h6 {
  position: relative;
}

.single-product-addtional-info ul li h6::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgb(70, 64, 64);
  top: 45%;
  left: -10px;
}

/* My New Edits*/

.track-order {
  max-width: 960px;
  margin: 0 auto;
}

.track-order h1 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}

.track-order form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.track-order form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 8px;
}

.track-order form button {
  background-color: #1fbbe4;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  transition: all 1s;
}

.track-order button:hover {
  background-color: #08748f;
}

.track-order .order-status {
  margin-bottom: 20px;
}

.track-order h3 {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.track-order table {
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
}

.track-order th,
.track-order td {
  padding: 10px;
  border: 1px solid #ccc;
}

.track-order th {
  background-color: #eee;
}

@media screen and (max-width: 576px) {
  .track-order {
    max-width: 100%;
  }

  .track-order form {
    display: block;
  }

  .track-order input {
    width: 100%;
  }

  .track-order .order-status {
    margin-top: 20px;
  }
}

.wishlist-a {
  max-width: 1087px;
  margin: 0 auto;
}

.wishlist-a h1 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.wishlist-a .products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.wishlist-a .product {
  width: 250px;
  margin: 10px;
}

.wishlist-a .product img {
  width: 100%;
}

.wishlist-a .product h2 {
  font-size: 1.2em;
  margin: 10px 0;
}

.wishlist-a .product p {
  margin-bottom: 10px;
}

.wishlist-a .product button {
  background-color: #000;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.wishlist-a .product button:hover {
  background-color: #333;
}
