@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary900: #b541fd;
  --primary800: #b479d9;
  --primary400: rgba(180, 121, 217, 0.2);
  --primary300: rgba(180, 121, 217, 0.15);
  --secondary800: #ffbf00;
  --secondary500: rgba(255, 200, 0, 0.15);
  --cat-1: #f5f5f5;
  --cat-2: #cee0d2;
  --cat-3: #ffead9;
  --cat-4: #f4eefa;
  --cat-5: #f7ecd8;
  --text-secondary: #7e7e7e;
  --mainFont: "Plus Jakarta Sans", sans-serif;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: 0;
  outline: 0;
}

img {
  width: 100%;
}

body {
  font-family: var(--mainFont);
  overflow-x: hidden;
}

/* header */
.p-4 {
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.justify-center {
  justify-content: center !important;
}

.bg-light {
  background: linear-gradient(
    270deg,
    var(--primary400) 6.75%,
    var(--primary300) 98.85%
  );
}

.font-main {
  font-family: var(--mainFont);
  font-weight: 700;
  font-size: 18px;
}

.btn-white {
  font-size: 15px;
  background-color: white;
  padding: 6px 20px;
  border-radius: 7px;
  color: black;
  transition: 0.4s ease-in;
}

.btn-white:hover {
  background-color: var(--primary900) !important;
  color: white !important;
  transition: 0.4s ease-in;
}

.ml-4 {
  margin-left: 12px;
}

/* main header */

.position-relative {
  position: relative;
}

.p-8 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.w-95 {
  width: 95%;
  margin: 0 auto;
}

.logo {
  width: 250px;
}

.logo,
.cart,
.account {
  z-index: 100;
}

.logo img {
  width: 100%;
  height: 100%;
}

.w-35 {
  width: 35%;
}

.list-item a {
  font-family: var(--mainFont);
  color: black;
  font-weight: bold;
  transition: 0.4s ease-out;
}

.list-item.active a,
.list-item a.active,
.list-item a:hover {
  color: var(--primary800);
  transition: 0.4s ease-in;
}

.fa-angle-down {
  font-size: 12px;
  font-weight: bold;
}

.dropdown-shop,
.shop-list-item {
  position: relative;
}

.categories-dropdown,
.shop-dropdown {
  display: none;
  position: absolute;
  left: 5%;
  z-index: 99;
  width: 90%;
}

.categories-dropdown {
  background-color: white;
}

.full-cat {
  left: 0;
  width: 100%;
}

.checkout-nested {
  display: none;
  position: absolute;
  right: -90%;
  top: -20px;
  z-index: 1;
  width: 90%;
}

.checkout-nested li {
  background-color: white;
}

.dropdown-categories:hover .categories-dropdown,
.dropdown-shop:hover .shop-dropdown,
.shop-list-item:hover .checkout-nested {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.promo {
  color: white;
  background-color: var(--primary800);
  padding: 0 2rem;
  margin: 1rem;
  margin-top: 3rem;
  border-radius: 1rem;
  cursor: pointer;
  width: 50%;
  height: 400px;
}

.promos .promo {
  background-color: #f4eefa;
  color: #000;
}

.promo:nth-of-type(2) {
  background-color: #ffd9e6;
  color: black;
}

.promo:nth-of-type(2) .promo-text p,
.promos .promo .promo-text p {
  color: var(--text-secondary);
}

.promo .promo-image img {
  transition: 0.7s all;
}

.promo:hover .promo-image img {
  transform: scale(1.05);
  transition: 0.7s all;
}

#navlist {
  display: none;
}

.promo-text {
  width: 60%;
}

.promos .promo-text {
  width: 45%;
}

.promos .promo-image {
  width: 55%;
}

.promo-image {
  width: 40%;
}

.promo-text .promo-header {
  font-size: 2.25rem;
  line-height: 3.25rem;
  margin-bottom: 1.5rem;
}

.promo-text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.promo .btn-white,
.enjoy-footer .btn-white {
  padding: 0.75rem 1.5rem;
}

.mt-10 {
  margin-top: 30px;
}

.d-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-left: 1rem;
}

.category {
  min-height: 350px;
  border-radius: 12px;
  cursor: pointer;
  transform: scale(1);
  overflow: hidden;
  transition: 0.7s all;
  width: 90%;
  background-color: var(--cat-1);
}

.category:nth-of-type(2) {
  background-color: var(--cat-2);
}

.category:nth-of-type(3) {
  background-color: var(--cat-3);
}

.category:nth-of-type(4) {
  background-color: var(--cat-4);
}

.category:nth-of-type(5) {
  background-color: var(--cat-5);
}

.category img {
  transition: 0.7s all;
}

.category:hover img {
  transform: scale(1.05);
  transform-origin: center center;
  transition: 0.7s all;
}

.btn-categories {
  position: absolute;
  bottom: 50px;
  left: 45px;
}

.btn-categories .btn-white {
  padding: 0.75rem 1.5rem;
}

.btn-categories .btn-white:hover {
  background-color: white !important;
  color: black !important;
}

.btn-categories sup {
  margin-left: 4px;
  opacity: 0;
  transition: 0.7s all;
}

.text-primary {
  color: var(--primary800) !important;
}

.category:hover sup {
  opacity: 1;
  transition: 0.7s all;
}

.shop-dropdown {
  padding-top: 1rem;
  left: -20%;
}

.shop-list {
  border-radius: 5px;
  box-shadow: -5px 5px 10px 0px #ccc;
  min-width: 150px;
  padding: 0.75rem;
  padding-right: 0;
  background-color: white;
}

.checkout-nested li {
  box-shadow: 3px 3px 5px 2px #ccc;
  min-width: 150px;
  padding: 0.75rem;
}

