@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --marqueetime {
  syntax: "<time>";
  initial-value: 20s;
  inherits: false;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.menu a {
  text-decoration: none;
  color: #262626;
}

header {
  width: 90%;
  position: fixed;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 2fr 5fr 3fr 2fr;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 1.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.89);
  backdrop-filter: blur(5px);
  z-index: 999;
}
header .logo-sec {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
}
header .logo-sec .logo {
  width: 80%;
  object-fit: contain;
  object-position: center;
}
header nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
}
header nav .main-menu {
  gap: 2rem;
  font-size: 0.9vw;
}
header .mobile-menu-icon {
  display: none;
}
header .search-bar-sec {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
header .search-bar-sec #search-bar {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #aeaeae;
  width: 80%;
  height: 90%;
  padding: 0.5rem 1.7rem 0.5rem 0.5rem;
  border-radius: 0.3rem;
}
header .search-bar-sec #search-bar::placeholder {
  font-size: 0.9vw;
  color: #adadad;
}
header .search-bar-sec::before {
  content: "";
  width: 1.2rem;
  height: 100%;
  position: absolute;
  right: 0.4rem;
  background-image: url("assets/icons/zoom-lens.png");
  background-position: right 0.2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  opacity: 0.5;
  pointer-events: none;
}
header .user-nav-sec {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: end;
}
header .user-nav-sec .user-menu {
  gap: 2rem;
}
header .user-nav-sec .user-menu li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7vw;
}
header .user-nav-sec .user-menu li img {
  width: 1.2rem;
  object-fit: contain;
  object-position: center;
}

.mobile-menu {
  display: none;
}

