/* IMPORT FONT */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

* {
  font-family: "Titillium Web", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* COLORS */
:root {
  --main-color: #7a2cc7;
  --main-color-bright: #6321aa;
  --main-muted-color: #67567a;
  --bg-bright-color: #ececec;
  --bg-card: #e5e5e5;
  --text-muted-color: #00000071;
  --text-muted-bright: #adadad;
  --text-bg: #80808029;
  --accent-color: #3a0079;
  --shadow: 1px 1px 8px var(--text-bg), -1px -1px 8px var(--text-bg);
}

.bg-main-color {
  background-color: var(--main-color);
}

.bg-bright-color {
  background-color: var(--main-color-bright);
}

.bg-accent-color {
  background-color: var(--accent-color);
}

.bg-light-color {
  background-color: var(--bg-bright-color);
}

.text-color-bright {
  color: var(--main-color-bright);
}

.text-color-accent {
  color: var(--accent-color);
}

.text-light-color {
  color: var(--bg-bright-color);
}

.text-main-muted {
  color: var(--main-muted-color);
}

.text-muted-color {
  color: var(--text-muted-color);
}

html,
body {
  scroll-behavior: smooth;
  background-color: var(--bg-bright-color);
}

input:focus {
  box-shadow: none !important;
}

button:disabled,
button[disabled] {
  pointer-events: visible !important;
  cursor: not-allowed;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

/* START HOME PAGE */
.main-lg .left,
.main-lg .right {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

/* START LEFT DIV */
.main-lg .left .logo {
  height: 32%;
}

.main-lg .left .logo .akad-logo img {
  height: 111px;
}

.main-lg .left .some-text {
  height: 38%;
}

.main-lg .left .social-apps {
  height: 20%;
}

.main-lg .left .social-apps .social-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.main-lg .left .social-apps .social-links svg {
  stroke: var(--bg-bright-color);
  font-size: 1.4rem;
  transition: all 0.3s ease-in-out;
}

.main-lg .left .social-apps .social-links svg:hover {
  transform: translateY(2px);
}

/* END LEFT DIV */

/* START RIGHT DIV */
.main-lg .right {
  text-align: center;
  background-color: #d3d3d3;
  /* background-image: url('../img/backg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply; */
}

.main-lg .right .some-text {
  height: 28%;
}

.main-lg .right .some-text p {
  color: var(--main-muted-color);
  padding: 0 6rem;
}

.main-lg .right .explore-more {
  height: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-lg .right .explore-more .shopping-img img {
  height: 200px;
}

.main-lg .right .explore-more button {
  padding: 0.88rem 1.6rem;
  background-color: var(--main-color-bright);
  color: white;
  border: 2px solid var(--main-color-bright);
  border-radius: 0.2rem;
  font-weight: 600;
  transition: all 0.4s;
}

.main-lg .right .explore-more button:hover {
  background-color: transparent;
  color: var(--main-color-bright);
}

/* END RIGHT DIV */

/* START COPYRIGHT DIV */
.main-lg .left .copyright-left,
.main-lg .right .copyright-right {
  position: absolute;
  bottom: 2px;
}

.main-lg .left .copyright-left {
  right: 4px;
}

.main-lg .right .copyright-right {
  left: 4px;
  color: var(--main-color-bright);
}

.main-lg .copyright-right span a {
  color: var(--main-muted-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s;
}

.main-lg .copyright-right span a:hover {
  color: var(--main-color-bright);
}

/* END COPYRIGHT DIV */

/* START MOBILE MAIN PAGE */
.main-mob .container {
  gap: 3rem;
}

@media (min-width: 350px) and (max-width: 550px) {
  .main-mob .container {
    gap: 0rem;
  }
}

.main-mob .shopping-img img {
  width: 160px;
}

.main-mob .explore-more button {
  padding: 0.88rem 1.6rem;
  background-color: var(--main-color-bright);
  color: white;
  border: 2px solid var(--main-color-bright);
  border-radius: 0.2rem;
  font-weight: 600;
  transition: all 0.4s;
}

.main-mob .explore-more button:hover {
  background-color: transparent;
  color: var(--main-color-bright);
}

/* END MOBILE MAIN PAGE */
/* END HOME PAGE */

/* START HOME PAGE */
/* START PRE LOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-bright-color);
  z-index: 1000;
}
.loader-logo {
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #6321aa;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #776c83;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #6b4495;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* END PRE LOADER */
/* START HOME-BG DIV */
.navbar {
  z-index: 900;
}

.navbar .navbar-brand img {
  height: 70px;
}

.dropdown-toggle::after {
  vertical-align: 0.1em;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--main-muted-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 0 !important;
  position: relative;
}

.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--main-color-bright);
}

.navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: -4px;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: var(--main-color-bright);
  transition: all 0.4s;
}

.navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 0px;
  height: 2px;
  width: 0;
  background-color: var(--main-color-bright);
  transition: all 0.4s;
}

.navbar .navbar-nav .nav-item .nav-link.active::before,
.navbar .navbar-nav .nav-item .nav-link:hover::before,
.navbar .navbar-nav .nav-item .nav-link.active::after,
.navbar .navbar-nav .nav-item .nav-link:hover::after {
  width: 60%;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(99, 33, 170)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* START ACCOUNT BUTTON */
.account-btn a,
.account-btn button {
  display: inline-block;
  height: 26px;
  width: 26px;
}

.account-btn a svg,
.account-btn button svg {
  height: 26px;
  width: 26px;
  stroke: var(--main-color-bright);
  transition: all 0.3s ease-out;
}

.account-btn a:hover svg,
.account-btn button:hover svg {
  transform: translateX(-2px);
}
/* END ACCOUNT BUTTON */
/* START LANGUAGE SELECTOR */
.navbar .languages-selector {
  background-color: #6321aa;
  margin-inline: 1rem;
  padding: 4px 8px;
  border-radius: 4px;
}
.navbar .languages-selector .language {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #c8c7cb;
  text-decoration: none;
}
/* END LANGUAGE SELECTOR */
/* START TOAST MSG */
.toastify {
  position: fixed;
  top: 6px;
  right: -200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background-color: #e3dde9d0;
  color: var(--main-color-bright);
  padding: 4px 8px;
  border: 1px solid #d1c8db;
  transition: 0.5s all ease-in;
  z-index: 910;
}

.toastify .icon svg {
  stroke: var(--main-color-bright);
}
/* END TOAST MSG */
/* START SHOPPING CART BOX */
.shopping-cart {
  height: auto;
  position: fixed;
  top: 20%;
  right: -350px;
  width: 350px;
  z-index: 920;
  transition: all 0.5s ease-in;
}

.shopping-cart .cart-bag {
  position: relative;
  left: -100%;
  bottom: -2px;
  height: 44px;
  width: 44px;
  transition: all 0.5s ease-in;
}

.shopping-cart .cart-bag .cart-btn {
  padding: 0;
  border: none;
  border-radius: 6px;
}

.shopping-cart .cart-bag .cart-btn svg {
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-bright);
  stroke: var(--bg-bright-color);
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 4px 4px 14px #0000004d;
}

.shopping-cart #count-items {
  position: absolute;
  top: -20px;
  right: 26px;
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
  padding: 2px 10px;
  font-size: 16px;
  border-radius: 4px;
}

