@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap');

/*------------------------------------------------------------------
  [Table of contents]
  * To keep an overview of structure of your code, we make use of table of 
  * content. Table of content is use display the overall tree structure of your
  * Layout. 
  * (NOTE: Remove this commented code once you start developing the code.
  * Remove the following table of content and add your own as this is just and 
  * example to let you know)

  1. CSS Reset Code
    1.1. Eric Meyers Reset/HTML5 display-role reset for older browsers
    1.2. Clear Fix
    1.3. Font class declaration
  2. Body
  3. Header / .header
    2.1. Navigation / .navbar
  4. Content / .content
    4.1. Left column / .leftcolumn
    4.2. Right column / .rightcolumn
    4.3. Sidebar / .sidebar
      4.3.1. RSS / .rss
      4.3.2. Search / .search
      4.3.3. Boxes / .box
      4.3.4. Sideblog / .sideblog
      4.3.5. Advertisements / .ads
  5. Footer / .footer
  ------------------------------------------------------------------*/

/*------------------------------------------------------------------
  [Color codes]
  * Mention the color code you have used in your html document for the respective
  * elements given as follow. 
  * (NOTE: Remove this commented code once you start developing the code. 
  * Remove the following color code and add your own as this is just and 
  * example to let you know)

  Header nav: #e5e5df (Cararra)
  Header nav a (hover): #fff (white)
  Header nav a (active): #fff (white)
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
  [Typography]
  * Mention the Typography you have used in your html document for the respective
  * elements given as follow.
  * (NOTE: Remove this commented code once you start developing the code. 
  * Remove the following typography and add your own as this is just and 
  * example to let you know)

  Header nav a: 16px 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  View-register li a : 12px 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  -------------------------------------------------------------------*/

/* ==========================================================================
   1. CSS Reset Code
   ========================================================================== */

/* 1.1. Eric Meyers Reset
   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Smooth scroll & Force scrollbar */
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Align radios and text inputs with their label */

input[type='radio'] {
  vertical-align: text-bottom;
}


/* Hand cursor on clickable input elements */
label,
input[type='button'],
input[type='submit'],
button {
  cursor: pointer;
}

strong {
  font-weight: bold;
  font-family: inherit;
  font-size: inherit;
}

em {
  font-style: italic;
  font-weight: 200;
}

img {
  border: 0;
  vertical-align: middle;
  width: 100%;
  pointer-events: none;
}

sub,
sup {
  vertical-align: baseline;
  position: relative;
  font-size: 55%;
  line-height: 0;
}

sup {
  top: -.7em;
}

sub {
  bottom: -.25em;
}

/* 1.2. Clear Fix
   ========================================================================== */

.cf:before,
.cf:after {
  display: table;
  content: " ";
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/* 1.3. Font class declaration
   ========================================================================== */
/*
 * Mention the font property (eg: font-family, font-size, font-weight, font-style
 * etc) that have been commonly used in the html document. Make a class of it and
 * apply to the element wherever it is needed. If any single property in changed,
 * then override only that property in the particular class which is used for the
 * element.
 * (NOTE: Remove this commented code once you start 
 * developing the code. Remove the following font class and add your own
 * as this is just and example to let you know. If there is only one font family
 * followed throughout the site, then menstion the font property in body. No need
 * of creating an extra class for it) */

.futura-bold-font {
  font-family: 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
}

/* GLOBAL STYLING STARTS HERE */

.wrapper {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

span,
p,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

h2 {
  transition: .5s;
}

h2:hover {
  text-decoration: underline;
  text-decoration-color: #ff7300;
  cursor: default;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.capital {
  text-transform: uppercase;
}

.bold {
  font-weight: 900;
}

.active {
  color: rgb(255, 98, 0);
}

.icon {
  display: block;
}

.icon::after {
  font-family: "FontAwesome";
  transition: .5s;
}

/* Disable scrolling */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

body {
  color: #fff;
  background: #000;
}

/* PRELOADER STYLING STARTS HERE */

.loader_bg {
  position: fixed;
  background: #000;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
}

.centerBike {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 26px;
  margin-left: -12px;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}

.loader-container-hidden {
  display: none;
}

#loop {
  height: 100px;
  width: 100px;
  border: #ff7300 solid 4px;
  border-radius: 200px;
}

#loop:before {
  background: linear-gradient(to left, rgba(187, 95, 39, 0) 0%, #ff7300 30%, #ff7300 70%, rgba(187, 95, 39, 0) 100%);
  content: "";
  display: block;
  height: 4px;
  left: -100px;
  position: relative;
  top: 100px;
  width: 300px;
}

#bike-wrapper {
  height: 108px;
  width: 108px;
  animation: drive 3s linear infinite;
}

#bike {
  height: 24px;
  width: 25px;
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/133687/motorbike.png");
}

