/* ====================
  Reset Default CSS Start
  ==================== */

/* Gilroy Font */
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy, sans-serif";
  src: url("../font/gilroy/Gilroy-Black.ttf") format("truetype");
  font-weight: 900;
}
/* Gilroy Font */

:root {
  --primary-font: "Gilroy, sans-serif";
  --primary-color: #09090b;
  --secondary-color: #e31736;
  --gardiant: linear-gradient(
    180deg,
    rgba(170, 170, 170, 0.1) 0%,
    #cfcfcf 100%
  );
  --accent: #929292;
  --accent-2: #e2e2e2;
  --white: #ffffff;
  --border-color: #929292;
  --border-color2: #424242;
  --border-color3: #cfcfcf;
  --text-color: #424242;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

body {
  background: var(--white);
}

.container {
  padding: 0 18px !important;
}

/*====================
  Reset Default CSS End
  ====================*/

/* Topbar Start */
.topbar_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}
.topbar_wrapper .offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select-wrapper {
  width: 100%;
}

.topbar_wrapper svg {
  width: 28px;
  height: 28px;
}

.topbar_wrapper span {
  font-size: 16px;
  font-weight: 600;
  padding-left: 6px;
}

.language-selector {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
  width: 160px;
}

.language-selector select {
  appearance: none;
  background-color: var(--white);
  border: 1px solid var(--border-color2);
  padding: 6px 16px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  border-radius: 30px;
}

#topbar .fa-angle-down {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.language-selector select:focus {
  outline: none;
}

@media screen and (max-width: 992px) {
  #topbar {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .language-selector select {
    padding: 6px 10px;
    font-size: 14px;
  }

  .topbar_wrapper span {
    font-size: 14px;
  }

  #topbar .fa-angle-down {
    right: 10px;
  }

  .language-selector {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
    width: 135px;
  }
}

/* Top bar End */

/* Header Start */
#navbar_header .header_logo {
  width: 130px;
}

#navbar_header .header_logo img {
  width: 100%;
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.header_item_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.header_item_wrapper .others {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header_item_wrapper .others .icon {
  display: inline-block;
  background: var(--white);
  cursor: pointer;
  transition: 0.4s;
}

.header_item_wrapper .others .icon svg path {
  transition: 0.4s;
}

.header_item_wrapper .others .icon:hover svg path {
  fill: var(--secondary-color);
}

.header_item_wrapper .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header_item_wrapper .others svg {
  width: 26px;
  height: 26px;
}

.header_item_wrapper .item a {
  font-size: 19px;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.4s;
}

.header_item_wrapper .item a:hover {
  color: var(--secondary-color);
}

.header_item_wrapper .cart_icon {
  position: relative;
}

.header_item_wrapper .cart_icon span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -5px;
  top: -3px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  width: 16px;
  height: 16px;
  padding: 2px;
}

