.form div {
    margin-bottom: 0.4em;
}

.cartItem {
    margin-right: 10px;
    box-shadow: 0px 0px 3px #c0c0c0;
    padding: 10px 0;
}

.border {
    margin-bottom: 10px;
    border-bottom: 1px solid #c0c0c0;
}

.cartItemQuantity {
    width: fit-content;
    background: #f4f4f4;
}

.proceed {
    /* width: 100%; */
    height: fit-content;
    padding: 0px;
    /* margin-left: 0; */
    /* box-shadow: 0px 0px 3px #c0c0c0; */
}

.order-summary {
    box-shadow: 0px 0px 3px #c0c0c0;
    padding: 20px;
}

/* 
.items {
    padding-right: 30px;
} */

#btn-checkout {
    min-width: 100%;
}

h5,
p {
    margin-bottom: 0px;
}

a {
    color: #0e1111;
    text-decoration: none;
}

button:active>i {
    font-weight: 600;
}

a:focus,
button:focus {
    outline: none;
}

.cart-heading {
    text-align: center;
    margin-bottom: 20px;
}

.shopnow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(117, 55, 105, 1) 0%, rgba(112, 46, 115, 1) 55%, rgba(143, 79, 135, 1) 100%);
    padding: 10px 20px;
    gap: 16px;
    width: fit-content;
    height: 40px;
    font-size: 20px;
    color: white;
    line-height: 20px;
    letter-spacing: 0.1px;
    border: none;
    cursor: pointer;
}

.shopnow:hover {
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(270deg, rgba(117, 55, 105, 1) 0%, rgba(112, 46, 115, 1) 55%, rgba(143, 79, 135, 1) 100%);
}

.shopnow:hover span:after {
    opacity: 1;
    top: 2px;
    right: -6px;
}

.cart-product-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cart-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}


.quantity {
    display: flex;
    align-items: center;
}

.cart-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.remove-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cartItem .col-1 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


.remove-item svg {
    width: 30px;
    height: 30px;
}

.product-cart-detial {
    padding: 10px 0;
}

.product-size span {
    color: #6C757D;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
}

.quantity-control button {
    width: 30px;
    height: 30px;
}

.remove-link {
    color: #FF9F43;
    text-decoration: none;
}

.remove-link:hover {
    text-decoration: underline;
}

input[type="text"] {
    height: 30px;
    border: 1px solid #6C757D;
    border-radius: 4px;
}

/* Media Queries for Responsive Design */
@media (max-width: 991px) {
    /* .cart-product-img {
        width: 100%;
        height: 165px;
    } */

    #cart {
        padding-top: 0px;
    }

    .product-cart-detial {
        padding: 0;
    }

    .product-cart-detial .product-title {
        font-size: 14px;
    }

    .order-summary {
        padding: 15px;
    }

    #btn-checkout {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .order-summary-title {
        font-size: 20px;
    }

    #cart {
        padding-top: 0px;
    }

    .hr-line {
        margin: 10px 0px;
    }

    /* .cart-product-img {
        height: 130px;
    } */


    .order-summary {
        padding: 15px 10px;
    }

    .shopnow {
        font-size: 18px;
        height: 36px;
    }

    .product-cart-detial .product-title {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    /* .cart-product-img {
        height: 130px;
    } */

    .items {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .cart-heading {
        margin-bottom: 5px;
    }

    .cartItem {
        margin: 10px 0px;
        padding: 5px 0px;
    }

    .proceed {
        margin: 10px 0px;
        padding: 0px 12px;
    }

    .order-summary {
        padding: 15px;
        /* margin: 8px 0px; */
    }

    .shopnow {
        font-size: 16px;
        height: 32px;
        padding: 8px 16px;
    }

    .product-cart-detial .product-title {
        font-size: 15px;
    }

    .product-cart-detial .product-size,
    .product-cart-detial .product-type,
    .product-cart-detial .product-price {
        font-size: 14px;
    }

    .product-cart-detial .cartItemQuantity .quantity .btn {
        padding: 0px 4px;
    }

    .remove-item.btn {
        padding: 0px;
    }

    .remove-item svg {
        width: 25px;
        height: 25px;
    }

    .hr-line {
        margin: 0px 0px 10px 0px;
    }

    .cartItem.row .col-4,
    .cartItem.row .col-7,
    .cartItem.row .col-1 {
        padding: 7px;
    }
}

/* coupon code css  */
.promo-code-input input {
    border: 2px solid #ddd;
    border-radius: 4px 0 0 4px;
    height: 45px;
}

.promo-code-input input:focus {
    box-shadow: none;
    border: none;
    background-color: #f2eeee;
}

.apply-btn {
    background: linear-gradient(90deg, rgba(117, 55, 105, 1) 0%, rgba(112, 46, 115, 1) 55%, rgba(143, 79, 135, 1) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    height: 45px;
    padding: 0 20px;
    font-weight: bold;
}

.apply-btn:hover {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(270deg, rgba(117, 55, 105, 1) 0%, rgba(112, 46, 115, 1) 55%, rgba(143, 79, 135, 1) 100%);
}