.shop-list li {
  margin-top: 1rem;
}

.shop-list li.active a {
  color: var(--primary800) !important;
}

.shop-list a {
  font-weight: 500;
  font-size: 15px;
}

.cart {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: #f5f5f5;
  border-radius: 50%;
  text-align: center;
  position: relative;
  margin-right: 1rem;
}

.cart a {
  color: black;
}

.cart a.active {
  color: var(--primary800);
}

.btn-black {
  padding: 12px 36px;
  border-radius: 12px;
  margin-left: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  transition: 0.7s all;
}

.btn-black:hover {
  background-color: var(--primary900);
  transition: 0.7s all;
}

.sm-block {
  display: none;
}

/* ----------------------- Hero -----------------------  */
.hero {
  width: 83.5%;
  margin: 5rem auto;
}

.hero-text {
  width: 45%;
}

.text-secondary {
  background-color: var(--secondary500);
  color: var(--secondary800);
  width: fit-content;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 2rem;
}

.main-header {
  font-size: 68px;
  line-height: 1.2;
}

.main-header .text-animated {
  display: block;
  min-height: 82px;
}

.text-gray {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin: 2rem 0;
  color: var(--text-secondary);
}

.btn-primary {
  padding: 12px 36px;
  border-radius: 12px;
  font-weight: bold;
  background-color: var(--primary800);
  color: white;
  transition: 0.7s all;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary900) !important;
  transition: 0.7s all;
}

.justify-default {
  justify-content: unset;
}

.link-primary {
  cursor: pointer;
  color: #000;
  height: 56px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  background-color: transparent;
  transition: 0.75s all;
}

.link-primary:hover {
  color: var(--primary900);
  transition: 0.75s all;
}

.ml-2 {
  margin-left: 8px;
}

.mr-2 {
  margin-right: 8px;
}

.ml-8 {
  margin-left: 24px;
}

.ml-22 {
  margin-left: 69px;
}

.sold {
  position: relative;
}

.sold::before {
  content: "";
  width: 1px;
  height: 68%;
  position: absolute;
  background-color: #ccc;
  left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.state-header {
  font-size: 48px;
  font-weight: 700;
  display: block;
}

.state-paragraph {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  color: var(--text-secondary);
}

.align-default {
  align-items: initial;
}

.hero-image {
  position: relative;
  width: 55%;
}

.img-container {
  position: absolute;
  opacity: 0;
  width: 100%;
  top: 0;
  left: -1900px;
}

.img-container-active {
  position: absolute;
  opacity: 1;
  left: 0;
  top: -75px;
  width: 100%;
  animation: fadeIn 0.5s;
}

.line-after::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../images/line.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-origin: content-box;
  top: 50px;
  left: 20.5%;
  width: 450px;
  height: 80px;
}

/* ------------quote------------- */
.quote,
.banner {
  background-color: #f5f5f5;
  padding: 5rem 0;
}

.feautured {
  padding: 5rem 0;
  position: relative;
}

.quote-center {
  width: 60%;
  line-height: 1.4;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
}

.categories,
.banner-container,
.promos,
.whyus-wrapper {
  width: 83.5%;
  margin: 3rem auto;
}

.promos,
.whyus {
  padding: 5rem 0;
}

.whyus {
  padding-bottom: 0 !important;
}

.banner-text {
  width: 45%;
}