main {
  width: 100%;
  height: auto;
  padding-bottom: 4vmax;
}
main .hero-section-wrapper {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
main .hero-section-wrapper .hero-section {
  background-color: #000;
  padding: 5vh 1vh 0 1vh;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: 100dvh;
  border-radius: 0 0 5rem 5rem;
  color: #ebebeb;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
main .hero-section-wrapper .hero-section .hero-sec-txt {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  gap: 2vh;
  justify-content: center;
  align-items: start;
  width: 50%;
  height: 100%;
  padding-left: 6vmax;
  text-align: left;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .location {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 0.4rem;
  text-align: left;
  font-size: 0.77rem;
  padding: 0.2rem 1.1rem;
  border-radius: 2.6rem;
  background-color: rgba(255, 255, 255, 0.8784313725);
  color: #262626;
  margin-bottom: 2vh;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .location svg {
  width: 1.4rem;
  color: #262626;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .heading-txt {
  font-size: 10vh;
  font-family: "Raleway", sans-serif;
  line-height: 5.2vw;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .subheading-txt {
  font-size: 2.5vh;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 0.7rem;
  padding: 2vh 0;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .shop-btn,
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .explore-store {
  padding: 1.3vh 2.2vh;
  border-radius: 0.4rem;
  border: none;
  font-weight: 400;
  color: #ebebeb;
  cursor: pointer;
  font-size: 2.2vh;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .shop-btn {
  background-color: #1b1919;
  position: relative;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .shop-btn::after, main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .shop-btn::before {
  content: "";
  width: 102%;
  height: 106%;
  background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
  position: absolute;
  z-index: -1;
  border-radius: 0.4rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: spin;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .shop-btn::before {
  filter: blur(0.2rem);
  opacity: 0.5;
}
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .shop-btn:hover::after, main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .shop-btn:hover::before {
  animation-play-state: paused;
}
@keyframes spin {
  0% {
    --angle: 0deg;
  }
  50% {
    --angle: 180deg;
  }
  100% {
    --angle: 360deg;
  }
}
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .explore-store {
  color: rgba(235, 235, 235, 0.831372549);
  background-color: rgba(93, 92, 92, 0);
  border: 1px solid rgba(93, 93, 93, 0);
}
main .hero-section-wrapper .hero-section .hero-sec-txt .buttons .explore-store:hover {
  background-color: rgba(93, 92, 92, 0.3019607843);
  color: #ebebeb;
  border: 1px solid rgba(93, 93, 93, 0.4666666667);
}
main .hero-section-wrapper .hero-section::after {
  content: "";
  position: absolute;
  bottom: -22%;
  left: 1%;
  width: 40vh;
  height: 40vh;
  background: linear-gradient(to right, #34b2bf 0%, #20529a 60%);
  border-radius: 50%;
  filter: blur(50px) opacity(0.3);
  z-index: -1;
}
main .hero-section-wrapper .hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: 4%;
  width: 40vh;
  height: 40vh;
  background: linear-gradient(to right, #ffe700 0%, #ffe700 60%);
  border-radius: 50%;
  filter: blur(50px) opacity(0.4);
  z-index: -1;
}
main .hero-section-wrapper .hero-section .hero-sec-slider {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  padding-right: 6vmax;
  padding-top: 2vmax;
}
main .hero-section-wrapper .hero-section .hero-sec-slider .slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: absolute;
  border-radius: 2vmax;
  overflow: hidden;
  object-fit: cover;
  width: 60vmin;
  height: 70vmin;
  object-position: center;
}
main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides img {
  width: 100%;
}
main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slide-1 {
  background-color: #efefef;
  z-index: 3;
}
main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slide-2 {
  background-color: #d5b3ff;
  z-index: 2;
  transform: scale(0.89) translateX(20%);
  filter: blur(3px);
}
main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slide-3 {
  transform: scale(0.89) translateX(-20%);
  background-color: #b1c5ff;
  z-index: 1;
  filter: blur(3px);
}
main .ticker-sec {
  width: 100%;
  height: 10vh;
  background-color: #f5f5f5;
  border-radius: 0 0 5rem 5rem;
  overflow: hidden;
}
main .ticker-sec .ticker {
  height: 100%;
  display: flex;
  position: relative;
  white-space: nowrap;
}
main .ticker-sec .ticker ul {
  width: auto;
  height: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1vh 1vh 1vh 0;
  gap: 2vh;
  flex-shrink: 0;
  will-change: transform;
  animation: marquee var(--marqueetime) linear infinite;
}
main .ticker-sec .ticker ul li {
  flex-shrink: 0;
  height: 100%;
  color: #000;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.2vh;
  word-spacing: 0.2vh;
  font-size: 2.8vh;
}
main .ticker-sec .ticker ul svg {
  width: 6.6vh;
  fill: #000;
}
main .ticker-sec .ticker:hover ul {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
main .sec-title h2 {
  margin-top: 9vh;
  margin-bottom: 4vh;
  font-size: 3.6vh;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}
main .category {
  width: 100%;
  background-color: #fff;
  font-size: 2vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}
main .category .arrow-btn {
  width: 5vh;
}
main .category .arrow-btn img {
  width: 100%;
}
main .category .arrow-btn:first-child {
  transform: rotate(-180deg);
}
main .category .product-carousel {
  width: 80%;
  height: 70%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 2.4rem;
  flex-wrap: nowrap;
  margin-bottom: 10vh;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
main .category .product-carousel .product-card {
  flex-shrink: 0;
  width: 26vh;
  height: 26vh;
  border: 1.7px solid #dddddd;
  border-radius: 1.2rem;
  padding: 1rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 0.4rem;
  color: #000;
}
main .category .product-carousel .product-card .card-image {
  width: 100%;
}
main .category .product-carousel .product-card .card-image img {
  transition: all 0.2s linear;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main .category .product-carousel .product-card .card-image:hover img {
  transform: scale(1.1);
}
main .category .product-carousel .product-card .card-txt .card-title {
  font-size: 2.4vh;
  font-weight: 500;
}
main .brands {
  width: 100%;
  background-color: #fff;
  font-size: 2vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}
main .brands .arrow-btn {
  width: 5vh;
}
main .brands .arrow-btn img {
  width: 100%;
}
main .brands .arrow-btn:first-child {
  transform: rotate(-180deg);
}
main .brands .product-carousel {
  position: relative;
  width: 80%;
  height: 70%;
  display: flex;
  gap: 2rem;
  overflow: hidden;
}
main .brands .product-carousel::after {
  position: absolute;
  content: "";
  left: 0;
  width: 20%;
  height: 100%;
  background-image: linear-gradient(to right, white, transparent);
}
main .brands .product-carousel::before {
  position: absolute;
  content: "";
  right: 0;
  width: 20%;
  height: 100%;
  background-image: linear-gradient(to left, white, transparent);
}
main .brands .product-card {
  width: 16vh;
  height: 16vh;
  border: 0.01rem solid #dddddd;
  border-radius: 1.2rem;
  padding: 0rem 0.1rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
main .brands .product-card .card-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .brands .product-card .card-image img {
  transition: all 0.2s linear;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main .brands .product-card .card-image:hover img {
  transform: scale(1.05);
}
main .brands .brand-txt {
  width: 70%;
  text-align: center;
  margin: 2vmax auto;
  font-size: 1.2vmax;
  line-height: 2vmax;
}
main .product-showcase {
  width: 100%;
  height: 100%;
  padding: 3vmax 0 4vmax 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}
main .product-showcase .product-carousel {
  position: relative;
  width: 80%;
  height: 70%;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
main .product-showcase .product-card {
  flex-shrink: 0;
  width: 20vmax;
  height: auto;
  border: 0.01rem solid #2f2f2f;
  border-radius: 1.2rem;
  padding: 2vh;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
main .product-showcase .product-card::after {
  content: "";
  width: 3vmin;
  height: 3vmin;
  background-image: url("assets/icons/heart.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  right: 5%;
  cursor: pointer;
}
main .product-showcase .product-card .card-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
main .product-showcase .product-card .card-image img {
  transition: all 0.2s linear;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main .product-showcase .product-card .card-image:hover img {
  transform: scale(1.05);
}
main .product-showcase .product-card .card-title {
  width: 100%;
  padding: 1vmax 0;
}
main .product-showcase .product-card .card-title p {
  font-size: 1.15vmax;
  line-height: 1.75vmax;
  cursor: pointer;
}
main .product-showcase .product-card .card-amount {
  width: 100%;
  padding: 1vmax 0;
}
main .product-showcase .product-card .card-amount p {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8vmax;
}
main .product-showcase .product-card .card-amount p .final-amount {
  font-size: 1.75vmax;
  cursor: pointer;
}
main .product-showcase .product-card .card-amount p .original-amount {
  font-size: 1vmax;
  cursor: pointer;
}
main .product-showcase .product-card .card-amount p .savings {
  font-size: 1vmax;
  cursor: pointer;
}
main .product-showcase .product-card .card-amount p .offer {
  font-size: 1vmax;
  border: 0.01rem solid #2f2f2f;
  padding: 0.5vmax 0.6vmax;
  border-radius: 0.2rem;
  cursor: pointer;
}
main .product-showcase .product-card .card-delivery-info {
  width: 100%;
  padding: 1vmax 0;
}
main .product-showcase .product-card .card-delivery-info p {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 0.5vmax;
}
main .product-showcase .product-card .card-delivery-info p .delivery-icon {
  width: 10%;
}
main .product-showcase .product-card .card-delivery-info p .delivery-icon img {
  width: 100%;
  cursor: pointer;
}
main .product-showcase .product-card .card-delivery-info p .delivery-duration {
  font-size: 1vmax;
  cursor: pointer;
}
main .product-banner {
  width: 100%;
  height: 30vmax;
  background-color: #20529a;
  margin: 9vmax 0 2vmax 0;
}
main .product-banner .row {
  width: 100%;
  height: 100%;
}
main .product-banner .row picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main .multi-product-banner {
  width: 100%;
  height: auto;
  padding: 3vmax 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vmax;
}
main .multi-product-banner .row-1 {
  width: 90%;
  height: 100%;
}
main .multi-product-banner .row-1 picture img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  object-fit: contain;
  object-position: center;
}
main .multi-product-banner .row-2 {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1vmax;
}
main .multi-product-banner .row-2 picture img {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main .category-banner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}
main .category-banner .arrow-btn {
  width: 20vmax;
}
main .category-banner .arrow-btn img {
  width: 100%;
}
main .category-banner .arrow-btn:first-child {
  transform: rotate(-180deg);
}
main .category-banner .product-carousel {
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-items: end;
  gap: 1vmax;
  flex-wrap: nowrap;
}
main .category-banner .product-carousel .product-card {
  width: auto;
  height: auto;
  border: 1.7px solid #dddddd;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #000;
  transition: all 0.2s linear;
  overflow: hidden;
}
main .category-banner .product-carousel .product-card .card-image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
main .category-banner .product-carousel .product-card .card-image img {
  transition: all 0.2s linear;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main .category-banner .product-carousel .product-card:hover {
  transform: scale(1.1);
}
main .category-banner .brand-txt {
  width: 70%;
  text-align: center;
  margin: 2vmax auto;
  font-size: 1.2vmax;
  line-height: 2vmax;
}
main .our-locations {
  width: 100%;
  height: 90vmin;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5vmax 0;
}
main .our-locations .location-wrapper {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3vmax;
}
main .our-locations .location-wrapper .left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 4vmax 0 0 0;
  overflow: hidden;
}
main .our-locations .location-wrapper .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .our-locations .location-wrapper .right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
main .our-locations .location-wrapper .right .about-title {
  font-size: 3vmax;
  margin-bottom: 2vmax;
}
main .our-locations .location-wrapper .right .about-text {
  font-size: 1.2vmax;
  line-height: 1.8vmax;
  word-spacing: 0.12vmax;
  letter-spacing: 0.02vmax;
  margin-bottom: 3vmax;
}
main .our-locations .location-wrapper .right .about-subtitle {
  font-size: 1.5vmax;
  margin-bottom: 2vmax;
}
main .our-locations .location-wrapper .right .location-btn {
  padding: 0.75vmax 1.3vmax;
  background-color: #191919;
  color: #ebebeb;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  position: relative;
  cursor: pointer;
}
main .our-locations .location-wrapper .right .location-btn .location-list {
  margin-bottom: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1vmax;
  font-size: 1.2vmax;
  font-weight: 400;
}
main .our-locations .location-wrapper .right .location-btn .location-list span {
  width: 1.9vmax;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main .our-locations .location-wrapper .right .location-btn .location-list span img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: invert(100%);
  transition: transform 0.3s ease;
}
main .our-locations .location-wrapper .right .location-btn .location-list span img.rotated {
  transform: rotate(90deg);
}
main .our-locations .location-wrapper .right .location-btn ul {
  background-color: rgba(43, 43, 43, 0.79);
  backdrop-filter: blur(4px);
  width: 100%;
  height: auto;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  display: none;
}
main .our-locations .location-wrapper .right .location-btn ul li {
  padding: 5% 10%;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ebebeb;
}
main .our-locations .location-wrapper .right .location-btn ul li:hover {
  background-color: rgba(43, 43, 43, 0.8);
}
main .our-locations .location-wrapper .right .location-btn ul.open {
  display: flex;
}
main .our-locations .location-wrapper .right .about-stores {
  width: 100%;
  height: 8vmax;
  margin-top: 3vmax;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  justify-content: center;
  background-color: #191919;
  color: #ebebeb;
}
main .our-locations .location-wrapper .right .about-stores .total-stores, main .our-locations .location-wrapper .right .about-stores .total-customers {
  border-right: 1px solid #ebebeb;
}
main .our-locations .location-wrapper .right .about-stores .total-stores, main .our-locations .location-wrapper .right .about-stores .total-customers, main .our-locations .location-wrapper .right .about-stores .total-delivery {
  width: auto;
  height: 70%;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  justify-content: center;
}
main .our-locations .location-wrapper .right .about-stores .total-stores h5, main .our-locations .location-wrapper .right .about-stores .total-customers h5, main .our-locations .location-wrapper .right .about-stores .total-delivery h5 {
  font-size: 2vmax;
  margin-bottom: 0.5vmax;
}
main .our-locations .location-wrapper .right .about-stores .total-stores p, main .our-locations .location-wrapper .right .about-stores .total-customers p, main .our-locations .location-wrapper .right .about-stores .total-delivery p {
  font-size: 1.2vmax;
}
main .highlights {
  width: 100%;
  height: 100%;
  margin: 8vmax 0;
}
main .highlights .highlight-wrapper {
  width: 80%;
  height: 20vmax;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 2vmax;
  padding-bottom: 2vmax;
  background-color: #ffffff;
  border-radius: 2rem;
  border: 0.2rem solid #191919;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
main .highlights .highlight-wrapper .free-shipping, main .highlights .highlight-wrapper .cod, main .highlights .highlight-wrapper .quality, main .highlights .highlight-wrapper .lowest-price {
  width: 100%;
  padding: 1vmax 2vmax;
  border-right: 0.2rem solid #191919;
  color: #191919;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vmax;
}
main .highlights .highlight-wrapper .free-shipping video, main .highlights .highlight-wrapper .cod video, main .highlights .highlight-wrapper .quality video, main .highlights .highlight-wrapper .lowest-price video {
  width: 40%;
  filter: saturate(100%) hue-rotate(300deg);
}
main .highlights .highlight-wrapper .free-shipping p, main .highlights .highlight-wrapper .cod p, main .highlights .highlight-wrapper .quality p, main .highlights .highlight-wrapper .lowest-price p {
  font-size: 1.1vmax;
}
main .highlights .highlight-wrapper .lowest-price {
  border: none;
}
main .faqs {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .faqs .faqs-wrapper {
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 1.3vmax;
}
main .faqs .faqs-wrapper .question {
  width: 100%;
  padding: 1.3% 2%;
  border: 1px solid #191919;
  border-radius: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  cursor: pointer;
}
main .faqs .faqs-wrapper .question::after {
  content: "";
  position: absolute;
  right: 1.3%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 2.5vmin;
  height: 2.5vmin;
  background-image: url("./assets/icons/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease;
}
main .faqs .faqs-wrapper .question.active::after {
  transform: translateY(-50%) rotate(-90deg);
}
main .faqs .faqs-wrapper .answer {
  width: 100%;
  padding: 1.3% 3%;
  display: none;
}
main .faqs .faqs-wrapper .answer.active {
  display: flex;
}

footer {
  width: 100%;
  height: 80vh;
  padding: 2vmax 2vmax 0 2vmax;
  background-color: #191919;
  color: #b9b9b9;
}
footer .footer-wrapper {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}
footer .footer-wrapper .links {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 2vmax;
}
footer .footer-wrapper .links .about-us, footer .footer-wrapper .links .categories, footer .footer-wrapper .links .trending, footer .footer-wrapper .links .company, footer .footer-wrapper .links .legal, footer .footer-wrapper .links .social {
  padding: 1% 1.1%;
  font-size: 0.99vmax;
  line-height: 2.5vmax;
}
footer .footer-wrapper .links h5 {
  font-size: 1.15vmax;
  font-weight: 600;
  color: #d6d6d6;
}
footer .footer-wrapper .links .about-us {
  width: 24%;
}
footer .footer-wrapper .links .about-us p {
  line-height: 1.6vmax;
  padding-bottom: 4%;
}
footer .footer-wrapper .links .about-us p a {
  color: #b9b9b9;
  text-decoration: none;
}
footer .footer-wrapper .links ul {
  list-style: none;
}
footer .footer-wrapper .links ul li {
  padding-left: 3%;
}
footer .footer-wrapper .links .categories {
  width: 14%;
}
footer .footer-wrapper .links .trending {
  width: 14%;
}
footer .footer-wrapper .links .company {
  width: 12%;
}
footer .footer-wrapper .links .legal {
  width: 16%;
}
footer .footer-wrapper .links .social {
  width: 16%;
  font-size: 1.1vmax;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 0.75vmax;
}
footer .footer-wrapper .links .social p {
  font-size: 1vmax;
}
footer .footer-wrapper .links .social .social-media, footer .footer-wrapper .links .social .accepted-cards {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: auto;
}
footer .footer-wrapper .links .social .social-media img, footer .footer-wrapper .links .social .accepted-cards img {
  width: 20%;
}
footer .footer-wrapper .links .social .social-media {
  gap: 8%;
}
footer .footer-wrapper .links .social .accepted-cards {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-wrapper .links .social .accepted-cards img {
  width: 40%;
  height: 100%;
  background-color: #e0e0e0;
  margin: 2%;
  border-radius: 0.2rem;
  padding: 0.12vmax 0.6vmax;
}
footer .footer-wrapper .copyright {
  width: 100%;
  height: auto;
}
footer .footer-wrapper .copyright p {
  text-align: center;
  font-size: 0.9vmax;
  word-spacing: 0.23vmax;
  letter-spacing: 0.05vmax;
}

.banner-section-wrapper {
  width: 100%;
  height: 30vmax;
}
.banner-section-wrapper .banner-section {
  overflow: hidden;
  width: 90%;
  height: 100%;
  background-color: #000;
  margin: 7vmax auto 0 auto;
  border-radius: 2rem;
}
.banner-section-wrapper .banner-section .banner-sec-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-section-wrapper .banner-section .banner-sec-slider .slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-section-wrapper .banner-section .banner-sec-slider .slider .slides {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.banner-section-wrapper .banner-section .banner-sec-slider .slider .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-section-wrapper .banner-section .banner-sec-slider .slider .slide-1 {
  z-index: 3;
}
.banner-section-wrapper .banner-section .banner-sec-slider .slider .slide-2 {
  z-index: 2;
  transform: scale(0.89) translateX(20%);
  filter: blur(3px);
}
.banner-section-wrapper .banner-section .banner-sec-slider .slider .slide-3 {
  transform: scale(0.89) translateX(-20%);
  z-index: 1;
  filter: blur(3px);
}

main .shop-page-product-showcase {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 3vmax 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6vmax;
}
main .shop-page-product-showcase .product-header {
  width: 80%;
  height: 100%;
}
main .shop-page-product-showcase .product-header .breadcrumb-wrapper {
  width: 100%;
  height: 100%;
}
main .shop-page-product-showcase .product-header .breadcrumb-wrapper .breadcrumb {
  font-size: 0.9vmax;
  color: #191919;
  margin-bottom: 2vmax;
}
main .shop-page-product-showcase .product-header .breadcrumb-wrapper .breadcrumb a {
  color: #006aff;
  text-decoration: none;
  cursor: pointer;
}
main .shop-page-product-showcase .product-header .breadcrumb-wrapper .category-title {
  font-size: 2vmax;
  color: #191919;
  margin-bottom: 2vmax;
}
main .shop-page-product-showcase .product-header .breadcrumb-wrapper .category-title .count {
  font-size: 1vmax;
  color: #555555;
}
main .shop-page-product-showcase .product-header .filters {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  justify-content: space-between;
}
main .shop-page-product-showcase .product-header .filters .filter-btn {
  width: auto;
  height: auto;
  padding: 0.7rem 0.9rem;
  background-color: #444444;
  color: #ebebeb;
  border-radius: 0.7rem;
  display: inline-flex;
  justify-content: center;
  position: relative;
}
main .shop-page-product-showcase .product-header .filters .filter-btn .list {
  margin-bottom: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1vmax;
  font-weight: 400;
  gap: 0.5rem;
  overflow: hidden;
}
main .shop-page-product-showcase .product-header .filters .filter-btn .list span {
  width: auto;
  height: auto;
  overflow: hidden;
}
main .shop-page-product-showcase .product-header .filters .filter-btn .list span img {
  width: 0.6rem;
  height: 0.6rem;
  object-fit: contain;
  filter: invert(100%);
  transition: transform 0.3s ease;
}
main .shop-page-product-showcase .product-header .filters .filter-btn .list .cross-sign {
  width: auto;
}
main .shop-page-product-showcase .product-header .filters .filter-btn .list .cross-sign img {
  filter: invert(0%);
}
main .shop-page-product-showcase .product-header .filters .filter-btn .selected {
  font-size: 0.79rem;
}
main .shop-page-product-showcase .product-header .filters .filter-btn ul {
  position: absolute;
  top: 100%;
  left: 0%;
  display: none;
  flex-direction: column;
  list-style: none;
  z-index: 999;
  width: max-content;
  min-width: fit-content;
  max-height: 25vmax;
  overflow-y: scroll;
  white-space: nowrap;
  background-color: rgba(43, 43, 43, 0.9);
  border-radius: 0.7rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}
main .shop-page-product-showcase .product-header .filters .filter-btn ul li {
  padding: 0.6rem 1rem;
  font-size: 1vmax;
  border-bottom: 1px solid #cdcdcd;
}
main .shop-page-product-showcase .product-header .filters .filter-btn ul li:hover {
  background-color: rgba(43, 43, 43, 0.8);
}
main .shop-page-product-showcase .product-header .filters .all-filters {
  width: 60%;
  height: auto;
  display: inline-flex;
  gap: 1.2vmax;
}
main .shop-page-product-showcase .product-header .filters .sort {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.2vmax;
  justify-content: flex-end;
}
main .shop-page-product-showcase .product-header .filters .sort .filter-btn {
  width: auto;
}
main .shop-page-product-showcase .product-header .filters .sort .filter-btn .list span {
  width: 1rem;
  height: 1rem;
  height: auto;
}
main .shop-page-product-showcase .product-header .applied-filters {
  margin-top: 1vmax;
}
main .shop-page-product-showcase .shop-page-product-carousel {
  position: relative;
  width: 80%;
  height: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
  place-content: center;
  gap: 2rem;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card {
  height: auto;
  border: 0.01rem solid #2f2f2f;
  border-radius: 1.2rem;
  padding: 2vh;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card::after {
  content: "";
  width: 3vmin;
  height: 3vmin;
  background-image: url("assets/icons/heart.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  right: 5%;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-image img {
  transition: all 0.2s linear;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-image:hover img {
  transform: scale(1.05);
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-title {
  width: 100%;
  padding: 1vmax 0;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-title p {
  font-size: 1.15vmax;
  line-height: 1.75vmax;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-amount {
  width: 100%;
  padding: 1vmax 0;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-amount p {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8vmax;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-amount p .final-amount {
  font-size: 1.75vmax;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-amount p .original-amount {
  font-size: 1vmax;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-amount p .savings {
  font-size: 1vmax;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-amount p .offer {
  font-size: 1vmax;
  border: 0.01rem solid #2f2f2f;
  padding: 0.5vmax 0.6vmax;
  border-radius: 0.2rem;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-delivery-info {
  width: 100%;
  padding: 1vmax 0;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-delivery-info p {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 0.5vmax;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-delivery-info p .delivery-icon {
  width: 10%;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-delivery-info p .delivery-icon img {
  width: 100%;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-delivery-info p .delivery-duration {
  font-size: 1vmax;
  cursor: pointer;
}
main .shop-page-product-showcase .shop-page-product-carousel .view-more {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4vmax 0;
}
main .shop-page-product-showcase .shop-page-product-carousel .view-more p {
  padding: 1vmax 1.7vmax;
  border: 0.1vmax solid #191919;
  border-radius: 0.6vmax;
}
main .shop-page-product-showcase .shop-page-product-carousel .view-more p:hover {
  background-color: #191919;
  color: #ebebeb;
}

main .shop-page-product-showcase .product-header .filters .gray-btn {
  background-color: #E0E0E0;
  color: #191919;
}

main .product-page-header {
  margin-top: 5vmax;
}
main .product-page-header .product-header .breadcrumb-wrapper .breadcrumb a {
  color: #838383;
}
main .product-page-header .product-header .breadcrumb-wrapper .breadcrumb:not(a) {
  color: #191919;
}

main .product-detail {
  width: 80%;
  height: auto;
  overflow: hidden;
  margin: 2rem auto;
}
main .product-detail .row1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 5vmax;
}
main .product-detail .row1 .left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 2vmax;
}
main .product-detail .row1 .left .vertical-carousel {
  width: 20%;
  height: 30vmax;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2vmax;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
main .product-detail .row1 .left .vertical-carousel .arrow-btn.top, main .product-detail .row1 .left .vertical-carousel .arrow-btn.bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
main .product-detail .row1 .left .vertical-carousel .arrow-btn.top:hover img, main .product-detail .row1 .left .vertical-carousel .arrow-btn.bottom:hover img {
  opacity: 1;
}
main .product-detail .row1 .left .vertical-carousel .arrow-btn.top img, main .product-detail .row1 .left .vertical-carousel .arrow-btn.bottom img {
  display: none;
  width: 25%;
  height: 100%;
  rotate: -90deg;
  opacity: 0.4;
}
main .product-detail .row1 .left .vertical-carousel .arrow-btn.bottom img {
  rotate: 90deg;
}
main .product-detail .row1 .left .vertical-carousel .product-card {
  flex-shrink: 0;
  width: 70%;
  height: auto;
  border: 1px solid #e0e0e0;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main .product-detail .row1 .left .vertical-carousel .product-card:hover {
  border: 2px solid #191919;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
main .product-detail .row1 .left .vertical-carousel .product-card .card-image {
  width: 100%;
  height: auto;
}
main .product-detail .row1 .left .vertical-carousel .product-card .card-image img {
  width: 100%;
  height: 100%;
}
main .product-detail .row1 .left .image {
  width: 80%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main .product-detail .row1 .left .image img {
  width: 100%;
  height: 100%;
}
main .product-detail .row1 .left .image::after {
  content: "";
  width: 3vmin;
  height: 3vmin;
  background-image: url("assets/icons/heart.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  top: 0;
  right: 10%;
  cursor: pointer;
  z-index: 99;
}
main .product-detail .row1 .left .image::before {
  content: "";
  width: 3vmin;
  height: 3vmin;
  background-image: url("assets/icons/share.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  top: 0;
  right: 0%;
  cursor: pointer;
  z-index: 99;
}
main .product-detail .row1 .right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 2rem;
}
main .product-detail .row1 .right .product-name h1 {
  font-size: 1.6vmax;
}
main .product-detail .row1 .right .product-price {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 1.2rem;
}
main .product-detail .row1 .right .product-price .final-price {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: 1.6vmax;
  font-weight: 600;
}
main .product-detail .row1 .right .product-price .final-price .include-tax {
  font-size: 0.8vmax;
  font-weight: 400;
}
main .product-detail .row1 .right .product-price .offer {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.99vmax;
}
main .product-detail .row1 .right .product-price .offer .nlc {
  color: #555555;
}
main .product-detail .row1 .right .deliver-at {
  width: 100%;
  height: auto;
  padding: 0.85vmax 0.75vmax;
  border-radius: 1.2rem;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 0.4rem;
}
main .product-detail .row1 .right .deliver-at .location {
  width: auto;
  height: auto;
}
main .product-detail .row1 .right .deliver-at .location img {
  width: 0.95vmax;
  height: 0.95vmax;
  opacity: 0.8;
}
main .product-detail .row1 .right .deliver-at .delivery-date {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 0.3rem;
}
main .product-detail .row1 .right .deliver-at .delivery-date p {
  font-size: 0.95vmax;
  color: #2e2e2e;
}
main .product-detail .row1 .right .deliver-at .delivery-date p a {
  color: #2e2e2e;
}
main .product-detail .row1 .right .key-features {
  width: 100%;
  height: auto;
  padding: 2vmax;
  border: 1px solid #e0e0e0;
  border-radius: 2rem;
}
main .product-detail .row1 .right .key-features h3 {
  font-size: 1.1vmax;
  margin-bottom: 1vmax;
}
main .product-detail .row1 .right .key-features ul {
  width: 100%;
  padding: 0 1.2vmax;
}
main .product-detail .row1 .right .key-features ul li {
  font-size: 1vmax;
  line-height: 1.5vmax;
}
main .product-detail .row2 {
  width: 100%;
  height: auto;
  margin: 10vmax 0;
}
main .product-detail .row2 .faqs {
  width: 100%;
  height: 100%;
}
main .product-detail .row2 .faqs .faqs-wrapper {
  width: 100%;
  height: 100%;
}
main .product-detail .row2 .faqs .faqs-wrapper .question {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
}
main .product-detail .row2 .faqs .faqs-wrapper .question:hover .answer {
  display: flex;
}
main .product-detail .row2 .faqs .faqs-wrapper .question h2 {
  width: 100%;
  position: relative;
  font-size: 1.3vmax;
  transition: rotate 0.3s ease;
  display: flex;
  justify-content: space-between;
}
main .product-detail .row2 .faqs .faqs-wrapper .question h2 .arrow {
  width: 2.5vmin;
  height: 2.5vmin;
}
main .product-detail .row2 .faqs .faqs-wrapper .question h2 .arrow img {
  transition: rotate 0.3s ease;
  rotate: 90deg;
  width: 100%;
  height: 100%;
}
main .product-detail .row2 .faqs .faqs-wrapper .question::after {
  display: none;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  gap: 2vmax;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  display: none;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper {
  width: 100%;
  height: auto;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e0e0e0;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper h3 {
  font-size: 1.1vmax;
  margin-bottom: 1rem;
  font-weight: 700;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .overview-txt {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.7rem;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2vmax;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  gap: 0.65rem;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .attr {
  font-size: 1vmax;
  font-weight: 400;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .attr-val {
  font-size: 1.1vmax;
  font-weight: 600;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .attr-val .user-name {
  font-size: 1.1vmax;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .attr-val .verified img {
  width: 0.95vmax;
  height: 0.95vmax;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .user-star-rating {
  width: 100%;
  height: auto;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .user-star-rating img {
  width: 0.95vmax;
  height: 0.95vmax;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .user-star-rating .faded-star {
  filter: grayscale(100%);
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .bars {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .bars .bar, main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .bars .rating-bar {
  width: 8vmax;
  height: 0.3rem;
  background-color: #e0e0e0;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .bars .rating-bar {
  position: relative;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .bars .rating-bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #191919;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .all-reviews {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2vmax;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .star-reviews {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1vmax;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .star-reviews h3 {
  margin-bottom: 0.2rem;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form {
  width: 100%;
  height: auto;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group {
  width: 36%;
  height: auto;
  margin-bottom: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  align-items: flex-start;
  gap: 0.2rem;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group label {
  font-size: 0.75vmax;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group #name, main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group #email, main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group #rating, main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group #review {
  width: 100%;
  height: auto;
  padding: 0.7rem 0.6rem;
  border: 1px solid silver;
  border-radius: 0.6rem;
}
main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .submit-btn {
  padding: 0.7rem 0.6rem;
  border: 1px solid silver;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.95vmax;
  color: #262626;
}
main .product-detail .row2 .faqs .faqs-wrapper .question.active h2 .arrow img {
  rotate: 270deg;
}

@media (max-width: 1280px) {
  header {
    grid-template-columns: 2fr 6fr 3fr 1fr;
  }
  header .user-nav-sec .menu li p {
    display: none;
  }
  header .user-nav-sec .user-menu {
    gap: 1vmax;
  }
  header .search-bar-sec {
    justify-content: center;
  }
  header .search-bar-sec::before {
    right: 10%;
  }
  main .hero-section-wrapper .hero-section {
    border-radius: 0 0 5vmax 5vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt .heading-txt {
    font-size: 5.85vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides {
    width: 48vmin;
    height: 58vmin;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides img {
    width: auto;
  }
  main .ticker-sec {
    border-radius: 0 0 5vmax 5vmax;
  }
}
@media (max-width: 1024px) {
  .mobile-menu {
    display: flex;
    position: absolute;
    top: 0;
    left: 0%;
    width: 100dvw;
    height: 100dvh;
    z-index: 9999;
    background-color: rgba(25, 25, 25, 0.831372549);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
  }
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0s;
  }
  .mobile-menu .nav-wrapper {
    width: 33vmax;
    height: 100%;
    overflow-y: scroll;
    background-color: #ebebeb;
    padding: 1vmax 1.1vmax;
  }
  .mobile-menu .nav-wrapper .close-btn {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: end;
  }
  .mobile-menu .nav-wrapper .close-btn img {
    width: 8%;
    height: 8%;
  }
  .mobile-menu .nav-wrapper .mm-list {
    margin-top: 2rem;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .mobile-menu .nav-wrapper .mm-list .mobile-menu-list {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    align-items: flex-start;
    gap: 1.75rem;
    list-style: none;
  }
  .mobile-menu .nav-wrapper .mm-list .mobile-menu-list li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid silver;
    padding-bottom: 0.5rem;
  }
  .mobile-menu .nav-wrapper .mm-list .mobile-menu-list li a {
    color: #191919;
    text-decoration: none;
  }
  .mobile-menu .nav-wrapper .mm-list .mobile-menu-list li a img {
    width: 10%;
    height: auto;
  }
  .mobile-menu .nav-wrapper .mm-list .user-menu-mob {
    display: none;
  }
  header {
    grid-template-columns: 3fr 3fr 5fr 1fr;
  }
  header .user-nav-sec .menu li p {
    display: none;
  }
  header .user-nav-sec .user-menu {
    gap: 1vmax;
  }
  header .search-bar-sec {
    justify-content: center;
  }
  header .search-bar-sec #search-bar::placeholder {
    font-size: 0.85rem;
  }
  header .search-bar-sec::before {
    right: 10%;
  }
  header .logo-sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: start;
  }
  header .logo-sec .logo {
    width: 90%;
    object-fit: contain;
    object-position: center;
  }
  header .mobile-menu-icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.24rem;
  }
  header .mobile-menu-icon div {
    width: 1.4rem;
    height: 0.18rem;
    background-color: #2e2e2e;
  }
  header nav {
    display: none;
  }
  main .hero-section-wrapper .hero-section {
    border-radius: 0 0 5vmax 5vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt .heading-txt {
    font-size: 5.75vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides {
    width: 38vmin;
    height: 48vmin;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides img {
    width: auto;
  }
  main .category {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  footer {
    height: auto;
    padding: 3vmax 2vmax;
  }
  footer .footer-wrapper .links {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 3vmax;
    column-gap: 2vmax;
  }
  footer .footer-wrapper .links .about-us, footer .footer-wrapper .links .categories, footer .footer-wrapper .links .trending, footer .footer-wrapper .links .company, footer .footer-wrapper .links .legal, footer .footer-wrapper .links .social {
    width: 30%;
  }
  footer .footer-wrapper .links .about-us {
    order: 1;
  }
  footer .footer-wrapper .links .categories {
    order: 2;
  }
  footer .footer-wrapper .links .trending {
    order: 3;
  }
  footer .footer-wrapper .links .company {
    order: 4;
  }
  footer .footer-wrapper .links .legal {
    order: 5;
  }
  footer .footer-wrapper .links .social {
    order: 6;
  }
  footer .footer-wrapper .copyright {
    margin-top: 3vmax;
  }
  main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(23%, 1fr));
  }
  main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper .product-card .card-title p {
    font-size: 1.35vmax;
  }
}
@media (max-width: 768px) {
  .mobile-menu .nav-wrapper .mm-list .user-menu-mob {
    display: flex;
    flex-direction: column;
    padding: 2% 5% 0 5%;
    margin-top: 1rem;
    gap: 1.75rem;
  }
  .mobile-menu .nav-wrapper .mm-list .user-menu-mob li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid silver;
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.6rem;
  }
  .mobile-menu .nav-wrapper .mm-list .user-menu-mob li a img {
    width: 2.3vmax;
    height: auto;
  }
  header {
    grid-template-columns: 3fr 3fr 6fr;
  }
  header .user-nav-sec {
    display: none;
  }
  header .user-nav-sec .user-menu {
    gap: 1vmax;
  }
  header .search-bar-sec {
    justify-content: center;
    align-items: center;
  }
  header .search-bar-sec #search-bar::placeholder {
    font-size: 0.85rem;
  }
  header .search-bar-sec::before {
    right: 10%;
  }
  header .logo-sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: start;
  }
  header .logo-sec .logo {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }
  header .mobile-menu-icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.24rem;
  }
  header .mobile-menu-icon div {
    width: 1.4rem;
    height: 0.18rem;
    background-color: #2e2e2e;
  }
  header nav {
    display: none;
  }
  main .hero-section-wrapper .hero-section {
    flex-direction: column;
    padding: 7vh 1vh 0 1vh;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0 1vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt .location {
    font-size: 1.35vmax;
    padding: 0.8vmax 1.63vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt .location svg {
    width: 2.75vmax;
    color: #262626;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt .heading-txt {
    line-height: 6vmax;
  }
  main .sec-title h2 {
    margin-top: 5vh;
    margin-bottom: 4vh;
    font-size: 3.6vh;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    padding: 0 3vh;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
    padding: 2vmax 6vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides {
    width: 50vmin;
    height: 50vmin;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides img {
    width: auto;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slide-2 {
    transform: scale(0.81) translateX(36%);
    filter: blur(3px);
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slide-3 {
    transform: scale(0.81) translateX(-36%);
    filter: blur(3px);
  }
  main .category .product-carousel .product-card {
    flex-shrink: 0;
    width: 20vmax;
    height: 23vmax;
  }
  main .product-showcase .product-carousel .product-card {
    width: 30vmax;
  }
  main .product-showcase .product-carousel .product-card .card-title p {
    font-size: 1.5vmax;
    line-height: 2vmax;
  }
  main .product-showcase .product-carousel .product-card .card-amount .original-amount {
    font-size: 1.1vmax;
  }
  main .category {
    overflow: hidden;
  }
  main .category-banner .product-carousel {
    flex-wrap: wrap;
  }
  main .category-banner .product-carousel .product-card {
    width: 60%;
  }
  main .category-banner .brand-txt {
    width: 86%;
    font-size: 2vmax;
    line-height: 3vmax;
  }
  main .our-locations {
    height: max-content;
  }
  main .our-locations .location-wrapper {
    flex-direction: column;
  }
  main .our-locations .location-wrapper .left, main .our-locations .location-wrapper .right {
    width: 100%;
  }
  main .highlights {
    margin: 1vmax 0;
  }
  main .highlights .highlight-wrapper {
    height: max-content;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  main .highlights .highlight-wrapper .cod {
    border: none;
  }
  footer {
    height: auto;
    padding: 4vmax 2vmax;
  }
  footer .footer-wrapper .links {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 3vmax;
  }
  footer .footer-wrapper .links .about-us, footer .footer-wrapper .links .categories, footer .footer-wrapper .links .trending, footer .footer-wrapper .links .company, footer .footer-wrapper .links .legal, footer .footer-wrapper .links .social {
    width: 30%;
  }
  footer .footer-wrapper .links h5 {
    font-size: 1.5vmax;
  }
  footer .footer-wrapper .links p, footer .footer-wrapper .links li, footer .footer-wrapper .links a {
    font-size: 1.2vmax;
    line-height: 2vmax;
  }
  footer .footer-wrapper .copyright p {
    font-size: 1.1vmax;
  }
  main .shop-page-product-showcase .product-header .breadcrumb-wrapper .breadcrumb {
    font-size: 1.2vmax;
    color: #191919;
    margin-bottom: 2vmax;
  }
  main .shop-page-product-showcase .product-header .breadcrumb-wrapper .category-title {
    font-size: 2.7vmax;
  }
  main .shop-page-product-showcase .product-header .breadcrumb-wrapper .category-title .count {
    font-size: 1.5vmax;
  }
  main .shop-page-product-showcase .shop-page-product-carousel .carousel-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
  main .shop-page-product-showcase .product-header .filters {
    flex-direction: column;
    /* justify-content: flex-start; */
    align-items: flex-start;
    /* justify-content: center; */
    gap: 1vmax;
  }
  main .shop-page-product-showcase .product-header .filters .all-filters, main .shop-page-product-showcase .product-header .filters .sort {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  main .shop-page-product-showcase .product-header .filters .filter-btn .list {
    font-size: 1.25vmax;
  }
  main .product-detail .row1 {
    flex-direction: column;
  }
  main .product-detail .row1 .left, main .product-detail .row1 .right {
    width: 100%;
  }
  main .product-detail .row1 .right .product-name h1, main .product-detail .row1 .right .product-price .final-price {
    font-size: 1.9vmax;
  }
  main .product-detail .row1 .right .product-price .final-price .include-tax, main .product-detail .row1 .right .product-price .offer, main .product-detail .row1 .right .product-price .savings {
    font-size: 1.1vmax;
  }
  main .product-detail .row1 .right .deliver-at .delivery-date p {
    font-size: 1.25vmax;
  }
  main .product-detail .row1 .right .deliver-at .location img {
    width: 1.2vmax;
    height: 1.2vmax;
  }
  main .product-detail .row1 .right .key-features h3 {
    font-size: 1.33vmax;
  }
  main .product-detail .row1 .right .key-features ul li {
    font-size: 1.3vmax;
    line-height: 2.1vmax;
  }
  main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .attr {
    font-size: 1.3vmax;
  }
  main .product-detail .row2 .faqs .faqs-wrapper .question h2 {
    font-size: 1.5vmax;
  }
  main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .specs-details .cols .attr-value, main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper h3 {
    font-size: 1.45vmax;
  }
  main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group label {
    font-size: 0.99vmax;
  }
  main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group #name, main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group #email, main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group #rating, main .product-detail .row2 .faqs .faqs-wrapper .question .answer .answer-wrapper .review-form .form-group #review {
    width: 40vmax;
  }
}
@media (max-width: 640px) {
  header {
    width: 100%;
    border-radius: 1.5rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5vmax;
  }
  header .user-nav-sec {
    display: none;
  }
  header .user-nav-sec .user-menu {
    gap: 1vmax;
  }
  header .search-bar-sec {
    grid-column: 1/-1;
    justify-content: center;
    align-items: center;
  }
  header .search-bar-sec #search-bar {
    width: 100%;
    height: 6vmax;
    font-size: 2.3vmax;
  }
  header .search-bar-sec #search-bar::placeholder {
    font-size: 0.89rem;
  }
  header .search-bar-sec::before {
    right: 2%;
  }
  header .logo-sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: start;
  }
  header .logo-sec .logo {
    width: 100%;
    object-fit: contain;
    object-position: center;
  }
  header .mobile-menu-icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 0.24rem;
  }
  header .mobile-menu-icon div {
    width: 1.4rem;
    height: 0.18rem;
    background-color: #2e2e2e;
  }
  header nav {
    display: none;
  }
  main .hero-section-wrapper .hero-section {
    flex-direction: column;
    height: 130dvh;
    padding: 16vmax 1vh 0 1vh;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt {
    width: 100%;
    gap: 1vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt .location {
    font-size: 1.35vmax;
    padding: 0.8vmax 1.63vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt .location svg {
    width: 2.75vmax;
    color: #262626;
  }
  main .hero-section-wrapper .hero-section .hero-sec-txt .heading-txt {
    line-height: 6vmax;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-items: end;
    justify-content: end;
    overflow: hidden;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides {
    width: 100%;
    height: 75%;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slides img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slide-2 {
    transform: scale(0.81) translateX(20%);
    filter: blur(3px);
  }
  main .hero-section-wrapper .hero-section .hero-sec-slider .slider .slide-3 {
    transform: scale(0.81) translateX(-20%);
    filter: blur(3px);
  }
  main .category {
    overflow: hidden;
  }
  main .highlights .highlight-wrapper {
    height: max-content;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  main .highlights .highlight-wrapper .cod {
    border: none;
  }
  footer {
    height: auto;
    padding: 5vmax 2vmax;
  }
  footer .footer-wrapper .links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 3vmax;
  }
  footer .footer-wrapper .links .about-us, footer .footer-wrapper .links .categories, footer .footer-wrapper .links .trending, footer .footer-wrapper .links .company, footer .footer-wrapper .links .legal, footer .footer-wrapper .links .social {
    width: 47%;
  }
  footer .footer-wrapper .links h5 {
    font-size: 1.8vmax;
  }
  footer .footer-wrapper .links p, footer .footer-wrapper .links li, footer .footer-wrapper .links a {
    font-size: 1.5vmax;
    line-height: 2.3vmax;
  }
  footer .footer-wrapper .links .social-media img,
  footer .footer-wrapper .links .accepted-cards img {
    width: 25%;
  }
  footer .footer-wrapper .copyright {
    margin-top: 4vmax;
  }
  footer .footer-wrapper .copyright p {
    font-size: 1.4vmax;
  }
  .banner-section-wrapper .banner-section {
    margin: 18vmax auto 0 auto;
  }
}