*{
    margin: 0;
    padding: 0;

  
}
::-webkit-scrollbar {
  display: none;
}
  h1,h2,h3,h4,h5,h6,span{
        font-family: var(--headings-font);
        font-weight: lighter;
    }
    p,a,select,input,option,textarea{
      font-family: var(--bodytext-font);
    }
:root{
    --color-background: #FFFFFF;      /* White background */
  --color-primary: #910a2c;         /*  maroon primary color for important headings, keys and titles */
  --color-text: #222222;            /* Almost-black for high readability */
  --color-btn-link-icons: #590016;          /* Use maroon for buttons, links and icons */
  --color-btn-link-icons-hover: #a70d39;    /* Darker maroon for hover states */
  --color-border: #EDEDED;          /* Soft gray for dividers */
   --color-notification-alert: #f38e8e;       /* Soft blush light red for notification and alerts*/
   --headings-font: 'Playfair Display', serif;
   --bodytext-font: "Forum", serif;
   --logofont:"Great Vibes", cursive;
}
/* cart section starts here */
.cart-section{
    width: 100vw;
    min-height: 100vh;

    padding-top: 5rem;
    margin-top: 5rem;
}
.cart-section .heading-div{
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
   height: 120px;
}
.cart-section .heading-div h1{
    font-size: 3rem;
}
.cart-section .heading-div .striped-link p a{
    text-decoration: none;
    color: var(--color-text);
    font-size: 1.1rem;
}
.cart-section .heading-div .striped-link{
   position: relative;
    border-bottom: 2px solid var(--color-border);

}
.cart-section .heading-div .striped-link::after{
    content: "";
    position: absolute;
    width:0;
    height: 2px;
    background-color: var(--color-btn-link-icons-hover);
     transition: width 0.5s ease;
}
.cart-section .heading-div .striped-link:hover::after{
    width: 100%;


}
.cart-section .main-content{
        width: 100vw;
    /* min-height: 100vh; */

    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

}
.cart-section .main-content .products{
width: 600px;
   flex-wrap: wrap;
    
}
.cart-section .main-content .products .products-wrapper{
    display: flex;
      width: 100%;
      justify-content: space-between;
      height: 200px;
 border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      align-items: center;
      padding-bottom: 1rem;
      padding-top: 1rem;
      flex-wrap: wrap;
    
}
.cart-section .main-content .products .products-wrapper .flex1{
   width: 450px;

    display: flex;
  justify-content: space-evenly;
}
.cart-section .main-content .products .products-wrapper .cart-img{
    width: 180px;
    height:180px;
}
.cart-section .main-content .products .products-wrapper .cart-img img{
    width: 100%;
    height: 100%;
}
.cart-section .main-content .products .products-wrapper .cart-price{
    display: flex;

justify-content: center;


}
.cart-section .main-content .products .products-wrapper .flex1 .cart-about{

    height: 150px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.cart-section .main-content .products .products-wrapper .flex1 .cart-about p{
    font-size: 1.1rem;
}
.cart-section .main-content .products .products-wrapper .flex1 .cart-about .size,.remove{
    display: flex;
    justify-content: space-evenly;
    width: 110px;
}
.cart-section .main-content .products .products-wrapper .flex1 .cart-about .size .size-label{
    font-weight: bolder;
}
.cart-section .main-content .products .products-wrapper .flex1 .cart-about .products-no-div{
    display: flex;

    justify-content: center;
    width: 110px;
}
.cart-section .main-content .products .products-wrapper .flex1 .cart-about .products-no-div .btns-div{
    border: 1px solid  rgba(0, 0, 0, 0.2);

}
.cart-section .main-content .products .products-wrapper .flex1 .cart-about .products-no-div .btns-div button{
    padding:0.5rem 0.6rem;
    border: none;
    background-color: var(--color-background);
}
.cart-section .main-content .products .products-wrapper .flex1 .cart-about .products-no-div .btns-div .incanddec:hover{
    background-color: #f8f5f5;
    transition-duration: 0.2s;
}

.cart-section .main-content .products .products-wrapper .flex1 .cart-about .remove a{
    color: var(--color-text);
    text-decoration: none;
}










.cart-section .main-content .order-note{

width: 400px;
   display: flex;
flex-direction: row;
padding-top: 2rem;
    height: 400px;
    justify-content: center;
}

.cart-section .main-content .order-note .order-note-form{
        width: 100%;
 height: 350px;
     display: flex;
     flex-direction: column;
     justify-content: space-evenly;
     padding: 1rem;
     background-color: #edededd8;
     border-radius: 5px;
    

}
.cart-section .main-content .order-note .order-note-form p{
    font-size: 1.1rem;
 
    
}
.cart-section .main-content .order-note .order-note-form form{

    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.cart-section .main-content .order-note .order-note-form  textarea{
width:90%;
height: 6rem;
    resize:none;
    border: none;
    border: 1px solid  rgba(0, 0, 0, 0.2);
        padding: 1rem;
        font-size: 1.1rem;
}

.cart-section .main-content .order-note .order-note-form textarea:focus{
outline: none;
border: 1px solid var(--color-text);
}
.cart-section .main-content .order-note .order-note-form textarea::placeholder{
    font-size: 1.1rem;

}
.cart-section .main-content .order-note .order-note-form .subtotal-div{
    display: flex;
    justify-content: space-between;

}
.cart-section .main-content .order-note .order-note-form .order-note-btn{
    display: flex;
    justify-content: center;
}
.cart-section .main-content .order-note .order-note-form .order-note-btn button{

border: none;
  width: 95%;
  height: 3em;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  cursor: pointer;
  transition: all 450ms ease-in-out;
}



.cart-section .main-content .order-note .order-note-form .order-note-btn button .text a {
text-decoration: none;
  color: var(--color-background);
font-size: 1.3rem;
}

.cart-section .main-content .order-note .order-note-form .order-note-btn button:hover {
  background: linear-gradient(0deg,var(--color-btn-link-icons-hover),var(--color-notification-alert));
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4),
  inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
  0px 0px 0px 4px rgba(255, 255, 255, 0.2),
  0px 0px 180px 0px var(--color-primary);
  transform: translateY(-2px);
}

.cart-section .main-content .order-note .order-note-form .order-note-btn button:hover .text a {
  color: white;
}

.cart-section .main-content .order-note .order-note-form .checkout-about{
    font-size: 1rem !important;
    text-align: center;
}



@media (max-width:920px) {
 .cart-section .main-content .order-note .order-note-form{
    
    background-color: var(--color-background);
    
    }
.cart-section .main-content .order-note{
width: 100%;
}
.cart-section .main-content .order-note .order-note-form{
        width: 100%;
 height: 250px;
   

}
.cart-section .main-content .order-note .order-note-form textarea{
height: 2rem;
       font-size:0.5rem !important; 
}
.cart-section .main-content .products{
    width: 100%;
}
   .cart-section .main-content .products .products-wrapper .cart-price{

justify-content: end;
width: 100%;

}
    .cart-section .main-content .products{
    width: 100%;
}
.cart-section .main-content .products .products-wrapper{
      width: 100%;
      height:250px;


}
}




@media (max-width:400px) {
    .cart-section .main-content .products{
    width: 100%;
}
    .cart-section .main-content .products .products-wrapper .cart-price{
    display: flex;

width: 100%;

}
.cart-section .main-content .products .products-wrapper .flex1{
flex-direction: column;
height: 400px;
width: 100%;
align-items: center;
}
.cart-section .main-content .products .products-wrapper{
    display: flex;
      width: 100%;
      height: 400px;


}

}