@keyframes drive {
  0% {
    margin-left: -364px;
    opacity: 0;
  }

  33.33% {
    transform: rotate(0deg);
    margin-left: -50px;
    opacity: 1;
  }

  66.66% {
    transform: rotate(-360deg);
    margin-left: -50px;
    opacity: 1;
  }

  100% {
    margin-left: 264px;
    transform: rotate(-360deg);
    opacity: 0;
  }
}

/* PRELOADER STYLING END HERE */

/* SOCIAL ICONS STYLING STARTS HERE */
.social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 0%;
}

.social ul {
  padding: 0px;
  transform: translate(-163px, 0);
}

.social ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  margin: 5px 5px 5px 10px;
  background: rgba(0, 0, 0, 0.36);
  width: 199px;
  text-align: right;
  padding: 0px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
  align-content: center;
}

.social ul li:hover {
  transform: translate(110px, 0);
  background: #ff73007b;
}

.social ul li:hover a {
  color: #000;
}

.social ul li:hover i {
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  transform: rotate(360deg);
  transition: all 1s;
}

.social ul li i {
  margin-left: 10px;
  color: #fff;
  background: #fff;
  padding: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ff7300;
  font-size: 20px;
  background: #000;
  transform: rotate(0deg);
  text-align: center;
  vertical-align: middle;
}

/* SOCIAL ICONS STYLING ENDS HERE */

/* HEADER STYLING STARTS HERE */

/* SEARCH STYLING STARTS HERE */

.search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin: 0 15px;
  transition: .5s;
}

.search-field {
  font-size: 20px;
  color: #fff;
  border-radius: 25px;
  padding: 10px;
  width: 0;
  height: 40px;
  background-color: transparent;
  background-image: url(https://i.postimg.cc/BZxchVjh/search-png.png);
  background-position: 8.5px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: none;
  cursor: pointer;
  height: 40px;
  margin: 3px 0;
  padding: 0 0 0 38px;
  position: relative;
  transition: .4s;
  border: 1px solid #ff7300;
  float: right;
}

.search-field:focus {
  background-color: transparent;
  cursor: text;
  outline: 0;
  width: 100%;
  color: #fff;
  box-shadow: 0 0 3px 1px #ff7300;
}

.search-products-list {
  overflow-y: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 4px 4px 30px rgb(0, 0, 0);
  width: 300px;
  height: max-content;
  max-height: 520px;
  position: absolute;
  top: 100%;
  /* display: none; */
  transition: .5s;
}

.cart-checkout-btn {
  padding: 15px;
  background-color: #444;
  border-radius: 15px;
  transition: .5s;
}

.cart-checkout-btn:hover {
  background-color: #fff;
  color: #000;
}

.search-products-list::-webkit-scrollbar {
  display: none;
}

.search-product {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}

.search-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.s-p-heading,
.s-p-price {
  font-size: 20px;
  color: #1d1d1d;
}

/* SEARCH STYLING ENDS HERE */

h1 img {
  height: 50px;
  width: 100px;
}

header {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  z-index: 99;
  position: sticky;
  top: 0;
  box-shadow: 0px 1px 5px 0px #ff7300;
  transition: .5s;
}

#main-header.hidden {
  transform: translateY(-100%);
  transition: .5s;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  transition: .5s;
}

.header-icons {
  margin-right: 10px;
}

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

.right-arrow::after {
  content: "\f35a";
  margin-left: 10px;
  vertical-align: middle;
  background-color: rgb(255, 98, 0);
  border-radius: 100%;
  font-size: 30px;
}

.right-arrow:hover::after {
  color: rgb(255, 98, 0);
  background-color: #000;
}

.shopping-cart {
  font-size: 0;
  background-color: transparent;
  border: 0;
  position: relative;
  cursor: pointer;
}

.shopping-cart::after {
  content: "\f290";
  color: rgb(255, 98, 0);
  font-size: 40px;
}

.shopping-cart::before {
  position: absolute;
  content: attr(data-quantity);
  top: 0;
  right: -12px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins";
}

.renderCartData {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 50%;
  max-width: 400px;
  padding: 20px;
  z-index: 999;
  background: #000000;
  box-shadow: -2px 0 4px #ff7300;
  transition: .5s;
  overflow-y: auto;
}

