:root {
  --white: #fff;
  --black: #222;
  --pink: #f64600;
  --grey: #444;
  --grey2: #959595;
  --grey-alt: #d1e2e9;
  --yellow: #ffd800;
  --green: #59b210;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 62.5%;
 
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  background-image:linear-gradient(rgb(252, 203, 146),rgba(250, 37, 0, 0.884));
  color: black;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
}

.container-md {
  max-width: 100rem;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }

  .container-md {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 768px) {
  html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-size: 62.5%;
    
  }
  body.show::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 4;
  }

    /* .hamburger{
      background-color: black;
    } */
  

}
/* ---------------------------------------POPUP MODALS------------------------------------------------ */

/* .modal-bg{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s;
} */
/* new class to activate the background */
/* .bg-active{
  visibility: visible;
  opacity: 1;
}

.modal{
  background-color: seashell;
  width: 30%;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
} */
/* .modal button{
  padding: 10px 30px;
  background-color: skyblue;
  color:white ;
  border: none;
  cursor: pointer;
}
.modal span{
  position: relative;
  bottom: 170px;
  left: 180px;
  font-weight: bold;
  cursor: pointer;
} */
/* .modal h2{
  margin-top: 10px;
  margin-bottom: 10px;
} */
/* #Username,
#Password{
  padding: 7px;
  margin: 5px;
  border: none;

}
.modal button{
  margin-top: 15px;
} */

/*----------------------------- Header ---------------------------*/
.header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image:linear-gradient( rgb(252, 203, 146),rgba(250, 37, 0, 0.884));
  overflow: hidden;
  
}
.logo{
  width: 80px;
  position: relative;
  top: 1px;
  /* margin-right: 300px; */
}

.nav {
  /* padding: 0.6rem 0;  
   */
}
  
.nav.fix-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(252, 203, 146);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.nav.fix-nav .nav-link,
.nav.fix-nav .logo,
.nav.fix-nav .cart-icon,
.nav.fix-nav .hamburger {
  color: rgb(0, 0, 0);
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 2.5rem;
}

.nav-list {
  display: flex;
  align-items: flex-end;
}

.nav-item:not(:last-child) {
  margin-right: 0.5rem;
}

.nav-link:link,
.nav-link:visited {
  padding: 0.8rem 1rem;
  transition: all 300ms ease-in-out;
}

.nav-link.icon {
  font-size: 3rem;
}

.top-nav {
  display: none;
}

.hamburger {
  display: none;
}

.cart-icon {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .nav-list {
    font-size: 13px;
    /* flex-direction: column; */
    align-items: start;
    padding: 1rem 1.6rem;
  }

  
}
@media only screen and (max-width: 1010px) {
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 40rem;
    height: 100%;
    background-color: #fff;
    transition: all 500ms ease-in-out;
    z-index: 100;
  }

  .menu.show {
    left: 0;
  }

  .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(253, 188, 104);
    padding: 1rem 1.6rem;
  }

  .top-nav .logo {
    color: #fff;
  }

  .top-nav .close {
    color: #fff;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
  }

  .cart-icon {
    display: block;
    font-size: 3rem;
  }

  .hamburger {
    display: block;
    font-size: 3rem;
    padding: 0.5rem;
    cursor: pointer;
  }

  .nav-link:link,
  .nav-link:visited {
    display: block;
    font-size: 1.7rem;
    padding: 1rem 0;
  }

  .nav.fix-nav .nav-link {
    color: rgb(253, 188, 104);
  }

  .nav-list {
    flex-direction: column;
    align-items: start;
    padding: 1rem 1.6rem;
  }

  body.show::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 4;
  }

  .nav.show {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .nav-link.icon {
    display: none;
  }
}

@media only screen and (max-width: 1280px){
  .nav-list {
    /* margin-right: 220px; */
      display: flex;
      align-items: center;
    
  }
  .nav-list .nav-item {
    /* margin-right: 220px; */
      display: flex;
      align-items: center;
    
  }
  

}

