:root {
  --color-blue-400: #53b1fd;
  --color-blue-500: #68b4ff;
  --color-blue-800: #1849a9;

  --color-grey-100: #f2f4f7;
  --color-grey-200: #e4e7ec;
  --color-grey-300: #d0d5dd;
  --color-grey-400: #98a2b3;
  --color-grey-500: #667085;
  --color-grey-600: #475467;
  --color-grey-700: #344054;
  --color-grey-800: #1d2939;
  --color-grey-900: #101828;

  --color-success: #00ab55;
  --color-danger: #f04438;
  --color-white: #ffffff;

  --color-background: #f5f5f5;
  --color-footer-background: #222529;
  --font-primary: "Poppins", sans-serif;

  --box-shadow-1: 0px 0px 7px rgba(16, 24, 40, 0.05);
}

/* ========== Reset CSS ========== */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  color: var(--color-grey-400);
  font-family: var(--font-primary);
  background-color: var(--color-white);
}

a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-grey-400);
  transition: all 300ms ease-in-out;
}

a:hover {
  color: var(--color-grey-500);
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

hr {
  border: none;
  border-top: 1px solid var(--color-grey-100);
}

.line-cart {
  border-top: 1px solid var(--color-grey-300);
}

input,
button {
  font-family: var(--font-primary);
}

input::placeholder {
  color: var(--color-grey-300);
}

/* ===== Utilities Class ===== */
.container {
  margin: auto;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}

.d-flex {
  display: flex;
}

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

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

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

/* ===== Button Utilities ===== */
.btn {
  border: 0;
  outline: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 25px;
  border-radius: 2px;
}

.btn-sm {
  border: 0;
  outline: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  padding: 6px 15px;
  border-radius: 2px;
}

.btn-cart {
  border: 0;
  outline: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  padding: 12px 25px;
  border-radius: 2px;
}

/* 3rd Primary Button Style animation */
.btn-primary {
  background-color: var(--color-grey-900);
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  color: var(--color-white);
}

.btn-primary:before {
  transition: 0.8s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: var(--color-blue-500);
  border-radius: 3px;
}

.btn-primary:hover:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: -1;
  border-radius: 3px;
}

/* 2nd Secondary Btn animation */
.btn-secondary {
  background-color: var(--color-grey-100);
  color: var(--color-grey-800);
  position: relative;
  z-index: 1;
}

.btn-secondary:hover {
  color: var(--color-grey-800);
}

.btn-secondary:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: var(--color-blue-500);
  border-radius: 3px;
}

.btn-secondary:hover:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: -1;
  border-radius: 3px;
}

/* Product Button */
.btn-productpage {
  border: 0;
  outline: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 2px;
}

.btn-productpage-primary {
  color: var(--color-white);
  background-color: var(--color-grey-800);
  transition: all 300ms ease-in-out;
}

.btn-primary:hover {
  color: var(--color-grey-800);
  background-color: var(--color-blue-500);
  transition: all 300ms ease-in-out;
}

/* ===== Nav or Menu Utilities ===== */
ul li {
  list-style: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

/* ===== Margin Utilities ===== */
.mb-1 {
  margin-bottom: 10px;
}

.mb-fifteen {
  margin-bottom: 15px;
}

.mb-2 {
  margin-bottom: 20px;
}

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

.mb-4 {
  margin-bottom: 30px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-8 {
  margin-bottom: 80px;
}

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

.mb-12 {
  margin-bottom: 120px;
}

/* Margin top */
.mt-five {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-10 {
  margin-top: 100px;
}
/* ===== Utilities Class End ===== */

/* ===== Animation Utilities Start ===== */
.animation-rotateY:hover {
  transform: rotateY(180deg);
  transition: all 0.5s ease-in-out;
}

.animation-scale:hover {
  transform: scale(1.1, 1.1);
  transition: all 0.1s ease-in-out;
}

.animation-rotate-10deg:hover {
  transform: rotate(10deg);
  transition: all 0.1s ease-in-out;
}

.single-product:hover,
.browse-categorie:hover,
.list-product:hover,
.support:hover,
.single-discount-product:hover,
.wishlist-item:hover {
  box-shadow: 0px 10px 50px 0px rgb(26 46 85 / 20%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out 0.1s;
}

.product-img img:hover {
  transform: rotateY(180deg);
  transition: all 0.4s linear;
}

.browse-categorie-img img:hover,
.single-latest-news-img img:hover,
.list-product-img img:hover {
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  transform: scale(1.2) rotate(1deg);
}

.banner-content > img:hover {
  /* -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; */
  cursor: pointer;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  transform: scale(1.1) rotate(1deg);
}
/* ===== Animation Utilities End ===== */
