
.main_basket_item_section{
    display: flex;
    width: 100%;
    margin-bottom: 60px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 200px;
    gap: 10px;
    background-color: var(--background-color);
}
.left_basket_item_section{
    display: flex;
    height: 100%;
    width: 20%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
.left_basket_bold_text{
    color: var(--black-color);
    font-weight: bold;
    font-size: 16px;
    font-family: var(--font-main);
    width: 100%;
    text-align: right;
    margin: 2px;
}
.left_basket_regular_text{
    color: var(--black-color);
    font-family: var(--font-main);
    font-weight:normal; 
    font-size: 16px;
    text-align: right;
    margin: 2px;
}
.middle_basket_item_section{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}
.middle_basket_item_section img{
    height: calc(100%);
    width: 400px;
    border-radius: 10px;
    object-fit: cover;
}
.quantity-control-wrapper{
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid var(--black-color);
}
.qty-btn {
  width: 36px;
  height: 30px;
  border-radius: 15px;
  border: none;
  background-color: var(--background-color);
  color: var(--black-color);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-btn:hover {
  background-color: var(--pink-color);
}
.qty-number {
  min-width: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #f4f4f4;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: inline-block;
}
.right_basket_item_section{
    display: block;
    height: 100%;
    flex: 1;
}
.right_basket_bold_text{
    color: var(--black-color);
    font-weight: bold;
    font-size: 26px;
    width: 100%;
    text-align: right;
    margin-top: 20px;
    font-family: var(--font-main);
}
.right_basket_regular_text{
    color: var(--black-color);
    font-weight:normal; 
    font-size: 20px;
    text-align: right;
    margin-top: 10px;
    font-family: var(--font-main);
}
.cart-product-image img {
  max-width: 140px;
  border-radius: 20px;
}
.cart-product-data{
    display: flex;
    height: 160px;
    justify-content: center;
    align-items: end;
    width: 100%;
    flex-direction: column;
}
.cart-product-title{
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: bold;
    color: var(--black-color);
    text-align: right;
}
.remove-from-cart-link{
  position: relative;
  display: inline-block;
  background-color: aqua;
  height: 100%;
}
.remove-from-cart {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--pink-color);
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}