/*-------------------------- Hero -------------------------*/
.load{
  animation: slide 2s;
}
.slider{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  animation: slide 40s infinite;
}
@keyframes slide{
  0%{
    background-image: url('/images/art-1238602_1920.jpg');
  }
  20%{
    background-image: url('/images/desk-593317_1920.jpg');
  }
  20.01%{
    background-image: url('/images/composition-3288396_1920.jpg');
  }
  40%{
    background-image: url('/images/school-work-851328_1920.jpg');
  }
  40.01%{
    background-image: url('/images/school-supplies-top-view-chalkboard.jpg');
  }
  60%{
    background-image: url('/images/school-bag-with-books-equipment.jpg');
  }
  60.01%{
    background-image: url('/images/back-school-concept.jpg');
  }
  80%{
    background-image: url('/images/laptop-1016257_1920.jpg');
  }
  80.01%{
    background-image: url('/images/school-work-851328_1920.jpg');
  }
  100%{
    background-image: url('/images/desk-593317_1920.jpg');
  }
  
}

.img-container{
  height: 800px;
  position: relative;
  float: left;
}

/*-------------------------- Featured Products --------------------------*/
.ToCart{
  position: relative;
  top: 1px;
  background-color: cadetblue;
  padding: 5px 25px 5px 25px;
  border: none;
  border-radius: 10px;
  /* margin-bottom: 30px; */
}

.title {
  margin: 13rem 0 7rem 0;
  text-align: center;
}

.title h1 {
  font-size: 3rem;
  display: inline-block;
  position: relative;
  z-index: 0;
}

.title h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20%;
  transform: translate(-50%, -50%);
  background-color: var(--pink);
  border-radius: 20px;
  width: 50%;
  height: 0.4rem;
  z-index: 1;
}


/*---------------------- Product--------------------- */
.product-center {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 7rem 3rem;
}


.product {
  width: 260px;
  height: 38rem;
  background-color: rgb(255, 233, 208);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  text-align: center;
  transition: all 300ms ease-in-out;
}

.product:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
 
}

.product-header {
  border-radius: 1rem;
  position: relative;
  height: 20rem;
  background-color: #ffffff;
  transition: all 300ms ease-in-out;
  z-index: 0;
}

.product-header img {
  height: 80%;
  border-radius: 10px;
  margin: 20px 0px 0px 0px;
}

.product-footer {
  padding: 2rem 1.6rem 1.6rem 1.6rem;
}

.product-footer h3 {
  font-size: 16px;
  font-weight: 700;
}

.descrip {
  color: #43b3d9;
}

.product-footer .price {
  margin-top: 10px;
  color: #000000;
  font-size: 20px;
}

.product:hover .product-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 1rem 1rem 0 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 500ms ease-in-out;
  z-index: 1;
}

.product-header .icons {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(0, -50%) scale(0);
  z-index: 2;
  opacity: 0;
  transition: all 500ms ease-in-out;
}