@media screen and (max-width: 992px) {
  .header_item_wrapper {
    gap: 40px;
  }

  .header_item_wrapper .others,
  .header_item_wrapper .item {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .header_item_wrapper .item {
    display: none;
  }
}
/* Header End */

/* Navbar Start */
.navbar__main .all_categorie span {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.navbar__main .categories-dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  background: var(--white);
  width: 250px;
  padding: 10px 0px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  visibility: hidden;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  z-index: 90;
}

.navbar__main .categories-dropdown.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.navbar__main .categories-dropdown a {
  display: block;
  font-size: 16px;
  font-weight: var(--text-color);
  color: var(--text-color);
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.4s;
}

.navbar__main .categories-dropdown a:hover {
  color: var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
  padding-left: 30px;
}

.navbar__main a,
.navbar__main button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

.navbar__main img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.navbar__main img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.navbar__main .section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

.navbar__main .centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.navbar__main {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  background: var(--secondary-color);
  box-shadow: var(--shadow-medium);
}

.navbar__main .navbar {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.navbar__main .navbar .navbar__left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar .navbar__center {
  display: flex;
}

.menu .menu__header {
  display: none;
  box-shadow: var(--shadow-medium);
}

.menu .menu__inner .menu__item {
  position: static;
  display: inline-block;
  margin-left: 40px;
}

.menu .menu__inner .menu__item:last-child {
  padding-right: 0;
}

.menu .menu__inner .menu__item .menu__link {
  border-bottom: 3px solid transparent;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.menu .menu__inner .menu__item .active {
  border-bottom: 3px solid var(--white);
}

.menu .menu__inner .menu__item .menu__link:hover {
  border-bottom: 3px solid var(--white);
}

.menu .menu__inner .menu__item .menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  padding: 15px 0px 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
  transition: all 0.25s ease;
}

.menu .menu__inner .menu__item .menu__link > i {
  margin-left: 5px;
  font-size: 18px;
  color: var(--white);
  transition: 0.35s;
}

.navbar__main .submenu {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 50%;
  width: 100%;
  height: auto;
  padding: 20px 15px;
  border-radius: 20px;
  border-top: 2px solid var(--color);
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  transform: translateX(-50%);
}

.submenu.megamenu__text,
.submenu.megamenu__normal {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.submenu.megamenu__text {
  padding: 26px 26px;
}

.submenu.megamenu__normal .submenu__list .active {
  border-bottom: 3px solid var(--secondary-color) !important;
}

.submenu .submenu__inner__offer {
  width: 40%;
  padding-left: 20px;
}

.submenu .submenu__inner__offer .offer {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.submenu .submenu__inner__offer .offer__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  position: relative;
}

.submenu .submenu__inner__offer .offer__img img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  background-position: center;
}

.submenu .submenu__inner__offer .offer__img .badge {
  position: absolute;
  right: 0px;
  top: 10px;
}

.submenu .submenu__inner__offer .offer__img .badge span {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
}

.submenu .submenu__inner__offer .offer__img .details {
  position: absolute;
  right: 20px;
  top: 40px;
  text-align: right;
}

.submenu .submenu__inner__offer .offer__img .details h2 {
  font-size: 32px;
  font-weight: 800;
  margin-top: 16px;
  color: var(--white);
}

.submenu .submenu__inner__offer .offer__img .details p {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
}

.submenu .submenu__inner__offer .details .shop_now_btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 30px;
  padding: 10px 30px;
  transition: 0.4s;
}

.submenu .submenu__inner__offer .details .shop_now_btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.submenu .discount__offer {
  margin: 0px 1px;
  display: flex !important;
  justify-content: space-around;
  padding: 20px 20px;
  border-radius: 16px;
  background: linear-gradient(
    182deg,
    #f3f5fa 0%,
    #f9fafd 23.1%,
    #f9fafd 47.18%,
    #eeeff3 66.83%,
    #f1f3f7 98.28%
  );
  -webkit-border-radius: 16px;
  border: 1px solid var(--accent-2);
}

.submenu .discount__offer span {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
}

.submenu .discount__offer h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0;
  color: var(--primary-color);
}

.submenu .discount__offer h2 sup {
  font-size: 26px;
  font-weight: 600 !important;
  color: var(--primary-color);
}

.submenu .discount__offer .view_all_btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--primary-color);
  padding: 5px 10px;
  color: var(--primary-color);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.submenu .discount__offer .offer__title span {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.submenu .discount__offer .offer__title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  margin: 10px 0;
}

.submenu .discount__offer .view_all_btn:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.submenu .discount__offer .discount__offer_img {
  width: 44%;
  aspect-ratio: 16 / 4;
}

.submenu .discount__offer .discount__offer_img img {
  width: 100%;
  height: 100%;
  background-size: contain;
  object-fit: contain;
  background-position: center;
}

.submenu .submenu__inner .submenu__title {
  font-size: 18px;
  font-weight: bold;
  color: var(--color);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.submenu .submenu__list li {
  display: block;
  line-height: 1;
  margin: 0 auto;
}
.submenu .submenu__list li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  line-height: 1.4;
  text-transform: capitalize;
  color: var(--text-color);
  transition: all 0.25s ease-in-out;
}

.submenu .submenu__list li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s;
}

.submenu .submenu__list li a:hover::after {
  width: 100%;
}

.submenu .submenu__list li .active:hover::after {
  width: 0% !important;
}

.submenu .submenu__list li a:nth-child(1) {
  margin-top: 0px;
}
.submenu .submenu__list li a:hover {
  color: var(--secondary-color);
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
  pointer-events: none;
}

.navbar__main .burger {
  position: relative;
  display: block;
  cursor: pointer;
  width: 25px;
  height: 15px;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

.burger .burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 15px;
  background: var(--white);
}