.shopping-cart .cart-content {
  position: relative;
  max-height: 100%;
  width: 100%;
  background-color: #e2e8f0;
  padding: 1rem 0.8rem;
  box-shadow: 1px 1px 8px var(--text-muted-color);
  border-right: 0;
  overflow: auto;
}

.shopping-cart .cart-content .cart-top .cart-title {
  margin: 0;
  color: var(--main-color-bright);
  font-size: 22px;
}

.shopping-cart .cart-content .cart-top .close-cart-btn {
  position: absolute;
  top: 0;
  left: 0;
  height: 28px;
  width: 28px;
  line-height: 24px;
  background-color: transparent;
  padding: 0;
  border: none;
}

.shopping-cart .cart-content .cart-top .close-cart-btn svg {
  stroke: var(--main-color-bright);
}

.shopping-cart .cart-content .cart-middle {
  height: 130px;
  background-color: #f1f5f9;
  margin-bottom: 8px;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 2px 2px 8px var(--text-bg), -2px -2px 8px var(--text-bg);
}

.shopping-cart .cart-content .cart-middle .selected-item-left {
  position: relative;
  height: 100%;
  width: 32%;
}

.shopping-cart .cart-content .cart-middle .selected-item-left h6 {
  background-color: #e2e8f0c2;
  color: var(--main-color-bright);
  font-size: 14px;
  border: 1px solid var(--text-bg);
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
}

.shopping-cart .cart-content .cart-middle .selected-item-middle {
  position: relative;
  height: 100%;
  width: 60%;
}

.shopping-cart .cart-content .cart-middle .selected-item-middle h5 {
  color: var(--main-color-bright);
  font-size: 16px;
}

.shopping-cart .cart-content .cart-middle .selected-item-middle p {
  font-size: 14px;
}

.shopping-cart .cart-content .cart-middle .selected-item-middle h6 {
  color: var(--main-color-bright);
}

.shopping-cart .cart-content .cart-middle .selected-item-right {
  position: relative;
  height: 100%;
  width: 8%;
}

.shopping-cart
  .cart-content
  .cart-middle
  .selected-item-right
  .quantity-control {
  background-color: #e2e8f0;
  box-shadow: 1px 1px 6px var(--text-bg);
}

.shopping-cart
  .cart-content
  .cart-middle
  .selected-item-right
  .quantity-control
  button
  svg {
  stroke: var(--main-color-bright);
}

.shopping-cart .cart-content .cart-middle .selected-item-right button svg {
  stroke: #ef4444;
}

.shopping-cart .cart-content .cart-bottom .proceed-checkout-btn {
  display: block;
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  padding: 8px;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}

.shopping-cart .cart-content .cart-bottom .proceed-checkout-btn:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.cart-content .empty-cart h4 {
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 18px;
}

.cart-content .empty-cart p {
  margin: 0;
  padding-inline: 8px;
  color: var(--text-muted-color);
  font-size: 16px;
  text-transform: lowercase;
}

.cart-content .empty-cart img {
  margin-block: 18px;
}

.cart-content .empty-cart a {
  display: block;
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  padding: 8px;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}

.cart-content .empty-cart a:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.shop-more {
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  border: 1px solid var(--accent-color);
}

.shop-more:hover {
  background-color: #2f0062;
  color: var(--bg-bright-color);
  border: 1px solid var(--accent-color);
}
/* END SHOPPING CART BOX */

/* START PRESENT PRODUCT */
.modal .modal-dialog {
  height: 50%;
  max-width: 55%;
}

.modal .modal-dialog .modal-content .present-product .present-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
}

