/* cart shopping  */

.header .cart-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.header .cart-img span {
    display: flex;
    width: 15px;
    height: 15px;
    font-size: 12px;
    background-color: red;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -10px;
}

#section {
    background-color: lightgray;
    display: grid;
    grid-template-columns: auto 400px;
    grid-gap: 20px;
    padding-top: 30px;
    padding-bottom: 40px;
}
.cart-container {
    background-color: #fff;
}

#section .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

#section .cart-action {
    display: flex;
    background-color: #fff;
    padding-right: 30px;
}
.cart-section .cart-item a{
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border: 2px solid rgb(249, 247, 247);
    min-height: auto;
}
#section .item-delivery-date {
    padding-top: 25px;
    margin-left: 25px;
}
#section .item-delivery-date span {
    color: green;
}

.cart-title-header {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.cart-title-header a {
    text-decoration: none;
    color: black;
}

.cart-title-header .qty {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cart-title-header .qty span {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 3px 3px 5px lightgray, -1px -1px 2px lightgray;
    user-select: none;
    transition: scale 0.2s ease;
}
.cart-title-header .qty span:hover {
    scale: 1.1;
}
.cart-title-header .qty span:active {
    scale: 1;
}

.shopping-btn-cart  {
    background-color: #fff;
    display: flex;
    justify-content: end;
    padding-bottom: 40px;
}

.shopping-btn-cart  a {
    text-decoration: none;
    margin-right: 40px;
    background-color: #FF8617;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.cart-price-details {
    background-color: #fff;
    padding: 20px 10px;
    height: 400px;
}
.cart-price-details .product-price {
    display: flex;
    justify-content: space-between;
}

.cart-price-details .product-discount {
    display: flex;
    justify-content: space-between;
}

#section .cart-price-details .product-discount span {
    color: green;
}