.renderCartData::-webkit-scrollbar-track {
  border: 3px solid rgb(0, 0, 0);
  /* // border color does not support transparent on scrollbar */
  /* // border-color: transparent; */
  background-color: rgb(147, 149, 152);
}

.renderCartData::-webkit-scrollbar {
  width: 7px;
  background-color: #dfe6e9;
}

.renderCartData::-webkit-scrollbar-thumb {
  background-color: #ff7300;
  border-radius: 10px;
}

.cartProductDetail {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  width: 50%;
}

.cartProductDetail h6 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cart-styling {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ff7300;
}

.cartImageElement {
  width: 15%;
  max-height: 20%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: #555454 0px 0px 10px 5px;
}

.renderCartData.active {
  right: 0;
  transition: .5s;
}

.trash {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 3.5px;
  transition: .5s;
  cursor: pointer;
}

.trash:hover .lid,
.trash:hover .lidcap {
  transform: rotate(15deg);
  margin-bottom: 10.5px;
  background: red;
}

.trash:hover .lidcap {
  transform: translate(-1px, -2px) rotate(20deg);
}

.trash:hover .lid {
  transform-origin: bottom right;
}

.trash:hover .bin {
  border-top: 15px solid red;
}

.lidcap,
.lid,
.bin {
  position: absolute;
  transition: .5s;
}

.lidcap,
.lid {
  border-top-left-radius: 2.8px;
  border-top-right-radius: 2.8px;
  background: #fff;
}

.lidcap {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 5px;
}

.lid {
  top: 2px;
  left: 0;
  width: 100%;
  height: 3px;
}

.bin {
  bottom: 0;
  left: 0;
  width: 50%;
  border-top: 15px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.cart-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

#totalPrice {
  font-size: 20px;
}

.cross {
  color: red;
  font-size: 0;
  text-align: right;
}

.cross::after {
  content: "❌";
  font-size: 28px;
  cursor: pointer;
}

.cart-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.total {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  border-top: 1px solid #ff7300;
}

.total-title {
  font-size: 18px;
  font-size: 600;
  margin-top: 16px;
}

.total-price {
  font-size: 16px;
  margin: 16px 0 0 14px;
}



.call {
  font-size: 0;
  position: relative;
}

.call::after {
  content: "\f2a0";
  color: rgb(255, 98, 0);
  font-size: 30px;
}

