.global_banner {
    padding: 60px 0;
    background: rgb(246, 246, 246);
    margin-top: 5rem;
}

.global_banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.myBreadcrumb {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 10px;
}

.global_banner__content h1 {
    text-transform: capitalize;
}

.myBreadcrumb a,
.myBreadcrumb p,
.myBreadcrumb span {
    color: var(--black-color);
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
}

.myBreadcrumb a:hover {
    color: var(--main-color);
}

.myBreadcrumb p {
    color: var(--main-color);
}

.cod-pay-flex {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cod {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.cod label {
    cursor: pointer;
    font-weight: 500;
    text-transform: capitalize;
}

.cod input {
    accent-color: var(--main-color);
    height: 16px;
    width: 16px;
    transition: .3s ease-in;
    border-radius: 100%;
}

.cart_section {
    padding: 80px 0;
}

.cart_wrapper__content tr th {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
}

.cart-items {
    border-spacing: 0;
    border-collapse: separate;
    box-shadow: none;
    width: 100%;
    display: table;
}

.cart-items thead,
.cart-items tr {
    width: 100% !important;
}

.cart-items tr {
    border-bottom: 1px solid #ddd;
}

.cart_wrapper__content tr th:first-child {
    width: 60%;
}

.cart_wrapper__content tr th:last-child {
    text-align: center;
}

.table_flax {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.product {
    width: 60%;
}

.product-img img {
    height: 130px;
    width: 130px;
    object-fit: cover;
}

.product {
    display: flex;
    gap: 12px;
}

.product_details h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 10px !important;
}

.cart-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-quantity__flax {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart-quantity__num p,
.cart-quantity__num input {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    text-align: center;
    gap: 12px;
    background-color: transparent;
    cursor: pointer;
    outline: none;
}



.cart-quantity__num {
    display: flex;
    gap: 10px;
}

.del-btn button {
    border: 0;
    outline: none;
    font-size: 16px;
    text-transform: capitalize;
    background-color: transparent;
}

.cart_total {
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: right;
    width: 20%;
}

.cart_total h6 {
    font-size: 18px;
    font-weight: 600;
}


.checkout-section {
    padding-bottom: 70px;
}

.checkout-section_content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 12px;
}

.checkout-section_content h6 {
    display: flex;
    font-size: 22px;
    gap: 20px;
    align-items: center;
}

.checkout-section_content h6 span {
    color: #666;
    font-size: 16px;
    text-transform: capitalize;
}

.my-checkout {
    margin-top: 1rem;
}

.my-checkout a {
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 10px 30px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
}

.my-checkout a:hover {
    background-color: var(--white-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

@media(max-width:768px) {
    .product-img img {
        height: 100px;
        width: 100px;
    }

    .product_details h3 {
        font-size: 18px;
        margin-bottom: 3px !important;
    }

    .cart-quantity__num p,
    .cart-quantity__num input {
        height: 30px;
        width: 30px;
    }

    .cart_wrapper,
    .checkout-section {
        padding: 40px 0;
    }

    .checkout-section_content {
        gap: 6px;
    }

    .cart_total h6 {
        font-size: 16px;
    }

    .checkout-section_content h6 {
        font-size: 18px;
    }

    .cart_section {
        padding: 40px 0;
    }

    .checkout-section {
        padding: 0 0 60px 0;
    }

    .global_banner__content h1 {
        font-size: 22px;
    }

    .myBreadcrumb a,
    .myBreadcrumb p,
    .myBreadcrumb span {
        font-size: 15px;
    }

    .global_banner {
        margin-top: 4rem;
    }
}

@media(max-width:576px) {
    .global_banner {
        margin-top: 3rem;
    }
}