.cartpage h5 {
    text-align: center;
}

.checkout-bg-color {
    background-color: #c7e1e9;
    border-radius: 10px;
}

.checkout-form {
    padding: 0px 20px;
}

.checkout-form h3 {
    font-family: "Hind Siliguri", serif;
    font-size: medium;
    font-weight: 600;
}

.checkout-form h5 {
    font-family: "Hind Siliguri", serif;
    font-size: x-large;
    font-weight: 600;
}

.divCart {
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    background-color: white;
    display: flex;
    gap: 10px;
    position: relative;
}

.divCart img {
    height: 80px;
    width: 80px;
    border-radius: 5px;
}

.close {
    background-color: white;
    position: absolute;
    right: 0px;
    top: 0px;
}

.close a {
    text-decoration: none;
    display: block;
}

.close a i {
    font-size: medium;
}


.contant-cart .quantity {
    display: flex;
}

.contant-cart .quantity p {
    padding-top: 5px;
    font-family: 20px;
}

.contant-cart .quantity i {
    margin: 0px 15px;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid var(--mainColor);
}

.box-delivery-charge {
    padding: 20px 10px;
    background-color: rgb(255 246 235);
    border-radius: 10px;
    border: 1px solid rgba(136, 0, 0, 0.4) !important;
}

.box-delivery-charge .form-control {
    background-color: transparent;
}

.border-bottom {
    border-bottom: 1px dotted rgba(136, 0, 0, 0.4) !important;
}

.form-control#name:focus,
.form-control#phone:focus,
.form-control#address:focus {
    border: 1px solid #20bcaf !important;
    outline: none !important;
    box-shadow: 0 0 0 0.1rem rgba(32, 188, 175, 0.25) !important;
}

.rubel {
    height: 100%;
    width: 100%;
    margin: 20px auto;
    display: grid;
    place-items: center;

}

.rubel .custom-box {
    margin: 30px 0;
    height: 200px;
    background-color: #fd236c;
    display: grid;
    place-items: center;
    border-radius: 10px;
    text-align: center
}

.rubel .custom-box h4 {
    text-align: center;
    line-height: 30px;
}

.rubel .custom-box a {

    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: rgb(172, 172, 172);
    text-decoration: none;
    line-height: 30px;
}

.rubel .custom-box a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline
}

/* Button Animation Styles */
/* New Button Color */
.btn-theme {
    background: linear-gradient(135deg, #fd236c 0%, #ff6b3d 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background: linear-gradient(135deg, #e51e5f 0%, #e85a2b 100%) !important;
    transform: translateY(-2px);
    color: white !important;
    box-shadow: 0 6px 20px rgba(253, 35, 108, 0.4) !important;
}

.btn-theme:active {
    transform: translateY(0) !important;
    background: linear-gradient(135deg, #cc1a54 0%, #cc4a26 100%) !important;
}

/* Pulse animation with new color */
@keyframes pulse-theme {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 35, 108, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(253, 35, 108, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 35, 108, 0);
    }
}

.btn-pulse-theme {
    animation: pulse-theme 2s infinite;
}