.modal .modal-dialog .modal-content .present-product .left-present {
  width: 30%;
}

.modal .modal-dialog .modal-content .present-product .left-present img {
  border: 1px solid #dbdbdb;
}

.modal .modal-dialog .modal-content .present-product .right-present {
  width: 70%;
}

.modal
  .modal-dialog
  .modal-content
  .present-product
  .right-present
  .present-details
  .text-present-details {
  color: var(--main-muted-color);
  font-size: 14px !important;
}

.modal
  .modal-dialog
  .modal-content
  .present-product
  .right-present
  .present-add-btn {
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.modal
  .modal-dialog
  .modal-content
  .present-product
  .right-present
  .present-add-btn:hover {
  background-color: transparent;
  color: var(--accent-color);
}
/* END PRESENT PRODUCT */

/* START MOBILE NAV */
.mob-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--main-color-bright);
  border-top-left-radius: 4rem;
  border-top-right-radius: 4rem;
  z-index: 900;
  display: none;
}

.mob-nav .mob-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 1.8rem;
  padding: 0;
  list-style-type: none;
}

.mob-nav .mob-list .mob-links {
  padding: 0.8rem 1rem 0.4rem;
}

.mob-nav .mob-list .mob-links .mob-link {
  color: #f5f5f5;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  transition: all.3s;
}

.mob-nav .mob-list .mob-link.active {
  font-weight: 700;
}

.mob-nav .mob-list .mob-link.active::before,
.mob-nav .mob-list .mob-link.active::after {
  content: "";
  position: absolute;
  top: calc(34% - 1px);
  height: 2px;
  width: 8px;
  background-color: #f5f5f5;
  transition: all 0.3s;
}

.mob-nav .mob-list .mob-link.active::before {
  left: -8px;
}

.mob-nav .mob-list .mob-link.active::after {
  right: -8px;
}

.mob-nav .mob-list .mob-links .mob-link .bx {
  position: relative;
  font-size: 1.4rem;
}

.mob-nav .mob-list .mob-links .mob-link span {
  position: relative;
  font-size: 0.88rem;
}

/* END MOBILE NAV */
.home-bg {
  height: 100vh;
  background-color: #d7d7d7;
  background-image: url("../img/home.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-bg .home-content .home-title {
  color: var(--main-color-bright);
  font-size: 2.6rem;
  font-weight: 600;
}

.home-bg .home-content .home-btn a {
  padding: 0.88rem 1.6rem;
  border: 2px solid var(--main-color-bright);
  border-radius: 0.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s;
}

.home-bg .home-content .home-btn .product-btn {
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
}

.home-bg .home-content .home-btn .product-btn:hover {
  background-color: transparent;
  color: var(--main-color-bright);
}

.home-bg .home-content .home-btn .offer-btn {
  background-color: transparent;
  color: var(--main-color-bright);
}

.home-bg .home-content .home-btn .offer-btn:hover {
  background-color: var(--main-color-bright);
  color: white;
}
/* END HOME-BG DIV */

/* START PRODUCTS SLIDER */
.products .swiper.mySwiperProducts,
.offer-products .swiper.mySwiperOfferProducts {
  padding-bottom: 2.2rem;
}

.products .mySwiperProducts .swiper-button-prev,
.offer-products .mySwiperOfferProducts .swiper-button-prev {
  left: 22px;
}

.products .mySwiperProducts .swiper-button-next,
.offer-products .mySwiperOfferProducts .swiper-button-next {
  right: 22px;
}

.products .mySwiperProducts .swiper-button-next::after,
.products .mySwiperProducts .swiper-button-prev::after,
.offer-products .mySwiperOfferProducts .swiper-button-next::after,
.offer-products .mySwiperOfferProducts .swiper-button-prev::after {
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
  padding: 6px 10px;
  font-size: 18px;
  border-radius: 4px;
  box-shadow: 2px 2px 8px #0000005b;
}

.products .swiper-button-next.swiper-button-disabled,
.products .swiper-button-prev.swiper-button-disabled,
.offer-products .swiper-button-next.swiper-button-disabled,
.offer-products .swiper-button-prev.swiper-button-disabled {
  pointer-events: visible;
}

.products .swiper-pagination-bullet-active,
.offer-products .swiper-pagination-bullet-active {
  background-color: var(--main-color-bright);
}

.card .top-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  z-index: 10;
}

.card .top-card h5 {
  background-color: var(--text-bg);
  color: var(--main-color-bright);
  padding: 4px 8px;
  font-size: 18px;
  border-radius: 0px 8px 0px 8px;
}

.card .top-card .add-product {
  background-color: transparent;
  padding: 0;
  border: none;
}

.card .top-card .add-product svg {
  stroke: var(--main-color-bright);
}

.card .product-link {
  display: block;
  height: 280px;
  background-color: var(--bg-bright-color);
  border: 1px solid var(--text-bg) !important;
  outline: none;
}

.card .product-link img {
  height: 180px;
  width: 180px;
  object-fit: cover;
  transition: all 0.3s ease-in;
}

.card .product-link:hover img {
  transform: scale(0.95);
  filter: grayscale(0.6);
}

.card .offer-price {
  margin: 0;
  padding: 8px 12px;
  background-color: var(--bg-card);
  color: var(--main-color-bright);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: 1px px solid var(--text-bg);
  border-top: 0;
}

.card .bottom-card {
  width: 100%;
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
  padding: 8px 2px;
  text-align: center;
  z-index: 11;
}