.navbar__main .burger .burger-line:nth-child(1) {
  top: 0px;
  height: 2px;
}
.navbar__main .burger .burger-line:nth-child(2) {
  top: 8px;
  width: 70%;
}
.navbar__main .burger .burger-line:nth-child(3) {
  top: 16px;
}

/* Landscape orientation for smaller devices */
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .navbar__main .categories-dropdown {
    height: 300px;
    overflow-y: scroll;
  }

  .submenu .megamenu__text__wrapper .inner__wrapper {
    flex-direction: column;
    overflow-y: auto;
  }

  .cart_sidebar {
    height: 100vh !important;
    overflow-y: auto;
    border-bottom-left-radius: 0px !important;
  }

  .cart_sidebar .card_cartSidebar_wrapper {
    height: 100%;
  }
  .cart_sidebar .cart_buttons {
    padding-bottom: 20px !important;
  }
}
/* Landscape orientation for smaller devices */

@media (min-width: 992px) {
  .submenu.megamenu__normal {
    left: 85%;
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .submenu .submenu__inner .submenu__title {
    margin-bottom: 20px;
  }
  .submenu.megamenu__text {
    display: flex;
    width: 100%;
    height: auto;
  }
  .submenu .megamenu__text__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .submenu .megamenu__text__wrapper .inner__wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 992px) {
  .menu .menu__inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .menu .menu__header .menu__title {
    cursor: pointer;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white);
    transition: all 0.25s ease;
  }
  .menu .menu__header .menu__arrow {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0px 15px 0px 15px;
  }

  .menu .menu__header .menu__arrow > i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20;
    color: var(--white);
    transition: all 0.25s ease;
    border: 1px solid var(--white);
    border-radius: 4px;
    padding: 5px 5px 3.5px 5px;
    transform: rotate(90deg) !important;
  }
  .menu .menu__header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }
  .menu .menu__header.is-active {
    visibility: visible;
    background: var(--secondary-color);
  }
  .menu .menu__header.is-active > .menu__arrow {
    display: flex;
  }

  .navbar__main .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    max-width: 85%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    background-color: #fff;
    transform: translate(-100%);
    transition: all 0.4s ease-in-out;
  }
  .navbar__main .menu.is-active {
    transform: translate(0%);
  }
  .navbar__main .navbar .navbar__left {
    flex: 0 0 100%;
    justify-content: space-between;
  }
  .navbar .navbar__center {
    flex: 0 0 100%;
    align-items: center;
  }
}

@media screen and (max-width: 992px) {
  .menu .menu__inner .menu__item {
    display: block;
    padding: 0;
    margin-left: 0px;
  }
}
@media (min-width: 992px) {
  .menu .menu__inner .menu__item:hover > .menu__link i {
    transform: rotate(180deg);
  }

  .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    top: 115%;
  }
}
@media (min-width: 992px) {
  .navbar__main .submenu {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

@media screen and (max-width: 992px) {
  .submenu .discount__offer {
    display: none !important;
  }

  .submenu .submenu__inner {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .submenu .submenu__inner__offer {
    width: 100%;
    height: auto;
    padding: 0px;
  }

  .navbar__main {
    padding: 13px 0;
  }

  .navbar__main .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    max-width: none;
    min-width: auto;
    margin-top: 50px;
    padding: 15px 15px;
    border-radius: 0;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
  }
  .navbar__main .submenu.is-active {
    display: block;
  }

  .menu .menu__inner .menu__item .menu__link > i {
    margin-left: 10px;
    color: var(--primary-color);
  }

  .menu .menu__inner .menu__item .menu__link {
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--primary-color);
  }

  .submenu .submenu__inner .submenu__title {
    margin-bottom: 10px;
  }
  .submenu .submenu__list {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .navbar__main .burger {
    opacity: 1;
    visibility: visible;
  }

  .navbar__main .overlay {
    cursor: url(../icon/close.png), zoom-out;
    pointer-events: visible;
  }

  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .submenu .submenu__list li a {
    display: inline-block;
    max-width: 100%;
  }
}
/* Navbar End */

/* Navbar header Add to Cart Sidebar Start */
/* Overlay */
.overlay_cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 110;
  pointer-events: none;
}

.overlay_cart.active {
  opacity: 1;
  pointer-events: auto;
}

/* Sidebar */
.cart_sidebar {
  position: fixed;
  top: 0;
  right: -120%;
  max-width: 380px;
  height: auto;
  background: var(--white);
  transition: right 0.5s ease;
  border-bottom-left-radius: 16px;
  padding: 20px;
  z-index: 111;
}

.cart_sidebar.active {
  right: 0;
}

.cart_sidebar .cart_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
}