.title {
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.w-45 {
  width: 45%;
  margin: 0 auto;
}

/* slider products */
.swiper {
  width: 83.5%;
  margin: 3rem auto;
}

.swiper-wrapper {
  width: 100%;
}

.swiper-product .swiper-slide {
  width: 350px !important;
  padding: 0 15px !important;
  margin-right: 0 !important;
}

.product-card {
  width: 100%;
  position: relative;
  text-align: center;
}

.product-image-container {
  background-color: #e8e8e8;
  padding: 1rem 1rem 0 1rem;
  border-radius: 12px;
  cursor: pointer;
}

.btn-absolute {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px;
  border-radius: 3px;
  cursor: pointer;
  color: white;
  font-weight: 700;
  width: 60px;
  z-index: 90;
}

.product-card .btn-absolute:nth-child(2) {
  top: 50px;
}

.btn-success {
  background-color: var(--primary800);
}

.btn-violet {
  background-color: var(--secondary800);
}

.btn-orange {
  background-color: #f09155;
}

.product-title {
  color: #000;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 5px;
  transition: all 0.5s;
  font-weight: 700;
}

.price {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.product-title:hover {
  color: var(--primary800);
  transition: all 0.5s;
}

.product-container .product-title:hover {
  color: #000;
}

.nodisplay {
  display: none;
}

.price span {
  color: #2ebb77;
  font-weight: 700;
}

.price del {
  color: #9b9b9b;
  font-weight: 600;
  font-size: 85%;
}

.swiper-button-prev,
.swiper-button-next {
  top: 55%;
  left: 60px !important;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: 0.7s all;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary800);
  transition: 0.7s all;
}

.swiper-button-next {
  right: 60px !important;
  left: auto !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #000 !important;
  font-size: 16px;
  font-weight: bold;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: white !important;
  transition: 0.7s all;
}

.colors {
  margin-top: 7px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.color-border {
  border: 1px solid #eee;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  margin: 0 3px;
  cursor: pointer;
  position: relative;
}

.color-border.active {
  border: 1px solid #000;
}

.color-border.no-border {
  border: none;
  width: fit-content;
  color: #000;
}

.color-variation {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.bg-black {
  background-color: #000;
}

.bg-violet {
  background-color: var(--primary800);
}

.color-border:hover .color-tooltip,
.cart-container:hover .color-tooltip,
.size:hover .size-tooltip {
  visibility: visible;
  opacity: 0.95;
  transition: 0.5s all;
}

.color-tooltip,
.size-tooltip {
  padding: 1px 3px;
  position: absolute;
  text-transform: none;
  display: inline-block;
  min-width: 50px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  bottom: 130%;
  left: 50%;
  background-color: rgb(85, 85, 85) !important;
  color: #fff !important;
  font-size: 12px !important;
  line-height: 20px !important;
  font-weight: 500;
  border-radius: 3px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  transition: 0.5s all;
}

.cart-container .color-tooltip {
  min-width: 125px;
}

.no-border .color-tooltip {
  width: 80px;
}

.color-tooltip::after,
.size-tooltip::after {
  width: 0;
  height: 0;
  position: absolute;
  bottom: -6px;
  left: 50%;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #555;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.more-colors {
  font-weight: 700;
  font-size: 16px;
}

.whyus {
  background-image: url(../images/bg-shape.png) !important;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.whyus-text {
  width: 40%;
}

.whyus-text .text-gray {
  margin: -1% 0% 0% 0%;
  padding: 0% 35% 5% 0%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.whyus-grid {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transform: translateY(-100px);
}

.whyus-grid .whyus-grid-item,
.testimonial-card {
  padding: 35px 20px 20px 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  min-height: 325px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: all 0.5s;
  text-align: left;
}

.whyus-grid .whyus-grid-item:hover,
.testimonial-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.5s;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--primary800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  cursor: pointer;
}

.fa-56 {
  font-size: 30px;
}

.whyus h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 700;
  transition: 0.5s all;
  cursor: pointer;
}

.whyus h3:hover {
  color: var(--primary800);
  transition: 0.5s all;
}

.whyus-grid-item .text-gray {
  margin: 0 0 10px;
  line-height: 1.8;
  font-size: 15px;
  font-weight: 500;
}

.testimonials {
  position: relative;
  padding: 5rem 0;
}

.testimonialswiper {
  padding: 1.5rem 1rem !important;
}

.testimonial-card img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}

.personal-info {
  padding-left: 24px;
}

.testimonials-title {
  font-size: 18px;
  margin-bottom: 5px;
  display: inline-block;
}

.subtitle-job {
  color: #7e7e7e;
  font-size: 15px;
  font-weight: 500;
  padding-left: 5px;
}

.stars i {
  font-size: 14px;
  color: #f3bb2e;
}

.testimonial-desc {
  color: #000;
  font-size: 20px;
  line-height: 1.8;
  margin-top: 20px;
  font-weight: 700;
  user-select: none;
}

.testimonials .swiper-pagination {
  bottom: 80px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  padding: 0;
  font-size: 0;
  position: relative;
  background-color: #000;
  line-height: 1;
  transition: all 0.5s;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: transparent;
  border: 1px solid #000;
  width: 14px;
  height: 14px;
  transition: all 0.5s;
}

.enjoy-footer {
  background-color: #f4ebf9;
  position: relative;
  overflow: hidden;
}

.enjoy-text-container {
  width: 83.5%;
  margin: 3rem auto;
  padding: 5rem 0;
}

.enjoy-text-container .title {
  padding: 0% 30% 0% 30%;
}

.enjoy-text-container .text-gray {
  font-size: 20px;
  margin: 1rem 0;
}

.enjoy-footer .btn-white {
  margin: 1rem;
}

.enjoy-footer .mt-3r {
  margin-top: 3rem;
}

.enjoy-footer .banner-decor {
  position: absolute;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.enjoy-footer .banner-decor:nth-of-type(1) {
  top: -8%;
  left: 4%;
  width: 13%;
}

.enjoy-footer .banner-decor:nth-of-type(2) {
  bottom: 15%;
  left: -1%;
  width: 14%;
}

.enjoy-footer .banner-decor:nth-of-type(3) {
  bottom: 8%;
  width: 8.5%;
  left: 21%;
}

.enjoy-footer .banner-decor:nth-of-type(4) {
  top: -7%;
  right: 15%;
  width: 7.6%;
}

.enjoy-footer .banner-decor:nth-of-type(5) {
  top: 30%;
  right: -2%;
  width: 14%;
}

.enjoy-footer .banner-decor:nth-of-type(6) {
  bottom: -1%;
  right: 16%;
  width: 9.6%;
}

.social-media {
  width: 83.5%;
  margin: 0 auto;
  text-align: center;
}

.w-25 {
  flex: 1;
  position: relative;
  padding: 1.75rem 0;
}

.w-25 a {
  width: 100%;
}

.w-25 h6 {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  cursor: pointer;
}

.facebook-icon,
.instagram-icon,
.tiktok-icon,
.pinterest-icon {
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  color: #3b5998;
}

.instagram-icon {
  color: #3f729b;
}

.tiktok-icon {
  color: #000;
}

.pinterest-icon {
  color: #e60527;
}

.w-25:hover {
  background-color: #ebf1fc;
  transition: all 0.5s;
}

.w-25:hover .facebook-icon,
.w-25:hover .instagram-icon,
.w-25:hover .tiktok-icon,
.w-25:hover .pinterest-icon {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.w-25:hover h6 {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

footer {
  padding-top: 5rem;
  background-color: #f5f5f5;
}

.footer-inside {
  display: flex;
  justify-content: space-between;
  width: 83.5%;
  margin: 0 auto;
}

.footer-inside ul {
  flex: 1;
}

.footer-logo {
  width: 170px;
  display: block;
}

.footer-logo img {
  margin-bottom: 12px;
}

.footer-inside .text-gray {
  font-size: 16px;
  font-weight: 500;
}

.footer-inside .mt-3 {
  line-height: 1.4;
  font-size: 18px;
  font-weight: 500;
}

.mt-3 {
  margin-top: 12px !important;
}

.list-header {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px !important;
}

.footer-inside ul li {
  margin-bottom: 15px;
}

.footer-inside ul li a {
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.5s;
  font-weight: 500;
}

.footer-inside ul li a:hover {
  color: var(--primary800);
  transition: all 0.5s;
}

.Newsletter .text-gray {
  margin: 0 !important;
}

.Newsletter form,
.filters form {
  position: relative;
}

.Newsletter form input,
.filters form input {
  background: #fff;
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 1px solid #fff;
  height: 56px;
  padding: 0 20px;
  transition: all 0.5s;
  margin-top: 1rem;
  outline: none;
  width: 100%;
  color: var(--text-secondary);
}

.Newsletter form input:focus,
.filters form input:focus {
  border: 1px solid transparent;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
}

.btn-icon {
  position: absolute;
  top: 45%;
  right: 20px;
  background-color: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: 0.7s all;
}

.btn-icon:hover {
  color: var(--primary800);
  transition: 0.7s all;
}

.footer {
  text-align: center;
  padding-top: 3%;
  padding-bottom: 3%;
}

.copyright.text-gray {
  margin: 0 !important;
}

.copyright a {
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.5s;
  font-weight: 500;
}

.copyright a:hover {
  color: var(--primary800);
  transition: all 0.5s;
}

.payment {
  width: 250px;
  margin: 0.5rem auto;
}

.error {
  color: #e60527;
  padding: 6px 0 0 4px;
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-top: 0.5rem;
}

/* -------------------------------------------- SHOP ------------------------------------------- */
.shop-hero {
  background-color: #f5f5f5;
  padding: 60px 0 70px;
  margin-bottom: 80px;
}

.hero-header {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: 0.5s all;
}

.breadcrumb a:hover {
  color: var(--primary800);
  transition: 0.5s all;
  font-size: 15px;
  font-weight: 500;
}

.delimiter {
  margin: 0 5px;
}

.delimiter::after {
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #7e7e7e;
  content: "";
  position: relative;
  top: -4px;
  margin: 0 3px;
}

.current {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.shop-filter {
  width: 83.5%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.shop-filter .ml-auto {
  font-size: 15px;
  font-weight: 500;
  margin-right: 1rem;
}

.btn-outlined {
  border: 2px solid #eee;
  border-radius: 12px;
  color: #000;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  padding: 0 25px;
  height: 48px;
  line-height: 44px;
  text-transform: capitalize;
  transition: all 0.5s;
  background-color: white;
}

.btn-outlined:hover {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
}

.btn-outlined i {
  margin-right: 12px;
  font-size: 16px;
}

.btn-outlined.active {
  border-color: #000;
  background-color: #000;
  color: white;
  transition: all 0.5s;
}

.filters {
  width: 83.5%;
  margin: 0 auto;
  display: none;
}

.filters.active {
  display: block;
  animation: fadeIn 0.75s;
}

.filters-grid {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.filters input {
  margin-top: 0 !important;
}

.filters-grid h4 {
  padding: 1rem 0;
}

.category-filter ul {
  max-height: 200px;
  overflow-y: scroll;
}

/* Customize the scrollbar */
/* Width and height of the scrollbar */
.category-filter ::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

/* Color of the scrollbar thumb */
.category-filter ::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}

/* Color of the scrollbar track */
.category-filter ::-webkit-scrollbar-track {
  background-color: #eee;
}

/* When hovering over the scrollbar */
.category-filter ::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.catfilter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.catfilter a,
.sort-by a,
.price-filter a {
  color: var(--text-secondary);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  font-size: 15px;
  font-weight: 600;
}

.catfilter:hover a,
.sort-by a:hover,
.price-filter a:hover,
.catfilter.active a {
  color: var(--primary800);
  border-bottom: 1px solid var(--primary800);
}

.filters .btn-icon {
  top: 35% !important;
}

.catfilter span {
  color: #000;
  padding: 0 5px;
  font-size: 13px;
  border-radius: 20px;
  min-width: 30px;
  text-align: center;
  transition: all 0.3s;
}

.catfilter:hover span,
.catfilter.active span {
  background-color: var(--primary900);
  border: 1px solid var(--primary900);
  color: #fff;
  transition: all 0.3s;
}

.sort-by li,
.price-filter li {
  margin-bottom: 20px;
}

.shop-grid {
  width: 83.5%;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.transition-image {
  transition: 2.7s all !important;
  scale: 1.15;
  overflow: hidden;
}

.product-image-container img {
  transition: 0.25s all;
  position: relative;
}

.swiper-button-lock {
  display: block !important;
  opacity: 1 !important;
}

.absolute-add-to-cart {
  position: absolute;
  top: 25px;
  right: 25px;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.5s all;
}

.product-image-container:hover .absolute-add-to-cart {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: 0.5s all;
}

.cart-container {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.7s all;
}

.cart-container i {
  color: #000;
  transition: 0.7s all;
  font-size: 12px;
}

.cart-container:hover {
  background-color: var(--primary800);
  transition: 0.7s all;
}

.cart-container:hover i {
  color: white;
  transition: 0.7s all;
}

.paggination {
  text-align: center;
  width: fit-content;
  margin: 5rem auto;
  display: flex;
}

.prevNext {
  background-color: rgb(94, 94, 94);
  color: #ffffff;
  padding: 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.5s all;
}

.prevNext:hover {
  background-color: #000;
  transition: 0.5s all;
}

.pageNum {
  background-color: white;
  padding: 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.5s all;
  color: #000;
  margin: 0 3px;
  width: 40px;
  font-weight: bold;
  font-size: 1.25rem;
}

.pageNum:hover,
.pageNum.active {
  background-color: var(--primary800);
  color: white;
  transition: 0.5s all;
}

.no-products {
  margin: 2rem auto 5rem;
  width: 83.5%;
  padding: 15px 20px 15px 60px;
  position: relative;
  background-color: #f6fafc;
  border-top: 3px solid var(--primary800);
  list-style: none outside;
  word-break: break-word;
  display: flex;
  align-items: center;
}

.product-hero {
  background-color: #f5f5f5;
  padding: 1.25rem 0;
  margin-bottom: 80px;
}

.product-container {
  max-width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.single-product-image-wrap,
.product-info {
  flex: 1;
}

.single-product-image-wrap {
  display: flex;
}

.product-images {
  max-width: 100px;
}

.product-images img {
  background-color: #e8e8e8;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 6px;
  cursor: pointer;
}

.product-images .product-thumbnail.active {
  border: 1px solid black;
}

.product-image {
  width: 97%;
  margin-left: 3%;
  background-color: #e8e8e8;
  border-radius: 12px;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
  position: relative;
}

.product-info {
  padding-left: 30px;
}

.product-info .price {
  font-size: 24px;
  font-weight: 700;
}

.product-info .product-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 15px;
}

.product-info .description {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.8;
}

.product-info .colors-container p {
  font-size: 15px;
  line-height: 1.4;
  color: #000;
  font-weight: 600;
}

.product-info .colors {
  justify-content: initial;
  margin-top: 12px;
}

.bg-yellow {
  background-color: yellow;
}

.bg-green {
  background-color: var(--primary800);
}

.bg-red {
  background-color: rgb(238, 31, 31);
}

.sizes-container {
  margin-top: 1.5rem;
}

.size {
  font-weight: 600;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 3px;
  font-size: 15px;
  margin-right: 5px;
  margin-bottom: 5px;
  height: 36px;
  line-height: 34px;
  padding: 0 15px;
  min-width: 48px;
  transition: all 0.5s;
  position: relative;
  cursor: pointer;
}

.size.active {
  border: 1px solid #000;
}

.size.active .size-variation {
  color: #000;
}

.size-variation {
  color: #9b9b9b;
  transition: 0.5s all;
}

.size:hover .size-variation {
  color: #000;
  transition: 0.5s all;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.cart-number {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 12px;
  border: 1px solid #f5f5f5;
  margin-right: 10px;
  margin-top: 30px;
}

.cart-number button {
  height: 46px;
  font-size: 18px;
  padding: 0 10px;
  cursor: pointer;
  background-color: #f5f5f5;
}

td .cart-number {
  margin: 0 !important;
}

.cart-number button:nth-of-type(1) {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.cart-number button:nth-of-type(2) {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.cart-number input {
  font-size: 18px;
  font-weight: bold;
  background-color: transparent;
  outline: 0;
  border: 0;
  width: 60px;
  height: 46px;
  text-align: center;
}

form .addcartbtn,
form .buybtn {
  height: 48px;
  padding: 0 20px;
  width: 100%;
  border-radius: 12px;
  max-width: calc(100% - 136px);
  background: var(--text-secondary);
  pointer-events: none;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-block;
  font-size: 100%;
  transition: all 0.3s;
}

.activeaddtocart {
  background: var(--primary800) !important;
  cursor: pointer !important;
  pointer-events: painted !important;
  transition: 0.3s all !important;
}

form .buybtn {
  background-color: rgb(112, 112, 112);
  transition: all 0.3s;
  max-width: 100%;
  margin-top: 1rem;
}

.form .addcartbtn.active,
.form .buybtn.active {
  background: #29a76a;
  color: #fff;
  transition: all 0.3s;
}

form .buybtn.active {
  background-color: rgb(0, 0, 0);
  transition: all 0.3s;
}

.line {
  margin-top: 2.75rem;
  height: 1px;
  width: 100%;
  background-color: #eee;
}

.small-info {
  margin-top: 15px;
  padding-top: 20px;
}

.mb-3 {
  margin-bottom: 10px;
}

.key {
  color: #000;
  display: inline-block;
  font-weight: 500;
  padding: 0 5px 0 0;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 1.8;
}

.value {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  transition: 0.5s all;
}

a.value:hover {
  color: var(--primary800);
  transition: 0.5s all;
}

.product-reviews,
.related-products {
  max-width: 1170px;
  margin: 5rem auto;
  padding: 0 15%;
}

.related-products {
  padding: 0;
}

.reviews-title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
  margin-top: 0;
}

.review {
  padding: 30px 0;
}

.review-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
}

.reviewer-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.review-desc {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
}

.rating i {
  color: #f7bb2a;
  cursor: pointer;
}

#rate,
#non-rate {
  font-weight: bold;
  margin-left: 6px;
  font-size: 14px;
}

#non-rate {
  display: none;
}

.review-form-wrapper {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.register-form {
  width: 50%;
  margin: 30px auto;
  padding: 30px;
  border: 1px solid #eee;
}

.account-form {
  width: 85.5%;
  border: 0;
}

.account-form .text-gray {
  margin: 0.5rem auto;
}

.account-form label {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.tabs {
  margin-bottom: 4rem;
  padding-bottom: 6px;
  border-bottom: 1px solid #c4c4c4;
}

.tab {
  color: #000;
  transition: 0.4s all;
  font-weight: 700;
  font-size: 15px;
  margin-right: 2rem;
  text-transform: capitalize;
}

.tab:hover,
.tab.active {
  color: var(--primary800);
  border-bottom: 2px solid var(--primary800);
  transition: 0.4s color;
  padding-bottom: 6px;
}

.email-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mark {
  color: red;
}

.my-5 {
  margin: 20px 0;
}

.my-3 {
  margin: 10px 0;
}

.mr-3 {
  margin-right: 16px;
}

.d-flex .my-5 {
  flex: 1;
  margin-right: 12px;
}

.my-7 {
  margin: 36px 0;
}

.review-form-wrapper label,
.register-form label {
  font-weight: 600;
  font-size: 15px;
  color: #000;
}

.review-form-wrapper .rating {
  display: inline-block;
  margin: 0 0 0 20px;
  line-height: 1.3;
}

.review-form-wrapper textarea {
  margin-top: 5px;
  padding: 15px;
  border-radius: 12px;
  appearance: none;
  max-width: 100%;
  width: 100%;
  border: 1px solid #f5f5f5;
  border-radius: 12px;
  background-color: #f5f5f5;
  box-shadow: none;
  color: inherit;
  font-weight: 500;
  vertical-align: middle;
  transition: border-color 0.5s ease;
  overflow: auto;
  line-height: 1.15;
  outline: none;
}

.review-form-wrapper textarea:focus,
.review-form-wrapper input:focus,
.register-form input:focus,
.coupons input:focus,
.address input:focus {
  border: 1px solid var(--primary800);
}

.review-form-wrapper input,
.register-form input,
.coupons input,
.address input {
  margin-top: 5px;
  height: 48px;
  padding: 0 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  width: 100%;
  border: 1px solid #f5f5f5;
  border-radius: 12px;
  background-color: #f5f5f5;
  box-shadow: none;
  color: inherit;
  font-weight: 500;
  vertical-align: middle;
  transition: border-color 0.5s ease;
  overflow: visible;
  line-height: 1.15;
  outline: none;
}

.address input {
  display: block;
  width: 100%;
  margin-left: auto;
}

.review-form-wrapper .input-container,
.register-form .input-container {
  flex: 1;
}

.review-form-wrapper .input-container:nth-of-type(2),
.register-form .input-container:nth-of-type(2) {
  margin-left: 1rem;
}

.related-products {
  border-top: 1px solid #eee;
}

.related-products .title {
  font-size: 28px;
  margin-bottom: 25px;
  margin-top: 45px;
}

.related-products .shop-grid {
  width: 100%;
  margin: 3rem 0;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: all 0.15s ease-in-out;
  padding-left: 2%;
  padding-right: 2%;
}

.header {
  transition: 0.15s all ease-in-out;
}

#numofcart {
  background-color: var(--primary800);
  color: white;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  position: absolute;
  top: -6px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}

.toast {
  display: none;
  position: fixed;
  top: 230px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1500;
}

.account-flex {
  display: flex;
  width: 100%;
}

.account-info {
  width: 80%;
}

.placeholder-image {
  width: 18%;
  margin: 2rem 2rem 2rem 0;
  position: relative;
}

.placeholder-image img {
  width: 100%;
  height: 250px;
}



/* ------------------------------------ Cart -------------------------- */
.shopping-cart-items {
  width: 83.5%;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.shopping-cart-items h5 {
  margin-bottom: 70px;
  font-size: 28px;
  text-align: center;
}

.shopping-cart-items .link-primary {
  height: fit-content !important;
  border-bottom: 1px solid var(--text-secondary);
  transition: 0.5s all;
}

.shopping-cart-items .link-primary:hover {
  border-color: var(--primary800);
  transition: 0.5s all;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

tr {
  border: 0;
}

th,
td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

th {
  padding-top: 15px;
  padding-bottom: 15px;
}

th {
  background-color: #f5f5f5;
}

.td-flex {
  display: flex;
  align-items: center;
}

.td-flex i {
  color: #9b9b9b;
  cursor: pointer;
  transition: 0.3s all;
}

.td-flex i:hover {
  color: var(--primary800);
  transition: 0.3s all;
}

.td-flex img {
  width: 80px;
  border-radius: 5px;
  min-width: auto !important;
  background-color: #f5f5f5;
  margin-left: 2rem;
  margin-right: 10rem;
}

.td-flex .data {
  text-align: left;
}

.td-flex .data a {
  color: black;
  font-weight: 700;
  font-size: 15px;
  transition: 0.5s all;
}

.td-flex .data a:hover {
  color: var(--primary800);
  transition: 0.5s all;
}

.td-flex .data p {
  color: #000;
  font-size: 12px;
  margin-top: 0.5rem;
  font-weight: 600;
}

.td-flex .data p span {
  color: #7e7e7e;
}

.tdprice {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.shopping-cart-items hr {
  margin: 80px 0;
  border-color: #f5f5f5;
}

.checkout-cart-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.coupons p {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.coupons,
.total-checkout-card {
  flex: 1;
}

.total-checkout-card {
  margin-left: 1.5rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 5px 30px 30px;
  overflow-x: auto;
}

.subtotal,
.total {
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.total {
  border: 0;
  margin-bottom: 2rem;
}

.subtotal h5,
.total h5 {
  font-size: 15px !important;
  font-weight: 700;
  margin-bottom: 0 !important;
}

.subtotal p,
#checkprice,
#shipping,
#couponCheckout,
#couponCode {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
}

.total p {
  color: var(--primary800);
  font-weight: 700;
  font-size: 18px;
}

.coupons input {
  width: 100%;
}

.coupons .btn-primary {
  margin-top: 20px;
  font-weight: 700;
  font-size: 100%;
}

a.w-100 {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1rem;
  font-weight: 700;
  font-size: 100%;
}

.card-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.noitem-cart .no-products {
  margin-bottom: 3.5rem;
}

.noitem-cart .btn-container {
  width: 83.5%;
  margin: 0 auto;
  margin-bottom: 4rem;
}

@media (max-width: 1200px) {
  .w-35 {
    width: 45%;
  }

  .main-header {
    font-size: 38px;
  }

  .main-header .position-relative::after {
    display: none;
  }

  .main-header .text-animated {
    min-height: fit-content !important  ;
  }

  .categories .d-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promo {
    padding: 1rem;
  }

  .promo-text .promo-header {
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin-bottom: 1.5rem;
  }

  .promo .btn-primary,
  .promo .btn-white {
    padding: 0.75rem 0.5rem;
  }

  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 55%;
  }

  .footer-inside ul {
    padding-right: 20px;
  }

  .footer-inside .mt-3 {
    font-size: 14px;
  }

  .filters-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .shop-grid {
    margin: 2rem auto;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .font-main {
    font-size: 14px;
  }

  .none-sm {
    display: none;
  }

  .sm-block {
    display: block;
    position: relative;
  }

  .cart {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 12px;
    padding-right: 2px;
    position: relative;
  }

  .btn-menu {
    background-color: #f5f5f5;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 2px;
    margin-right: 12px;
  }

  .about-hero {
    flex-direction: column-reverse;
  }

  .about-hero .image {
    width: 100%;
  }

  .about-hero .text {
    margin-top: 2rem;
  }

  .aboutimg {
    width: 100% !important;
  }

  .cart_btn {
    width: 30%;
  }

  #navlist {
    transform: translateY(-1200%);
    background-color: white;
    position: absolute;
    top: 90px;
    left: -2.5%;
    z-index: 999;
    width: 105%;
    min-height: calc(100vh - 500px);
    height: fit-content;
    transition: 0.25s all;
    display: block;
  }

  .show-navlist {
    transform: translateY(0) !important;
    transition: 0.25s all;
  }

  .list-item-sm {
    width: 100%;
    padding: 0.75rem 5.5%;
    margin: 0.75rem 0;
  }

  .list-item-sm a {
    font-family: var(--mainFont);
    color: black;
    font-weight: bold;
    transition: 0.4s ease-out;
    width: 100%;
  }

  .list-item-sm.active,
  .list-item-sm:hover {
    background-color: var(--primary800);
    transition: 0.4s ease-in;
  }

  .list-item-sm.active a,
  .list-item-sm:hover a {
    color: white;
    transition: 0.4s ease-in;
  }

  .hero {
    margin: 2rem auto;
    padding-bottom: 50rem;
  }

  .main-header {
    font-size: 40px;
  }

  .state-header {
    font-size: 28px;
  }

  .main-header .position-relative::after {
    display: none;
  }

  .main-header .text-animated {
    min-height: fit-content;
  }

  .hero-text,
  .hero-image {
    width: 100%;
  }

  .img-container {
    top: 40px;
  }

  .social-media {
    width: 100%;
  }

  .hero > .d-flex:first-child,
  .banner > .d-flex:first-child,
  .promos > .d-flex:first-child,
  .social-media > .d-flex:first-child,
  .whyus-wrapper {
    flex-direction: column;
    align-items: unset;
  }

  .banner-image-container,
  .banner-text {
    width: 100%;
  }

  .banner-text {
    margin-top: 3rem;
  }

  .text-gray {
    font-size: 14px;
    line-height: 1.4;
  }

  .quote-center {
    width: 95%;
    font-size: 16px;
    font-weight: 500;
  }

  .categories .d-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category {
    margin-top: 1rem;
  }

  .w-45 {
    width: 95%;
  }

  .title {
    font-size: 28px;
  }

  .promos {
    padding: 0;
    margin-top: 1rem;
  }

  /* slider products */
  .swiper-product .swiper-slide {
    width: 250px !important;
    padding: 0 15px !important;
    margin-right: 0 !important;
  }

  .promo {
    width: 100% !important;
  }

  .promo-text p {
    font-size: 15px;
    line-height: 18px;
  }

  .promo-text .promo-header {
    font-size: 20px !important;
    line-height: 24px !important;
  }

  .whyus-text {
    width: 100%;
  }

  .whyus-grid {
    transform: translateY(40px);
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }

  .whyus-grid-item {
    min-height: fit-content !important;
  }

  .whyus {
    padding-bottom: 1rem !important;
  }

  .enjoy-text-container {
    padding: 0;
  }

  .enjoy-text-container .title {
    padding: 0% 10% 0% 10%;
  }

  .enjoy-footer .banner-decor:nth-of-type(1) {
    top: -8%;
    left: 3%;
    width: 14%;
  }

  .enjoy-footer .banner-decor:nth-of-type(2) {
    bottom: 26%;
    left: -4%;
    width: 12%;
  }

  .enjoy-footer .banner-decor:nth-of-type(3) {
    bottom: -12%;
    width: 8.5%;
    left: 5%;
  }

  .enjoy-footer .banner-decor:nth-of-type(6) {
    bottom: -1%;
    right: 6%;
    width: 7.6%;
  }

  .footer-inside {
    flex-direction: column;
    width: 95%;
  }

  .information,
  .useful-link,
  .Newsletter {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .filters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cart_btn {
    width: 15%;
  }

  .account-form .text-gray {
    display: none;
  }

  .account-form .my-5 {
    margin: 10px 0;
  }

  .account-form .buttons {
    margin-bottom: 1rem;
    margin-top: 0.5rem;
  }

  .account-form .buttons .link-active {
    display: none;
  }

  .account-form .d-flex:nth-child(4) {
    flex-direction: column;
    align-items: initial;
    justify-content: initial;
  }

  .alert {
    top: 45% !important;
    left: 10% !important;
    width: 80% !important;
  }

  .td-flex img {
    margin: 0 2rem !important;
  }

  .total-checkout-card .subtotal:nth-child(2) {
    flex-direction: column;
    align-items: initial;
  }

  .total-checkout-card .subtotal:nth-child(2) h5 {
    text-align: left;
    margin-bottom: 0.5rem !important;
  }

  .card-flex {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-container > .d-flex {
    flex-direction: column;
  }

  .product-info {
    margin-top: 2rem;
  }

  .main-header {
    font-size: 28px;
  }

  .cart_btn .account {
    display: none;
  }

  .state-header {
    font-size: 18px;
  }

  .state-paragraph {
    font-size: 14px;
  }

  .categories .d-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero {
    padding-bottom: 30rem;
  }

  .categories,
  .banner-container,
  .promos,
  .whyus-wrapper,
  .hero,
  .swiper,
  .shop-filter,
  .shop-filter,
  .footer-inside,
  .social-media,
  .enjoy-text-container {
    width: 90%;
  }

  .filters-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .shop-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .promo {
    margin: 1rem 0 !important;
  }

  .product-reviews {
    padding: 0 15px;
  }

  .product-card {
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 568px) {
  .enjoy-footer .btn-white {
    display: block;
    width: 50%;
    margin: 2rem auto;
  }

  .card-flex {
    grid-template-columns: repeat(1, 1fr);
  }

  .checkout-cart-flex {
    flex-direction: column;
  }

  .total-checkout-card {
    margin-top: 2rem;
    margin-left: 0 !important;
  }

  header .btn-white {
    display: none;
  }

  .product-info {
    padding: 0;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  .td-flex {
    justify-content: space-between;
  }

  .td-flex img {
    margin: 0 !important;
  }

  .shopping-cart-items .d-flex.justify-default {
    flex-direction: column;
    align-items: initial;
  }

  .shopping-cart-items .d-flex.justify-default .btn-black {
    width: fit-content;
    margin: 2rem 0;
  }

  .shopping-cart-items .d-flex.justify-default #clearLocalStorageButton {
    width: fit-content;
  }

  th {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  td {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    border-bottom: 1px solid #ddd;
    position: relative;
  }

  td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    content: attr(data-label);
    font-weight: bold;
  }
}

.link-active {
  color: var(--primary800);
}

.return {
  width: 60%;
  margin: 5rem auto;
}

.return-header {
  margin: 2rem 0;
}

.return p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1rem;
  width: 90%;
  line-height: 1.5rem;
}

.return a,
.return p span {
  color: var(--primary800);
  margin-right: 2px;
}

.about-hero {
  width: 83.5%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-hero .text,
.about-hero .image {
  flex: 1;
  overflow: hidden;
}

.aboutimg {
  width: 80%;
  margin: 0 auto;
  transition: 0.5s all;
  cursor: pointer;
}

.aboutimg:hover {
  transform: scale(1.1);
  transition: 0.5s all;
}

.about-hero h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-top: 15px;
}

.about-hero .text-gray {
  width: 80%;
}

.text-list {
  margin-bottom: 2rem;
}

.list-icon {
  background-color: #e2f5f2;
  margin-right: 15px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11b196;
  font-size: 16px;
}

.text-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.text-list-item span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.contact-hero .my-5 {
  margin: 10px 12px 10px 0 !important;
}

.contact-hero textarea {
  appearance: none;
  max-width: 100%;
  width: 100%;
  border: 1px solid #f5f5f5;
  padding: 15px;
  border-radius: 12px;
  max-height: 150px;
  background-color: #f5f5f5;
  box-shadow: none;
  color: inherit;
  font-weight: 500;
  vertical-align: middle;
  transition: border-color 0.5s ease;
}

textarea:focus {
  border: 1px solid #2ebb77;
  outline: none;
}

.nothing .my-5 {
  margin: 20px 12px 20px 0 !important;
}

.shop-hero .link-primary {
  height: fit-content !important;
  color: var(--primary800) !important;
}

.shop-hero .link-primary:hover {
  color: var(--primary900) !important;
}

.thanks .shop-hero {
  margin-bottom: 0;
  background-color: white;
}

.thanks .hero-header {
  font-size: 32px;
}

.alert {
  position: absolute;
  top: 45%;
  left: 37%;
  width: 26%;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  display: none;
}

.alertb {
  display: block;
}

.alert.success {
  background-color: #29a76a37;
  color: #29a76a;
}

.ml-auto {
  margin-left: auto;
  display: block;
  width: fit-content;
}

/* ------------- checkout ---------------- */
.checkout {
  width: 83.5%;
  margin: 1rem auto;
  display: flex;
  justify-content: space-between;
}

.Billing,
.checkoutorder {
  flex: 1;
}

.checkoutorder {
  margin-left: 2.5rem;
}

.Billing .register-form {
  width: 100% !important;
}

.orders-checkout {
  background-color: #f5f5f5;
  padding: 1rem 0;
  margin: 2rem 0;
  border-radius: 12px;
}

.orders-checkout .total-checkout-card {
  margin: 0rem 1rem;
}

.margin-0 {
  margin: 0 !important;
  font-size: 16px;
  font-weight: bold;
}

.strong {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  margin-top: 0.5rem;
}

.gray {
  color: var(--text-secondary);
  font-weight: bold;
  font-size: 15px;
  margin-top: 0.5rem;
  margin-left: 0.4rem;
}

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

  .checkoutorder {
    margin-left: 0;
  }

  .checkout .register-form .d-flex {
    display: block;
  }

  .orders-checkout .total-checkout-card {
    margin: 0rem 1rem !important;
  }
}