.product-header .icons span {
  background-color: #fff;
  font-size: 2.5rem;
  display: block;
  border-radius: 50%;
  padding: 1.5rem 1.6rem;
  line-height: 2rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.product-header .icons span i {
  transition: all 500ms ease-in-out;
}

.product-header .icons span:not(:last-child) {
  margin-bottom: 1rem;
}

.product-header .icons span:hover {
  background-color: #ff7c9c;
  color: #fff;
}

.product:hover .icons {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.product-header .icons a {
  display: block;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px){
  .product-center {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    /* gap: 7rem 3rem; */
  }
  .product {
    width: 220px;
  }
  .product-footer .price{
    position: relative;
    margin: 0px;
    padding: 0px;
    top: 10px;
    bottom: 6px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 768px){
 .nav{
   height: 100px;
 }
 .logo1 .logo{
    position: relative;
    right: 320px;
  }
  .product {
    width: 120px;
    height: 30rem;
    
  }
  .product-header{
    height: 150px;
  }
  .product-center {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    /* gap: 7rem 3rem; */
  }
  .product img{
    width: 85px;
    height: 110px;
  }
  .product h3{
    font-size: 12px;
  }
  .product .descrip{
    display: none;
  }
  .product h4,
  h5{
    font-size: 5px;
    font-weight: 700;
    
  }
  .product-footer h1{
    position: relative;
    bottom: 10px;
  }
  .ToCart{
    padding: 7px 5px 7px 5px;
    /* margin: 5px 5px 5px 5px; */
  }

}
@media only screen and (max-width: 425px){
  .logo1 .logo{
    position: relative;
    right: 140px;
  }
  
  .product {
    width: 140px;
    height: 30rem;
    
  }
  .product-center {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    /* gap: 7rem 3rem; */
    grid-template-columns:150px 150px ;
    justify-content: center;
  }
  .product-header{
    height: 160px;
  }
  .product img{
    width: 80px;
    height: 140px;
  }
  .product h4,
  h5{
    font-size: 9px;
    font-weight: 700;
    
  }
  .product-footer h1{
    position: relative;
    bottom: 10px;
    
  }
  .product-footer .price{
    position: relative;

    bottom: 16px;
    font-size: 13px;
  }



}
@media only screen and (max-width: 320px){
  .logo1 .logo{
    position: relative;
    right: 110px;
  }
}

/*------------------------------ Brands ----------------------------*/
.brands-center {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8rem;
  padding: 100px;
}

.brand {
  /* height: 8rem;
  width: 8rem; */
  margin: 0 auto;
}

.brand img {
  /* object-fit: contain; */
  height: 70px;
  width: 200px;
  
}

@media only screen and (max-width: 912px) {
  .brands-center {
    grid-template-columns: repeat(3, 1fr);
  }
@media only screen and (max-width: 425px) {
  .brands-center {
    justify-content: center;
  }
  .brand {
    height: 8rem;
    width: 8rem;
    margin: 0 auto;
  }
  .brand img {
    /* object-fit: contain; */
    height: 70px;
    width: 200px;
  }
  #b1{
    height: 50px;
    width: 110px;
  }
  #b5{
    height: 50px;
    width: 140px;
  }
  #b6{
    height: 50px;
    width: 100px;
  }
  .brands-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 100px;
  }

}
@media only screen and (max-width: 375px) {
  .logo1 .logo{
    position: relative;
    right: 130px;
  }
  .brand img {
    /* object-fit: contain; */
    height: 60px;
    width: 150px;
  }
  #b1{
    
    width: 90px;
  }
  #b5{
    
    width: 100px;
  }
  #b6{
   
    width: 80px;
  }
  

}
}

/* =========-------------------- Footer ----------------======== */
.footer {
  /* position: fixed; */
  width: 100%;
  bottom: 0;
  background-color: var(--black);
  padding: 6rem 1rem;
  line-height: 3rem;
  
}

.footer-center span {
  margin-right: 1rem;
}

.footer-container {
  /* position: relative; */
  /* left: 220px; */
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  color: var(--white);
  justify-content: center;
}
.footer-center{
  text-align: center;
}
.footer-center a:link,
.footer-center a:visited {
  display: block;
  color: #f1f1f1;
  font-size: 1.4rem;
  transition: 0.6s;
  
}

.footer-center a:hover {
  color: var(--pink);
  
}

.footer-center div {
  color: #f1f1f1;
  font-size: 1.4rem;
}

.footer-center h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 998px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
}


@media only screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
@media only screen and (max-width: 425px) {
  .footer {
    /* position: relative;
    left: 10px; */
    margin-left: 0px;
   
  }
}



/*--------------------------- Pagination ----------------------*/
.pagination {
  padding: 3rem 0 5rem 0;
  
}

.pagination span {
  display: inline-block;
  padding: 1rem 1.5rem;
  border: 1px solid #243a6f;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.pagination span:hover {
  border: 1px solid #243a6f;
  background-color: #243a6f;
  color: #fff;
}

/*-------------------------- Detail -----------------------------*/
.product-detail .details {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem;
}

.product-detail .left {
  display: flex;
  flex-direction: column;
}