.cart_sidebar .cart_header h2 {
  margin: 0;
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 800;
}

.cart_sidebar .welcome {
  margin: 20px 0;
  font-size: 16px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
}

.cart_sidebar .progress_bar {
  position: relative;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
  margin-bottom: 20px;
}

.cart_sidebar .progress_bar .icon {
  position: absolute;
  right: 0px;
  top: -10px;
}

.cart_sidebar .progress_bar .icon svg {
  width: 23px;
  height: 23px;
}

.cart_sidebar .close_btn {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
  background: var(--primary-color) !important;
}

.cart_sidebar .cart_items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  max-height: 246px;
  margin-right: 40px;
  overflow-y: auto;
}

.cart_sidebar .cart_items::-webkit-scrollbar {
  width: 8px !important;
}

.cart_sidebar .cart_items .dlt_btn {
  display: inline-block;
  background: transparent;
}

.cart_sidebar .dlt_btn svg {
  width: 30px;
  height: 30px;
}

.cart_sidebar .cart_items .product_details_wrapper {
  display: flex;
  gap: 10px;
}

.cart_sidebar .cart_items .item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cart_sidebar .cart_items li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 10px 0;
  margin-right: 10px;
}

.cart_sidebar .cart_items li .product_item {
  width: 25%;
  height: 25%;
  border-radius: 12px;
  background: var(--gardiant);
  background-size: cover;
  object-fit: cover;
  background-position: center;
  overflow: hidden;
}

.cart_sidebar .cart_items li .product_item img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  background-position: center;
}

.cart_sidebar .cart_items .item .title {
  width: 180px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.cart_sidebar .cart_items .price_container {
  display: flex;
  align-items: center;
  align-items: center;
  gap: 10px;
}

.cart_sidebar .cart_items .price_container .price {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}

.cart_sidebar .cart_footer {
  margin-top: 20px;
  border-top: 1px solid var(--accent-2);
  padding-top: 10px;
}

.cart_sidebar .cart_footer p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart_sidebar .cart_footer p span {
  font-weight: bold;
  font-size: 18px;
}

.cart_sidebar .cart_footer .grand_total span {
  font-weight: bold;
  font-size: 22px;
}

.cart_sidebar .cart_buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.cart_sidebar .view_cart,
.cart_sidebar .checkout {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
}

.cart_sidebar .view_cart {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: 0.4s;
}

.cart_sidebar .view_cart:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.cart_sidebar .checkout {
  background: var(--secondary-color);
  color: var(--white);
  transition: 0.4s;
  border: 1px solid var(--secondary-color);
}

.cart_sidebar .checkout:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transition: 0.4s;
}

/* quantity */

.cart_sidebar .quantity_wrapper {
  display: inline-block;
}

.cart_sidebar .quantity_wrapper .wrap {
  width: 80px;
  display: flex;
  align-items: center;
  border: 1px solid var(--accent-2);
  border-radius: 8px;
  padding: 2px 10px;
}

.cart_sidebar .quantity_wrapper input {
  width: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 600 !important;
  color: var(--text-color);
  font-size: 18px;
  border: none;
  outline: none;
}

