@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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');

body {
  background: #dadada;
  font-family: 'poppins', sans-serif;
}

.cart {
  display: flex;
  gap: 20px;
  margin: 20px;
}
.cart-left {
  background: white;
  padding: 20px;
}
.cart-left h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
}
.cart-left hr {
  border: none;
  height: 1px;
  background: #dadada;
}
.product-cart-list {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 24px 0 12px 12px;
}
.product-cart-titleprice {
  display: flex;
  gap: 20px;
  font-size: 18px;
}
.product-cart-bestseller {
  font-size: 12px;
  margin-top: 10px;
}
.product-cart-bestseller span {
  font-size: 13px;
  background: #c45500;
  color: #fff;
  padding: 3px 8px;
}
.product-cart-stock {
  font-size: 13px;
  color: #007600;
  margin: 4px 0;
}
.product-cart-delivery {
  font-size: 15px;
}
.product-cart-returns {
  font-size: 15px;
  color: #007185;
  font-weight: 400;
}
.product-cart-giftoption {
  color: #494949;
  font-size: 13px;
  margin: 3px 0;
}
.product-cart-giftoption span {
  color: #007185;
}
.product-cart-specs {
  max-width: 150px;
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 3px;
  font-size: 13px;
  margin: 7px 0;
}
.cart-list-action {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #007185;
}
.cart-list-action hr {
  height: 20px;
  width: 1px;
  background: #cfcfcf;
}
.cart-list-action select {
  padding: 5px;
  border-radius: 6px;
  background: #f3f3f3;
}
.cart-list-subtotal {
  text-align: right;
  font-size: 20px;
  margin-top: 10px;
}
.cart-right {
  background: white;
  padding: 20px;
  max-height: 220px;
  min-width: 280px;
}
.cart-free-delivery {
  display: flex;
  font-size: 13px;
}
.cart-subtotal {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}
.cart-right-gift {
  margin: 7px 0;
  font-size: 14px;
}
.cart-right button {
  width: 100%;
  height: 32px;
  margin: 15px 0;
  background: #ffd814;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.cart-right button:hover {
  background: #ebc712;
}
.footer-cart {
  position: fixed !important;
  margin-top: 50px;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Media Query */

@media only screen and (max-width: 900px) {
  .main-navigation {
    flex-wrap: wrap;
  }
  .cart {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 600px) {
  .product-cart-list {
    padding: 24px 0;
  }
  .product-cart-list img {
    width: 80px;
  }
  .product-cart-titleprice {
    flex-wrap: wrap;
    font-size: 14px;
  }
  .product-cart-delivery {
    font-size: 13px;
  }
  .cart-list-action .action-btn:nth-last-child(1) {
    display: none;
  }
  .cart-list-action hr:nth-last-child(2) {
    display: none;
  }
  .cart-list-action .action-btn:nth-last-child(3) {
    display: none;
  }
  .cart-list-action hr:nth-last-child(4) {
    display: none;
  }
  .cart-right {
    min-width: 100%;
  }
}
/* ********************************************************** */
.container-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.cart-btn {
  width: 40px;
  height: 40px;
  margin: 10px 10px;
}

.container-nav svg {
  width: 32px !important;
  height: 32px !important;
  /* position: absolute; */
}

.container-nav span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 23px;
  height: 23px;
  background-color: red;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -25px;
}
.checkout {
  width: 100%;
  outline: none;
  border: none;
  background: #ffd814;
  padding: 10px 0;
  margin-top: 15px;
  border-radius: 50px;
  cursor: pointer;
  align-items: center;
}

.checkout:hover {
  background: #e2be06;
  color: #fff;
}