.call::before {
  content: "";
  border: 3px solid rgb(255, 98, 0);
  border-radius: 50%;
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.call:hover::before {
  animation: ripple 1.5s infinite;
}

/* Header Styling Ends Here */

section {
  padding: 20px 0;
}

.importProduct,
.importCategory,
.importBrands {
  padding: 50px 0;
  border-bottom: 1px solid #ff7300;
  border-collapse: collapse;
}

.importHeading {
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 500;
}

.importBrandCardholder,
.importProductCardholder,
.importBrandCardholderNew {
  display: flex;
  gap: 20px;
  align-content: center;
  justify-content: space-evenly;
  /* flex-wrap: wrap; */
  flex-direction: row;
}

.importProductPageCardholder {
  display: flex;
  gap: 20px;
  align-content: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.importBrandCard {
  flex-basis: 20%;
  cursor: pointer;
}


.importBrandCardholderNew {
  transform: translateY(-20px);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  margin-top: 45px;
}

.fadeInSlideDown {
  opacity: 1;
  transform: translateY(0);
}

.brandCardHeading {
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}

.brandsBelow,
.productsbelow {
  text-align: center;
  margin-top: 20px;
}

.viewMore {
  background-color: #fff;
  border: 1px solid #ff7300;
  border-radius: 1.5rem;
  box-sizing: border-box;
  color: #ff7300;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 15px;
  display: inline-block;
  text-decoration: none #ff7300 solid;
  transition: .5s;
  box-shadow: 0px 1px 2px rgba(166, 175, 195);
  touch-action: manipulation;
}

.viewMore:hover {
  background-color: #ff7300;
  color: #fff;
  border: 1px solid transparent;
}

.importProductCard {
  background-color: #d8d6d6;
  border-radius: 15px;
  border: 1px solid #000;
  overflow: hidden;
  transition: .5s;
  flex-basis: 20%;
}

.importProductCard:hover {
  background-color: #f0eded;
  transform: translateY(-10px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.productdescImg:hover>.productdescImg img:nth-child(2) {
  transform: translateX(-100%);
}

.bigarrowIcon {
  display: block;
  height: 40px;
  width: 40px;
  border-top: 5px solid #000;
  border-left: 5px solid #000;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  transition: .5s;
}

.bigarrowIcon:hover {
  box-shadow: -2px -2px 2px 0px #ff7300;
}

.bigrightArrow {
  right: 3%;
  transform: translateY(-50%) rotate(135deg);
}

.bigleftArrow {
  left: 3%;
  transform: translateY(-50%) rotate(-45deg);
}

.productCardImage {
  position: relative;
  overflow: hidden;
  transition: .5s;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.productCardImage img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: .5s;
  width: 100%;
  object-fit: fill;
}

.productCardBelow {
  padding: 10px;
  text-align: center;
  color: #000;
}

.productTitle {
  text-align: center;
  font-size: 20px;
  width: 100%;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.productdetails {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  gap: 10px;
  margin: 15px 0;
  align-content: center;
}

.customBreak:first-of-type {
  display: block;
  overflow: visible;
  /* For IE */
  padding: 0;
  border: none;
  border-top: medium double #333;
  color: #333;
  text-align: center;
  margin: 25px 0;
  border-radius: 10px;
}

.customBreak:first-of-type::after {
  content: "🛞";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.5em;
  padding: 0 0.25em;
  background: white;
}

.customBreak:not(:first-of-type) {
  display: block;
  margin: 5px 0;
  height: 1px;
  background-color: #ff7300;
}

.productPrice {
  font-size: 18px;
  text-align: right;
}

.productCategory {
  font-size: 18px;
  text-align: left;
}

.productDetail {
  display: none;
  position: fixed;
  height: 78vh;
  width: 35vw;
  top: 55%;
  color: #000;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  vertical-align: middle;
  background-color: #fff;
  border: 10px solid #000;
  border-radius: 15px;
  z-index: 999;
  box-shadow: #00000087 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translate(-50%, -40%);
}

.productDetail.show {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.importProductCard {
  cursor: pointer;
}

.productdescTitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
  text-decoration: underline;
}

.productdescDetail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  align-content: center;
}

.productdescPrice {
  font-size: 18px;
  text-align: right;
}

.productdescDesc {
  margin: 20px 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
  transition: .5s;
}

.productdescImg {
  position: relative;
  overflow: hidden;
  transition: .5s ease-in-out;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.productdescImg img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
  transition: .5s ease-in-out;
}

.section {
  opacity: 1;
  transition: opacity 0.5s;
}

.section.faded {
  opacity: 0.5;
}

.importCategoryCardholder {
  display: flex;
  text-align: center;
  /* flex-wrap: wrap; */
  justify-content: space-evenly;
}

.importCategoryCard {
  flex-basis: 20%;
  cursor: pointer;
}

.categoryName{
  font-size: 26px;
  text-transform: capitalize;
  color: #fff;
  margin-top: 10px;
  transition: .5s;
  letter-spacing: .05em;
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 16px 30px rgba(0, 0, 0, 0.9);
}

.importCategoryCard:hover > .categoryName {
  color: #ff7300;
}

.productBtn-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.productBtn-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.productBtn-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(to left,
      hsl(10, 99%, 50%) 0%,
      hsl(23, 99%, 50%) 8%,
      hsl(23, 99%, 50%) 92%,
      hsl(10, 99%, 50%) 100%);
}

.productBtn-front {
  display: block;
  position: relative;
  border-radius: 12px;
  font-size: 16px;
  padding: 10px;
  color: white;
  background: hsl(16, 99%, 50%);
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.importProductCard:hover .productBtn-pushable {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.importProductCard:hover .productBtn-front {
  transform: translateY(-6px);
  transition:
    transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.productBtn-pushable:active .productBtn-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.importProductCard:hover .productBtn-shadow {
  transform: translateY(4px);
  transition:
    transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.productBtn-pushable:active .productBtn-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.productBtn-pushable:focus:not(:focus-visible) {
  outline: none;
}



/* FOOTER SECTION STARTS HERE */

footer {
  padding: 10px 0;
  background: #121212;
}

.footer-up {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.footer-heading {
  padding-left: 10px;
  border-left: 3px solid #eeeeee;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  color: #fff;
  padding-bottom: 6px;
  margin-bottom: 15px;
  color: #ff7300;
  font-size: 24px;
}

.footer-list {
  padding: 0 10px 0 0;
}

.footer-list li {
  margin-bottom: 7%;
}

.footer-link {
  display: flex;
  align-items: center;
  color: #fff;
  transition: .5s;
  margin-right: 10px;
  font-size: 16px;
  padding: 5px 0;
}

.footer-link:hover {
  padding-left: 10px;
  margin-right: 0;
  color: #ff7300;
}

.footer-down {
  margin: 30px 0;
}

.footer-socials-list {
  display: flex;
  justify-content: space-evenly;
}

.footer-social {
  font-size: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  vertical-align: middle;
}

.footer-social::before {
  font-family: "FontAwesome";
  display: flex;
  transition: .5s;
  font-size: 24px;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 50%;
  /* border: 1px solid #fff; */
  /* max-width: fit-content; */
  /* min-width: 20px; */
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.facebook::before {
  content: "\f39e";
  color: #1877f2;
}

.whatsapp::before {
  content: "\f232";
  color: #4ac959;
}

.instagram::before {
  content: "\f16d";
  color: #c13584;
}

.youtube::before {
  content: "\f167";
  color: #ff0000;
}

.linkedIn::before {
  content: "\f0e1";
  color: #0077b5;
}

.facebook:hover::before {
  color: #fff;
  text-align: center;
  background-color: #1877f2;
}

.linkedIn:hover::before {
  color: #fff;
  background-color: #0077b5;
}

.youtube:hover::before {
  color: #fff;
  background-color: #ff0000;
}

.instagram:hover::before {
  color: #fff;
  background-color: #c13584;
}

.whatsapp:hover::before {
  color: #fff;
  background-color: #4ac959;
}

.footer-last {
  color: #fff;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-last-links {
  display: flex;
  margin-top: 10px;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

.footer-last-links a {
  text-decoration: underline;
}

.footer-last span {
  display: block;
}

/* FOOTER SECTION ENDS HERE */

/* Media Queries Start Here */

@media only screen and (max-width: 480px) {

  .popup-ad-image {
    height: 45vh;
  }

  .close-btn {
    font-size: 28px;
    right: 20px;
  }

  .banner .wrapper {
    height: 80vh;
  }

  .explore-btn a {
    padding: 10px;
    font-size: 12px;
  }

  .call::after {
    font-size: 26px;
  }

  .cart {
    right: -150%;
  }

  .info h2 {
    font-size: 28px;
  }

  .info p {
    font-size: 14px;
  }

  .banner-btn1 a {
    font-size: 14px;
    padding: 10px;
  }

  .banner-btn2 a {
    font-size: 14px;
    padding: 10px;
    vertical-align: middle;
  }

  .feat-dev-btn {
    display: block;
    font-size: 10px;
    padding: 2%;
  }

  .feat-dev-title {
    font-size: 10px;
  }

  .feat-price {
    font-size: 12px;
  }

  .feat-hs {
    grid-gap: 10px;
    grid-template-columns: repeat(10, minmax(250px, 1fr));
  }

  .feat-dev-img {
    max-width: 250px;
  }

  .feat-dev-img img {
    max-width: 250px;
  }

  .top-brands .wrapper {
    width: 90%;
  }

  .tbrands-card-holder {
    gap: 10px;
    margin-top: 25px;
  }

  .tbrands-profile-card {
    height: 75px;
    width: 135px;
  }

  .tbrands-profile-card:nth-child(odd) {
    margin-bottom: 15px;
  }

  .top-brands {
    padding: 0px 0;
  }

  .tbrands-heading {
    font-size: 20px;
  }

  .tbrands-profile-card-space {
    height: 185px;
  }

  .tbrands-profile-card .tbrands-profile-social-links li a {
    padding: 7px;
    font-size: 12px;
  }

  .tbrands-profile-card:hover {
    height: 220px;
  }

  .footer-list li {
    border-bottom: 1px solid #fff;
  }

  .footer-socials-list {
    justify-content: space-between;
  }

  .footer-last {
    margin-top: 40px;
    text-align: center;
  }

  .brand {
    padding: 25px 0;
  }

  .footer-last-links {
    justify-content: space-between;
  }

  .category-links a {
    font-size: 14px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-heading {
    font-size: 14px;
  }

  .footer-social::before {
    font-size: 20px;
  }

  .footer-last {
    font-size: 14px;
  }

}

@media only screen and (max-width: 480px) {

  h1 img {
    width: 80px;
    height: 40px;
  }

  .social ul {
    transform: translate(-95px, 0);
    font-size: 13px;
  }

  .social ul li:hover {
    transform: translate(0);
  }

  .social ul li {
    margin: 5px 5px 5px 0px;
    width: 120px;
  }

  .social ul li i {
    padding: 5px;
    font-size: 14px;
  }

  .renderCartData {
    width: 70%;
  }

  #totalPrice {
    font-size: 16px;
  }

  .cart-checkout-btn {
    padding: 10px;
    font-size: 12px;
  }

  .cartProductDetail h6 {
    font-size: 14px;
  }

  .cartImageElement {
    height: 150px;
    width: 70px;
  }

  .feature {
    padding: 40px 0;
  }

  .feature-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .feature-cover {
    padding: 10px;
  }

  .feature-container {
    width: 200px;
    height: 300px;
  }

  .feature-container:hover .feature-character {
    transform: translateY(-100px);
  }

  .about {
    padding: 40px 0;
  }

  .about .wrapper {
    width: 90%;
  }

  .about-header {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .about-card {
    border-radius: 20px;
    margin: 5px;
  }

  .about input:checked+label {
    width: 500px;
  }

  .categories {
    padding: 40px 0;
  }

  .category-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .categories .wrapper {
    width: 90%;
  }

  .category-label {
    flex-basis: 48%;
    height: 250px;
  }

  .category-list {
    padding-left: 20px;
    margin-right: 15px;
  }

  .category-links a {
    font-size: 10px;
  }

  .category-label:nth-child(odd) {
    margin-right: 2%;
  }

  .logos-slide a {
    margin: 0 5px;
  }

  .customer {
    padding: 40px 0;
  }

  .customer-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }

  footer {
    padding: 40px 0;
  }

  /* Gamalele paule made this */

  .footer-social::before {
    font-size: 16px;
  }

  .s-p-heading,
  .s-p-price {
    font-size: 14px;
  }

  .search-products-list {
    width: 200px;
    left: -25%;
    max-height: 400px;
  }

  .categoryName {
    font-size: 8px;
    text-shadow: -1px 1px 3px #fff;
  }

  .importHeading {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .importBrandCardholder {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .importBrandCard { flex-basis: 30%; }

  .importCategoryCard { flex-basis: 30%; }

  .importProductCardholder, .importProductPageCardholder {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .bigleftArrow {
    left: 2%;
  }

  .bigrightArrow {
    right: 2%;
  }

  .productdescTitle {
    font-size: 16px;
    margin-top: 10px;
  }

  .productdescDetail {
    margin: 10px 0;
  }

  .productdescDesc {
    font-size: 16px;
    margin: 10px;
  }

  .customBreak:first-of-type {
    margin: 20px 0 0;
  }

  .productdescDetail p{
    font-size: 14px;
  }

  .productDetail {
    width: 60vw;
    height: 70vh;
    padding: 10px;
  }

  .bigarrowIcon {
    height: 20px;
    width: 20px;
  }

  .importProductCard {
    display: flex;
    flex-direction: row;
    min-height: 200px;
  }

  .productTitle {
    font-size: 14px;
    height: max-content;
  }

  .productdetails p {
    font-size: 12px;
  }

  .productCardImage {
    flex-basis: 45%;
    overflow: hidden;
  }

  .productCardImage img { border-top-right-radius: 0; }

  .productCardBelow {
    flex-basis: 45%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  .productBtn-front { padding: 5px; }

  .productdetails {
    margin: 7px 0;
    height: max-content;
  }

  .importCategoryCardholder {
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 5px;
  }

  footer .wrapper {
    display: flex;
    flex-direction: column;
  }

  .footer-last-links {
    justify-content: space-between;
  }

  .footer-up {
    flex-direction: column;
  }

  .footer-linkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    margin-top: 3%;
  }

  .footer-list {
    width: 45%;
  }

  .footer-heading {
    font-size: 20px;
  }

  .footer-list {
    padding: 0;
  }

  .footer-list li {
    margin-bottom: 5%;
    font-size: 14px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-heading {
    font-size: 14px;
  }

  .footer-social::before {
    font-size: 20px;
  }

  .footer-last {
    font-size: 14px;
  }

  .footer-list li {
    border-bottom: 1px solid #fff;
  }

  .footer-socials-list {
    justify-content: space-between;
  }

  .footer-last {
    margin-top: 40px;
    text-align: center;
  }

  footer {
    padding: 40px 0;
  }

  .footer-social::before {
    font-size: 16px;
  }

  .shopping-cart::after { font-size: 30px; }

  .search-field {
    height: 30px;
    min-width: 30px;
  }

  .footer-social::before {
    padding: 5px;
  }

}