.card .bottom-card p {
  font-size: 14px;
}
/* END PRODUCTS SLIDER */

/* START PAYMENT METHODS */
.payment-methods {
  background-color: var(--bg-card);
}

.payment-methods .mastercard-visa {
  position: relative;
  width: 350px;
  background-image: linear-gradient(
      285deg,
      rgba(57, 57, 57, 0.04) 0%,
      rgba(57, 57, 57, 0.04) 25%,
      rgba(126, 126, 126, 0.04) 25%,
      rgba(126, 126, 126, 0.04) 50%,
      rgba(80, 80, 80, 0.04) 50%,
      rgba(80, 80, 80, 0.04) 75%,
      rgba(117, 117, 117, 0.04) 75%,
      rgba(117, 117, 117, 0.04) 100%
    ),
    linear-gradient(
      333deg,
      rgba(26, 26, 26, 0.04) 0%,
      rgba(26, 26, 26, 0.04) 25%,
      rgba(154, 154, 154, 0.04) 25%,
      rgba(154, 154, 154, 0.04) 50%,
      rgba(218, 218, 218, 0.04) 50%,
      rgba(218, 218, 218, 0.04) 75%,
      rgba(91, 91, 91, 0.04) 75%,
      rgba(91, 91, 91, 0.04) 100%
    ),
    linear-gradient(
      45deg,
      rgba(14, 14, 14, 0.04) 0%,
      rgba(14, 14, 14, 0.04) 25%,
      rgba(216, 216, 216, 0.04) 25%,
      rgba(216, 216, 216, 0.04) 50%,
      rgba(44, 44, 44, 0.04) 50%,
      rgba(44, 44, 44, 0.04) 75%,
      rgba(111, 111, 111, 0.04) 75%,
      rgba(111, 111, 111, 0.04) 100%
    ),
    linear-gradient(
      251deg,
      rgba(27, 27, 27, 0.04) 0%,
      rgba(27, 27, 27, 0.04) 25%,
      rgba(107, 107, 107, 0.04) 25%,
      rgba(107, 107, 107, 0.04) 50%,
      rgba(167, 167, 167, 0.04) 50%,
      rgba(167, 167, 167, 0.04) 75%,
      rgba(34, 34, 34, 0.04) 75%,
      rgba(34, 34, 34, 0.04) 100%
    ),
    linear-gradient(
      63deg,
      rgba(114, 114, 114, 0.04) 0%,
      rgba(114, 114, 114, 0.04) 25%,
      rgba(16, 16, 16, 0.04) 25%,
      rgba(16, 16, 16, 0.04) 50%,
      rgba(190, 190, 190, 0.04) 50%,
      rgba(190, 190, 190, 0.04) 75%,
      rgba(159, 159, 159, 0.04) 75%,
      rgba(159, 159, 159, 0.04) 100%
    ),
    linear-gradient(90deg, rgb(44, 69, 142), rgb(133, 17, 234));
  color: var(--bg-bright-color);
  margin-inline: auto;
  padding: 24px 30px;
  border-radius: 8px;
  font-family: "Itim", sans-serif;
}

.payment-methods .mastercard-visa .name-detail .bank {
  position: relative;
  text-align: end;
}

.payment-methods .mastercard-visa .name-detail .bank h6 {
  margin-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.payment-methods .mastercard-visa .name-detail .bank span {
  position: absolute;
  right: 4px;
  bottom: 10px;
  font-size: 8px;
  font-weight: bold;
  text-transform: uppercase;
}

.payment-methods .mastercard-visa .card-number h6 {
  margin-bottom: 0;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.payment-methods .mastercard-visa .other-detail {
  position: relative;
  margin-top: 4px;
  margin-bottom: 2.2rem;
}

.payment-methods .mastercard-visa .other-detail .valid {
  position: absolute;
  right: 50px;
  font-size: 10px;
}

.payment-methods .mastercard-visa .other-detail .valid span:last-of-type {
  position: absolute;
  left: 0;
  bottom: -10px;
}

.payment-methods .mastercard-visa .other-detail h6 {
  position: absolute;
  right: 0;
  bottom: -21px;
  margin-bottom: 0;
  font-weight: bold;
}

.payment-methods .mastercard-visa .img-payment {
  position: absolute;
  right: 8px;
  bottom: -4px;
}
/* END PAYMENT METHODS */
/* START BRANDS */
.our-brands .brands .swiper .swiper-slide img {
  width: 140px;
  display: block;
  margin-inline: auto;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
}

.our-brands .brands .swiper .swiper-slide:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.our-brands .brands .swiper .swiper-slide {
  border: 1px solid transparent;
}

.our-brands .brands .swiper .swiper-slide:hover {
  background-color: var(--bg-card);
  border-color: var(--text-bg);
  cursor: pointer;
  transform: scale(1.01);
}
/* END BRANDS */

/* START CUSTOMERS COUNTER */
.customers-counter {
  padding: 10rem 6rem;
  background-image: url("../img/bg-counter.webp");
  background-size: cover;
  background-position: right;
  background-color: var(--text-bg);
  background-blend-mode: multiply;
}

.customers-counter .counter {
  color: var(--main-color-bright);
  font-weight: 600;
}

/* END CUSTOMERS COUNTER */

/* START FEATURES */
.features {
  background-color: var(--main-color);
}

.features .feature {
  color: var(--bg-bright-color);
}

.features .feature .feature-img {
  height: 85px;
  width: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-bright-color);
  border: 1px dotted var(--bg-bright-color);
  border-radius: 50%;
  margin: 0 auto 0.8rem;
}

.features .feature .feature-img img {
  width: 44px;
  transition: all 0.44s;
}

.features .feature:hover .feature-img img {
  transform: rotate(360deg);
}

.features .feature .feature-hr {
  width: 25%;
  margin: 1rem auto 0.5rem;
  border-color: var(--bg-bright-color);
  opacity: 1;
}
/* END FEATURES */

/* START MAP */
.maps .map {
  position: relative;
  height: 400px;
  width: 100%;
}

.maps .map .circle-marker {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 5px dotted var(--main-color);
}

.maps .map .description-marker {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%);
  background-color: var(--main-color);
  color: var(--bg-bright-color);
  padding: 6px 8px;
  text-align: center;
  border-radius: 4px;
}