.product-detail .left .main {
  text-align: center;
  background-color: #f6f2f1;
  margin-bottom: 2rem;
  height: 45rem;
  padding: 3rem;
}

.product-detail .left .main img {
  object-fit: contain;
  height: 100%;
}

.product-detail .thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-detail .thumbnail {
  width: 10rem;
  height: 10rem;
  background-color: #f6f2f1;
  text-align: center;
}

.product-detail .thumbnail img {
  height: 100%;
  object-fit: contain;
}

.right span {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-detail .right h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.product-detail .right .price {
  font-size: 600;
  font-size: 20px;
  color: #000000;
  margin-bottom: 20px;
}

.product-detail .right div {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.product-detail .right select {
  font-family: "Poppins", sans-serif;
  width: 20rem;
  padding: 0.7rem;
  border: 1px solid #ccc;
  appearance: none;
  outline: none;
}

.product-detail form {
  margin-bottom: 2rem;
}

.product-detail form span {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 2rem;
  z-index: 0;
}

.product-detail .form {
  margin-bottom: 3rem;
}

.product-detail .form input {
  padding: 0.8rem;
  text-align: center;
  width: 11rem;
  margin-right: 2rem;
}

.product-detail .form .addCart {
  background: #00c472;
  padding: 0.8rem 4rem;
  color: rgb(0, 0, 0);
  border-radius: 3rem;
  /* transition: ease-in .15s; */
}
.product-detail .form .addCart:hover{
  background: #01ff95;
}

.product-detail h3 {
  text-transform: uppercase;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 996px) {
  .product-detail .left {
    width: 30rem;
    height: 45rem;
  }

  .product-detail .details {
    gap: 3rem;
  }

  .product-detail .thumbnails {
    width: 30rem;
    gap: 0.5rem;
  }

  .product-detail .thumbnail {
    width: auto;
    height: 10rem;
    background-color: #f6f2f1;
    text-align: center;
    padding: 0.5rem;
  }
}

@media only screen and (max-width: 650px) {
  .product-detail .details {
    grid-template-columns: 1fr;
  }

  .product-detail .right {
    margin-top: 10rem;
  }

  .product-detail .left {
    width: 100%;
    height: 45rem;
  }

  .product-detail .details {
    gap: 3rem;
  }

  .product-detail .thumbnails {
    width: 100%;
    gap: 0.5rem;
  }
}

/*--------------------- Cart Items ------------------------*/
.cart {
  margin: 10rem auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* ----------------------------------------------------------------- */
/*----------------------------- All Products page -----------------------------*/
.product-center2,
.product-center3,
.product-center4,
.product-center5{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 7rem 3rem;
}


 
#showMore{
  padding: 15px;
  margin: 30px 0;
  background-color: #000;
  border: 1px solid #fff;
  color: #ffff;
  transition: all 0.5s ease;
}
#showMore:hover{
  transition: all 0.5s ease;
  border:1px solid rgb(61,180,248);
  box-shadow: 0 0 15px 5px rgba(40,170,200,1);
}

.col-md-12{
  margin-left:700px ;
}

.section .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9rem;
  margin-top: 5rem;
}

.all-products .top select {
  
  font-family: "Poppins", sans-serif;
  width: 20rem;
  padding: 1rem;
  border: 1px solid #ccc;
  appearance: none;
  outline: none;
  border-radius: 10px;

}


.form {
  /* background-color: white; */
  position: relative;
  top: 30px;
  /* left: 800px; */
}
.form button{
  background: #34495e;
  border-radius:10px ;
}

.form__group {
  
  margin-bottom: 20px;
  background-color: whitesmoke;
  border-radius: 10px;
}

.form__group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.dropdown {
  position: relative;
}

.dropdown__selected {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 20px 0 10px;
  font-size: 14px;
  border: 1px solid var(--border-color);
  position: relative;
  cursor: pointer;
  transition: box-shadow .3s ease;
}

.dropdown__selected::after {
  top: calc(50% - 2px);
  right: 10px;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  position: absolute;
  border-top-color:#000;
  border-width: 4px;
  margin-left: -4px;
}