.cart_sidebar .btn-increase,
.cart_sidebar .btn-decrease {
  width: 20px !important;
  height: 20px !important;
  padding: 0px !important;
  font-size: 26px !important;
  font-weight: 600;
  color: var(--text-color) !important;
  display: flex;
  justify-content: center;
  background: transparent !important;
  align-items: center;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.cart_sidebar .btn-decrease,
.cart_sidebar .btn-increase {
  color: var(--accent) !important;
}

@media screen and (max-width: 576px) {
  .cart_sidebar {
    margin-left: 40px;
  }

  .cart_sidebar .cart_items {
    max-height: 340px;
  }

  .cart_sidebar .welcome {
    margin: 10px 0;
  }

  .cart_sidebar .cart_header h2 {
    font-size: 24px;
  }

  .cart_sidebar .cart_footer .grand_total span {
    font-size: 20px;
  }

  .cart_sidebar .cart_footer p {
    margin-bottom: 10px;
  }

  .cart_sidebar .cart_footer p span {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .cart_sidebar .cart_items .price_container .price,
  .cart_sidebar .cart_items .item .title {
    font-size: 16px !important;
    margin-bottom: 5px;
  }

  .cart_sidebar .cart_items .item .title {
    width: 150px;
  }

  .cart_sidebar .cart_items .price_container {
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }

  .cart_sidebar .view_cart,
  .cart_sidebar .checkout {
    font-size: 16px;
    padding: 8px;
  }

  .cart_sidebar .dlt_btn svg {
    width: 26px;
    height: 26px;
  }
}

/* Navbar header Add to Cart Sidebar End */

/* Footer Start */
#footer {
  background: var(--accent-2);
}

.footer_wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 70px 0;
}

.footer_wrapper .row {
  display: flex;
  justify-content: space-between !important;
}

.footer_logo {
  width: 200px;
}

.footer_logo img {
  width: 100%;
}

.footer_logo_text p {
  max-width: 320px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text-color);
}

.footer_content_heading h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color);
  display: inline-block;
}

.footer_content_menu ul li {
  line-height: 35px;
}

.footer_content_menu ul li a {
  font-size: 18px;
  display: inline-block;
  color: var(--text-color);
  font-weight: 600;
  transition: 0.5s;
  font-family: var(--text-color);
}

.footer_content_menu ul li a:hover {
  color: var(--secondary-color);
}

.footer_content_address a {
  display: block;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
  font-family: var(--secondary-font);
  transition: 0.5s;
}

.footer_content_address .brand {
  max-width: 330px;
  display: flex;
  justify-content: start;
  align-items: center;
  border-top: 1px solid var(--border-color);
  gap: 10px;
  padding-top: 10px;
  margin-top: 10px;
}

.footer_content_address .brand .payment {
  border-radius: 6px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  object-fit: cover;
}

.footer_content_address .brand .payment img {
  width: 100%;
  background-size: cover;
  object-fit: cover;
}

.footer_content_address svg {
  width: 35px;
  height: 35px;
}

.footer_content_address .numbar {
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 10px;
  transition: 0.4s;
}

.footer_content_address .numbar:hover {
  color: var(--primary-color);
}

.footer_content_address .numbar:hover svg path {
  stroke: var(--primary-color);
}

.footer_content_address .numbar svg path {
  stroke: var(--secondary-color);
  transition: 0.4s;
}

#footer .categories_wrapper {
  display: flex;
  gap: 10px;
}

.footer_categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

#footer .categories_item h3 {
  white-space: nowrap;
  font-size: 20px;
  font-weight: 700;
  padding-right: 10px;
  margin: 0px;
  color: var(--primary-color);
}

#footer .categories_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#footer .categories_item span {
  padding: 0px 0px 0px 6px;
}

#footer .categories_item a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

@media screen and (max-width: 1200px) {
  .footer_logo_text p {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .footer_wrapper {
    display: block;
    padding: 40px 0;
  }

  .footer_wrapper_item:nth-child(1) {
    margin-top: 0px;
  }

  .footer_wrapper_item {
    margin-top: 40px;
  }
  .footer_categories {
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .footer_logo {
    width: 130px;
  }

  #footer .footer_content {
    margin-top: 20px;
  }

  .footer_content_heading h2 {
    margin-bottom: 0px;
  }
}

/* Footer End */

/* Copy Right Start */
#copy_right {
  background: var(--accent-2);
  border-top: 1px solid var(--border-color);
  padding: 16px 0;
}

.copy_right_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy_right_heading .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.copy_right_heading .social i {
  color: var(--text-color);
  font-size: 25px;
  transition: 0.4s;
}

.copy_right_heading .social i:hover {
  color: var(--secondary-color);
}

.copy_right_heading p {
  font-size: 16px;
  text-align: left;
  margin: 0px;
  font-weight: 500;
  color: var(--text-color);
}

@media screen and (max-width: 768px) {
  .copy_right_heading {
    display: block;
  }

  .copy_right_heading p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }

  .copy_right_heading .social {
    margin-top: 10px;
  }
  .copy_right_heading .social i {
    font-size: 22px;
  }
}
/* Copy Right End */