.maps .map .description-marker h6 {
  margin: 0;
}

.maps .map .description-marker h6:last-of-type {
  margin-top: 0.4rem;
  color: var(--text-muted-bright);
  font-size: 0.8rem;
}

/* END MAP */
/* START DETAILS */
.details {
  padding: 6rem 4rem;
}

.details .schedule .date {
  height: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  column-gap: 1rem;
  padding: 0 1rem;
  font-weight: 600;
  border-radius: 0.2rem;
}

.details .schedule .date:first-of-type {
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
}

.details .schedule .date:nth-of-type(2) {
  background-color: var(--main-color);
  color: var(--bg-bright-color);
}

.details .schedule .date:nth-of-type(3) {
  background-color: transparent;
  color: var(--main-color-bright);
  border: 2px solid var(--main-color-bright);
}

.details .contacts .contact {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  color: var(--main-color-bright);
  font-weight: 600;
}

.details .contacts .contact a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
}

/* END DETAILS */

/* START FOOTER */
footer {
  background-color: var(--main-color);
  padding: 4rem 0;
}

footer .footer-paragraph {
  margin-bottom: 2rem;
}

footer .quick-info li a {
  height: 34px;
  width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-bright-color);
  border-radius: 0.2rem;
  transition: all 0.333s;
}

footer .quick-info li a svg {
  stroke: var(--main-color-bright);
  stroke-width: 1.6px;
}

footer .quick-info li a:hover {
  transform: translateY(-4px);
}

footer p,
footer .quick-links li a {
  color: var(--text-muted-bright);
}

footer h3 {
  font-size: 1.6rem;
  color: var(--bg-bright-color);
  margin-bottom: 30px;
}

footer .gallery a {
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 1;
}

footer .gallery a:hover {
  transform: scale(0.96);
  opacity: 0.7;
}

footer .footer-left {
  text-align: end;
}

footer .footer-right {
  text-align: start;
}

footer .quick-links li {
  margin-bottom: 16px;
}

footer .quick-links li:last-of-type {
  margin-bottom: 0;
}