.dropdown__selected:hover {
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid var(--border-color);
  border-top: 0;
  background-color: #fff;
  z-index: 5;
  display: none;
}

.dropdown__menu_items {
  max-height: 210px;
  overflow-y: auto;
}

.dropdown__menu_search {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  padding: 12px;
  outline: 0;
  background-color: #f9f9f9;
}

.dropdown__menu_item {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  cursor: pointer;
}

.dropdown__menu_item:last-child {
  border-bottom: 0;
}

.dropdown__menu_item:hover {
  background-color: var(--border-color);
}

.dropdown__menu_item.selected,
.dropdown__menu_item.selected:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  border: 0;
  outline: 0;
  cursor: pointer;
}



/*----------------------contact form-------------------- */


 
  .contact-form{
    position: relative;
  left: 250px;
    max-width: 700px;
    margin: auto;
    margin-top: -167px;
    padding: 0 10px;
    overflow: hidden;
    padding-bottom: 30px;
  }
  
  
  .contact-form-text{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    border: 0;
    background: #111;
    padding: 20px 40px;
    outline: none;
    color: #ddd;
    transition: 0.5s;
    border-radius: 26px;
  }
  .contact-form-text:focus{
    box-shadow: 0 0 10px 4px #34495e;
    
  }
  textarea.contact-form-text{
    resize: none;
    height: 120px;
  }
  .contact-form-btn{
    float: right;
    border: 0;
    background: #34495e;
    color: #fff;
    padding: 12px 50px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
    
  }
  .contact-form-btn:hover{
    background: #2980b9;
  }

  /* ---------------Media Queries---------------- */
  
  
  @media only screen and (max-width: 1024px){
    .contact-section{
      position: relative;
      left: 10px;
      bottom: 4px;
    }
      .product-center2,
      .product-center3,
      .product-center4,
      .product-center5{
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 7rem 3rem;
      }
  }
  @media only screen and (max-width: 800px){
    
    .contact-section{
    position: relative;
    /* left: 280px; */
    width: 60%;
    
    }
    .product-center2,
    .product-center3,
    .product-center4,
    .product-center5{
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
      gap: 7rem 3rem;
    }

   
  }
  @media only screen and (max-width: 428px){
    .contact-section{
      display: none;
     
    }
    .product-center,
    .product-center2,
    .product-center3,
    .product-center4,
    .product-center5{
          grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
          /* gap: 7rem 3rem; */
          grid-template-columns:150px 150px ;
          justify-content: center;
    }
  }

  /* .product-center2{
    background-color: black;
  } */

  

  #shop-item-title {
    font-size: 15px;
    font-weight: 700;
    padding:0px 0px 10px 0px;
  }
  /* .product-center2{
    background: black;
  }  */

 /* ---------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/* 
.cart-info {
  display: flex;
  flex-wrap: wrap;
}
.cart-info span {
  position: relative;
  top: 5px;

}

th {
  text-align: left;
  padding: 0.5rem;
  color: #fff;
  background-color: #ff4a4a;
  font-weight: normal;
}

td {
  padding: 1rem 0.5rem;
}

td input {
  width: 10rem;
  height: 3rem;
  padding: 0.5rem;
  border-radius:5px ;
  border:none ;
}

td a {
  color: rgb(255, 255, 255);
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: underline;
  position: relative;
  top: 23px;
}
td a:hover {
  color: #00c2b2;
}

td img {
  width: 8rem;
  height: 8rem;
  margin-right: 1rem;
}

.total-price {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  flex-direction: column;
  margin-top: 2rem;
}

.total-price table {
  border-top: 3px solid #000000;
  width: 100%;
  max-width: 35rem;
}
.total-price button{
  position: relative;
  top: 20px;
  height: 40px;
  width: 150px;
  border-radius:5px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.total-price button:hover{
  color: #00c2b2;
}



td:last-child {
  text-align: right;
}

th:last-child {
  text-align: right;
}


@media only screen and (max-width: 567px) {
  .cart-info p {
    display: none;
  }
}
 */