footer .quick-links li a {
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

footer .quick-links li a:hover {
  color: var(--bg-bright-color);
}

footer hr {
  margin: 2rem auto 1rem;
  width: 84%;
  color: var(--bg-bright-color);
  opacity: 0.7;
}

footer .copyright {
  color: var(--bg-bright-color);
}

footer .copyright a {
  color: var(--text-muted-bright);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

footer .copyright a:hover {
  color: var(--bg-bright-color);
}
/* END FOOTER */

/* START SCROLL TO TOP */
.scroll-to-top {
  position: fixed;
  bottom: 6%;
  right: -60px;
  height: 40px;
  width: 40px;
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  border-radius: 0.2rem;
  z-index: 100;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.scroll-to-top:hover {
  color: var(--bg-bright-color);
}

.scroll-to-top:hover .bx-chevrons-up {
  animation: scroll-top-anim 0.6s linear infinite;
}

@keyframes scroll-top-anim {
  40% {
    transform: translateY(2px);
  }
  80% {
    transform: translateY(-2px);
  }
}
/* END SCROLL TO TOP */
/* START WHATSAPP CHAT BOX */
.whatsapp-box {
  height: 160px;
  width: 326px;
  position: fixed;
  left: calc(100%);
  bottom: 16px;
  background-color: #c7d7cd;
  z-index: 101;
  transition: 0.5s;
  animation: wapp 1.8s ease-in;
}

.whatsapp-box.active {
  transition: 0.5s;
  left: calc(100% - 326px);
}

/* To Fit BUTTON TO THE BOX */
.fit-to-box {
  left: 0 !important;
}

.btn-box {
  position: absolute;
  left: -48px;
  top: 0;
  height: 48px;
  width: 48px;
  line-height: 48px;
  background-color: #25cb63;
  color: #e1e1e1;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
}

.btn-box.bxl-whatsapp {
  font-size: 2rem;
}

.btn-box.bx-chevrons-right {
  font-size: 1.2rem;
}

.msg h5 {
  color: #1b492c;
}

.msg p {
  color: #25613b;
}

.whatsapp-btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #25d366;
  color: #f0f0f0;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 0 0.3rem #1c5832;
  transition: ease-in-out 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
}

.whatsapp-btn .whatsapp-icon {
  color: #f5f5f5;
}

@keyframes wapp {
  0% {
    right: -500px;
  }

  100% {
    right: 0;
  }
}
/* END WHATSAPP CHAT BOX */
/* END HOME PAGE */

/* START SHOPE STORE PAGE */
.shop-store {
  margin-top: 74px;
}

.shop-store .products-filter {
  position: sticky;
  top: 74px;
  background-color: var(--bg-card);
  padding: 8px 4px;
  z-index: 800;
}

.shop-store .products-filter .filter-btns .dropdown .dropdown-toggle {
  background-color: transparent;
  color: var(--main-color-bright);
  border: 1px solid var(--main-color-bright);
}

.shop-store .products-filter .filter-btns .dropdown .dropdown-toggle:hover {
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
}

.shop-store .products-filter .filter-btns .dropdown .dropdown-menu {
  /* --bs-dropdown-min-width: auto !important;
  width: -webkit-fill-available;
  width: -moz-available; */
  padding-inline: 8px;
  border-color: var(--main-color-bright);
}

.shop-store .products-filter .filter-btns .dropdown .dropdown-menu.show {
  margin-top: 2px !important;
}

.shop-store .products-filter .filter-btns .dropdown .dropdown-item {
  background-color: transparent;
  color: var(--main-muted-color);
  padding: 4px 8px;
  border: 1px dashed transparent;
  border-radius: 16px;
  text-align: center;
}

.shop-store
  .products-filter
  .filter-btns
  .dropdown
  .dropdown-item.mixitup-control-active {
  color: var(--main-color-bright);
  border-color: var(--main-color-bright);
}

.shop-store .products-filter .filter-btns .dropdown .dropdown-item:hover {
  color: var(--main-color-bright);
  border-color: var(--main-color-bright);
}

.shop-store .products-filter .reset-filters svg {
  height: 18px;
  width: 18px;
  stroke: #dc3545;
  vertical-align: text-bottom !important;
}

.shop-store .products-filter .reset-filters:hover {
  background-color: #dc3545;
  color: var(--bg-bright-color) !important;
}

.shop-store .products-filter .reset-filters:hover svg {
  stroke: var(--bg-bright-color) !important;
}

.shop-store .mix .mix-box {
  padding: 8px 8px 12px;
  border: 1px solid var(--text-bg);
  border-radius: 8px;
  position: relative;
}

.shop-store .mix .mix-box .has-offer {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 4px 10px;
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
  font-size: 15px;
  font-weight: 200;
  border-radius: 4px;
  z-index: 5;
}

.shop-store .mix .mix-box .mix-img {
  height: 250px;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
}

.shop-store .mix .mix-box .mix-img img {
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  filter: drop-shadow(1px 1px 8px var(--text-bg));
  transition: all 0.4s ease-in-out;
}

.shop-store .mix .mix-box:hover .mix-img img {
  transform: scale(0.98);
}

.shop-store .mix .mix-box .mix-img .view-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: var(--text-muted-color);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.shop-store .mix .mix-box:hover .mix-img .view-img {
  opacity: 1;
}

.shop-store .mix .mix-box .mix-img .view-img button svg {
  stroke: var(--bg-bright-color);
  cursor: pointer;
}

.shop-store .mix .mix-box hr {
  width: 100%;
  margin-inline: auto;
  color: #898989;
  opacity: 0.6;
  margin-bottom: 0;
}

.shop-store .mix .mix-box .mix-details {
  background-color: var(--bg-bright-color);
  padding: 10px 4px;
  text-align: center;
}

.shop-store .mix .mix-box .mix-details h5 {
  margin-bottom: 4px !important;
  color: var(--main-color-bright);
  font-size: 16px;
  font-weight: 700;
}

.shop-store .mix .mix-box .mix-details h6 {
  color: var(--main-muted-color);
}

.shop-store .mix .mix-box .mix-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.shop-store .mix .mix-box button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  padding: 4px 8px;
  border: 1px solid var(--accent-color);
}

/* .shop-store .mix .mix-box button span {
  font-size: 14px;
} */

.shop-store .mix .mix-box button svg {
  height: 22px;
  width: 22px;
  stroke: var(--bg-bright-color);
}

.shop-store .mix .mix-box .mix-btns button.mix-view-btn {
  background-color: var(--bg-bright-color);
  color: var(--accent-color);
}

.shop-store .mix .mix-box .mix-btns button.mix-view-btn svg {
  stroke: var(--accent-color);
}
/* .shop-store .mix .mix-box .mix-img .mix-add-to-cart {
  position: absolute;
  height: 24px;
  width: 24px;
  right: 4px;
  bottom: 4px;
} */
/* END SHOPE STORE PAGE */

/* START CHECKOUT PAGE */
.cart-checkout {
  margin-top: 74px;
}

.cart-checkout .cart-products {
  position: relative;
  background-color: var(--bg-card);
  padding: 1rem 0.8rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.cart-checkout .cart-products .cart-middle {
  height: 140px;
  background-color: var(--bg-bright-color);
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.cart-checkout .cart-products .cart-middle .selected-item-left {
  position: relative;
  height: 100%;
  width: 30%;
}

.cart-checkout .cart-products .cart-middle .selected-item-left h6 {
  background-color: #e2e8f0b4;
  color: var(--main-color-bright);
  border: 1px solid var(--text-bg);
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cart-checkout .cart-products .cart-middle .selected-item-middle {
  position: relative;
  height: 100%;
  width: 62%;
  padding-left: 8px;
}

.cart-checkout .cart-products .cart-middle .selected-item-middle h5 {
  color: var(--main-color-bright);
  font-size: 16px;
}

.cart-checkout .cart-products .cart-middle .selected-item-middle p {
  font-size: 14px;
}

.cart-checkout .cart-products .cart-middle .selected-item-middle h6 {
  color: var(--main-color-bright);
}

.cart-checkout .cart-products .cart-middle .selected-item-right {
  position: relative;
  height: 100%;
  width: 8%;
}

.cart-checkout
  .cart-products
  .cart-middle
  .selected-item-right
  .quantity-control {
  background-color: var(--bg-card);
}

.cart-checkout
  .cart-products
  .cart-middle
  .selected-item-right
  .quantity-control
  button
  svg {
  stroke: var(--main-color-bright);
}

.cart-checkout .cart-products .cart-middle .selected-item-right button svg {
  stroke: #ef4444;
}

.cart-checkout .cart-products .empty-cart h4 {
  color: var(--main-color-bright);
  font-size: 20px;
}

.cart-checkout .cart-products .empty-cart p {
  color: var(--main-muted-color);
}

.cart-checkout .cart-products .empty-cart a {
  display: block;
  width: 120px;
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  margin-top: 12px;
  margin-inline: auto;
  transition: opacity 0.3s ease;
}

.cart-checkout .cart-products .empty-cart a:hover {
  opacity: 0.92;
}

.cart-content .empty-cart h4 {
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 18px;
}

.cart-content .empty-cart p {
  margin: 0;
  padding-inline: 8px;
  color: var(--text-muted-color);
  font-size: 16px;
  text-transform: lowercase;
}

.cart-content .empty-cart img {
  margin-block: 18px;
}

.cart-content .empty-cart a {
  display: block;
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  padding: 8px;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}

.cart-content .empty-cart a:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.cart-checkout .order-summary {
  background-color: var(--bg-card);
  padding: 1rem 0.8rem;
  box-shadow: var(--shadow);
  border-radius: 4px;
}

.cart-checkout .order-summary .pay-btn {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  margin-top: 1rem;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.cart-checkout .order-summary .pay-btn:hover {
  background-color: transparent;
  color: var(--accent-color);
}
/* END CHECKOUT PAGE */

/* START ABOUT US PAGE */
.about-us {
  margin-top: 74px;
}

.about-us .about-links li a {
  height: 34px;
  width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-bright);
  border-radius: 0.2rem;
  transition: all 0.333s;
}

.about-us .about-links li a svg {
  height: 24px;
  width: 24px;
  stroke: var(--bg-bright-color);
}

.about-us .about-links li a:hover {
  transform: translateY(-4px);
}

.about-us .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.about-us .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us .swiper {
  width: 100%;
  height: 240px;
  margin-left: auto;
  margin-right: auto;
}

.about-us .mySwiper {
  height: 70px;
  box-sizing: border-box;
  padding: 10px 0;
}

.about-us .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}

.about-us .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.about-us .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* END ABOUT US PAGE */

/* START LOGIN AND REGISTRATION PAGES */
/* .register-form .row {
  --bs-gutter-y: 0.8rem !important;
  margin-bottom: 0.8rem !important;
} */

.login-form,
.register-form {
  margin-top: 74px;
}
.login-form .form-control,
.forgot-password .form-control,
.register-form .form-control {
  background-color: transparent;
  color: var(--main-muted-color) !important;
  padding: 4px 18px;
  border: 1px solid var(--text-muted-bright);
}

.login-form .form-control:focus,
.forgot-password .form-control:focus,
.register-form .form-control:focus {
  background-color: transparent;
  border: 1px solid var(--main-color-bright);
}

.login-form .btn-custom,
.register-form .btn-custom {
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  transition: 0.3s all ease-in-out;
}

.register-form .gender-selection {
  display: flex;
  gap: 1.4rem;
}

.login-form .form-floating label,
.register-form .form-floating label,
.forgot-password label {
  left: 8px;
  color: var(--main-color-bright);
}

.register-form .gender-btn {
  color: var(--main-color-bright);
  border: 1px solid var(--text-muted-bright);
}

.register-form .gender-btn:hover {
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
  border: 1px solid var(--main-color-bright);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: var(--main-color-bright);
  color: var(--bg-bright-color);
}

.form-check-input {
  background-color: var(--bg-bright-color);
}

.form-check-input:focus {
  border-color: var(--main-color-bright);
}

.form-check-input:checked {
  background-color: var(--main-color-bright);
  border-color: var(--main-color-bright);
}

.error-msg {
  font-size: 14px;
}

.response-msg-box .response-msg {
  width: 54%;
  background-color: var(--bg-card);
  margin-inline: auto;
  padding: 18px 12px 12px;
  border: 1px solid var(--text-bg);
  border-radius: 4px;
  position: relative;
}

.login-form .show-hide-pass-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background-color: transparent;
  padding: 0;
  border: unset;
}

.login-form .show-hide-pass-btn svg {
  height: 22px;
  width: 22px;
}

.login-form .response-msg-box .response-msg {
  width: 100%;
}

.response-msg-box .response-msg .response-close-btn {
  position: absolute;
  top: 0;
  right: 2px;
  background-color: transparent;
  padding: 0;
  border: none;
}

.response-msg-box .response-msg .response-close-btn svg {
  height: 22px;
  width: 22px;
  stroke: #dd3434;
}

.response-msg-box .response-msg .response-errors {
  color: #b38686;
}

/* START FORGOT PASSWORD PROCESS */
.forgot-password .modal-footer .btn-close-modal {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.forgot-password .modal-footer .btn-forgot-pass {
  background-color: var(--accent-color);
  color: var(--bg-bright-color);
  border: 1px solid var(--accent-color);
}

.forgot-password .response-msg-box .response-msg {
  width: 100%;
}

.otp-field,
.verify-otp-field {
  flex-direction: row;
  column-gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-field input,
.verify-otp-field input {
  height: 45px;
  width: 42px;
  color: var(--main-color-bright);
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid var(--text-bg);
}

.otp-field input:focus,
.verify-otp-field input:focus {
  box-shadow: var(--shadow);
  border-color: var(--main-color-bright);
}

.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button,
.verify-otp-field input::-webkit-inner-spin-button,
.verify-otp-field input::-webkit-outer-spin-button {
  display: none;
}

.new-password .response-msg-box .response-msg .response-close-btn {
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
}
/* END FORGOT PASSWORD PROCESS */
/* END LOGIN AND REGISTRATION PAGES */

/* START PROFILE PAGE */
.profile {
  margin-top: 74px;
}

.profile .user-info {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.profile .user-info img {
  height: 128px;
  width: 128px;
  margin-bottom: 16px;
  padding: 4px;
  border: 1px solid var(--text-bg);
  border-radius: 4px;
}

.profile .user-details .order {
  background-color: var(--bg-card);
  margin-bottom: 8px;
  padding: 8px 12px;
  border: 1px solid var(--text-bg);
  border-radius: 4px;
  box-shadow: var(--shadow);
}
/* END PROFILE PAGE */

/* MEDIA QUERIES */
/* MOBILE SCREENS */
@media (max-width: 767px) {
  .navbar .navbar-nav .nav-item .nav-link::before,
  .navbar .navbar-nav .nav-item .nav-link::after {
    display: none;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    margin-bottom: 4px;
  }

  .navbar .account-btn {
    padding: 0;
  }

  .navbar .account-btn a {
    margin-inline: 0 !important;
  }

  .navbar .account-btn button {
    display: block;
    margin-block: 6px;
    padding-left: 4px !important;
  }

  .navbar .languages-selector {
    margin-top: 8px;
  }

  .bg-navbar-toggle {
    background-color: var(--bg-card) !important;
  }

  .home-bg {
    background-image: url("/img/home-bg-mob.png");
    background-attachment: scroll;
  }

  .home-title {
    font-size: 2.2rem !important;
  }

  .card .product-link {
    height: 250px;
  }

  .card .product-link img {
    height: 160px;
    width: 160px;
  }

  .payment-methods .mastercard-visa {
    padding: 24px;
  }

  .payment-methods .mastercard-visa .name-detail .bank span {
    right: 2px;
  }

  .customers-counter {
    padding: 6rem 2rem;
  }

  .details {
    padding: 6rem 0rem;
  }

  .details .contacts {
    margin-bottom: 1.8rem;
    text-align: center;
  }

  .details .contacts .contact {
    display: block;
  }

  .details .contacts .contact a {
    margin: auto auto 0.4rem;
  }

  .details .schedule h2 {
    text-align: center;
  }

  .details .contacts h2,
  .details .schedule h2 {
    margin-bottom: 1.4rem;
  }

  footer {
    text-align: center;
  }

  footer .footer-paragraph {
    margin-bottom: 0.8rem;
  }

  footer h3 {
    margin-block: 20px;
  }

  footer ul {
    justify-content: center;
  }

  footer .copyright {
    font-size: 0.6rem;
  }

  .scroll-to-top .bx-chevrons-up {
    padding: 0.3rem 0.4rem;
    font-size: 1.3rem;
  }

  .whatsapp-btn {
    width: 40px;
    height: 40px;
    line-height: 41px;
    bottom: 35px;
    right: 10px;
    font-size: 22px;
    z-index: 102;
  }

  .modal .modal-dialog {
    max-width: 100%;
  }

  .modal .modal-dialog .modal-content .present-product {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .modal .modal-dialog .modal-content .present-product .left-present {
    width: 88%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }

  .modal .modal-dialog .modal-content .present-product .right-present {
    width: 100%;
    gap: 1rem !important;
  }

  .shop-store .mix .mix-box .mix-img img {
    height: 160px;
    width: 160px;
  }
}

/* IPAD SCREENS */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link::before,
  .navbar .navbar-nav .nav-item .nav-link::after {
    display: none;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    margin-bottom: 4px;
  }

  .navbar .account-btn {
    padding: 0;
  }

  .navbar .account-btn a {
    margin-inline: 0 !important;
  }

  .navbar .account-btn button {
    display: block;
    margin-block: 6px;
    padding-left: 4px !important;
  }

  .bg-navbar-toggle {
    background-color: var(--bg-card) !important;
  }

  .home-bg {
    background-image: url("/img/home-bg-mob.png");
    background-attachment: scroll;
  }

  .details {
    padding: 6rem 0rem;
  }

  .modal .modal-dialog {
    max-width: 70%;
  }

  .modal
    .modal-dialog
    .modal-content
    .present-product
    .right-present
    .present-add-btn {
    width: 60%;
    margin-inline: auto;
  }
}

/* LAPTOP SCREENS */
@media (min-width: 992px) {
  .home-content p {
    width: 70%;
  }

  footer h3 {
    font-size: 1.58rem;
  }
}

/* DESKTOP SCREENS */
@media (min-width: 1200px) {
  .home-content p {
    width: 60%;
  }

  footer h3 {
    font-size: 1.6rem;
  }
}
