/* Cart Page Banner Section */
#cart_banner {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

#cart_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3333339e;
    z-index: -1;
    border-radius: inherit;
}



#cart_banner .common_container {
    width: 88%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}


.cart_banner_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.cart_banner_container h1 {
    font-size: 42px;
    line-height: 52px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 15px;
}


.cart_banner_container nav {
    font-size: 18px;
    line-height: 30px;
    color: #FF9800 !important;
    font-weight: 400;
    text-align: center;
    font-family: 'Inter 18pt';
    margin: 0 !important;
}



.cart_banner_container nav a {
    text-decoration: none;
    color: #FFF !important;
}


/* Cart Page Banner Section Min 768px and Max 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #cart_banner .common_container {
        margin: 60px 0;
    }

    .cart_banner_container h1 {
        font-size: 32px;
        line-height: 42px;
    }

}


/* Cart Page Banner Section Min 600px and Max 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    #cart_banner .common_container {
        margin: 60px 0;
    }

    .cart_banner_container h1 {
        font-size: 32px;
        line-height: 42px;
    }

}



/* Cart Page Banner Section Min 420px and Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    #cart_banner .common_container {
        margin: 60px 0;
    }

    .cart_banner_container h1 {
        font-size: 28px;
        line-height: 38px;
    }

}



/* Cart Page Banner Section  Max 419px */
@media only screen and (max-width: 419px) {
    #cart_banner .common_container {
        margin: 60px 0;
    }

    .cart_banner_container h1 {
        font-size: 24px;
        line-height: 34px;
    }

}


/* Cart Page General Table Styling */
#cart_section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
}

#cart_section .common_container {
    width: 88%;
    max-width: 1366px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

.cart_main_conatiner {
    width: 100%;
}

#cart_section table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    background-color: #FAFAF9;
}

#cart_section table.shop_table thead tr {
    background-color: #8A9C87;
}

#cart_section table.shop_table th,
#cart_section table.shop_table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    font-family: 'Inter 18pt';
}

#cart_section table.woocommerce-cart-form__contents th {
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    font-family: 'Playfair Display';
}

#cart_section table.shop_table td.product-thumbnail img {
    width: 100%;
    max-width: 60px;
    border-radius: 8px;
}

#cart_section table.shop_table td.product-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

#cart_section table.shop_table td.product-name a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-family: 'Inter 18pt';
}

#cart_section tbody tr td .coupon {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#cart_section tbody tr td .coupon input.input-text {
    width: 240px;
    border-radius: 10px;
    padding: 10px 0 10px 15px !important;
    background-color: #F7F7F7;
    border: 1px solid #ccc;
}

#cart_section .quantity input.qty {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-family: 'Inter 18pt';
}

#cart_section .quantity input[type=number]::-webkit-inner-spin-button,
#cart_section .quantity input[type=number]::-webkit-outer-spin-button {
    opacity: 1 !important;
    pointer-events: all;
    color: #8A9C87 !important;
}

#cart_section table.shop_table td.product-price,
#cart_section table.shop_table td.product-subtotal {
    color: #444;
    font-weight: 600;
    font-family: 'Inter 18pt';
}

#cart_section a.remove {
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    height: 30px !important;
    width: 30px !important;
    text-align: center;
    line-height: normal;
    border-radius: 100%;
    color: var(--wc-red) !important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    transition: 0.1s ease-in-out;
}

#cart_section a.remove:hover {
    color: #c77272 !important;
    background-color: transparent !important;
}

#cart_section table.shop_table td strong {
    font-weight: 600;
}

#cart_section .cart-collaterals .cart_totals {
    width: 94%;
    padding: 3%;
    background: #EAE7E0;
    border: 1px solid #ddd;
    margin-top: 40px;
}

#cart_section .cart_totals table thead tr {
    background-color: #8A9C87;
}

#cart_section .cart_totals table th {
    font-size: 20px;
    color: #000000;
    font-weight: 700;
    font-family: 'Playfair Display';
}

#cart_section .cart-collaterals .cart_totals h2 {
    font-size: 24px;
    color: #8A9C87;
    font-family: 'Playfair Display';
    margin: 0 0 30px 0;
}

#cart_section .cart-collaterals .order-total strong {
    font-size: 18px;
}

#cart_section .actions .button,
#cart_section .wc-proceed-to-checkout a.checkout-button, #cart_section
.woocommerce a.button {
    text-decoration: none;
    width: fit-content;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
    font-family: 'Inter 18pt';
    background: #8A9C87;
    margin: 0 !important;
    padding: 16px 20px !important;
    border-radius: 10px;
    transition: background 0.2s ease-in-out;
}

#cart_section .woocommerce a.button:hover,
#cart_section .actions .button:hover, #cart_section .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #0A400C;
}

#cart_section .cart-empty {
    text-align: center;
    padding: 100px 20px;
    font-size: 18px;
    border: 1px dashed #ccc;
    border-radius: 12px;
    background: #FAFAF9;
    font-family: 'Inter 18pt';
}

#cart_section .return-to-shop a.button {
    margin-top: 20px;
}

a.shipping-calculator-button {
    text-decoration: none;
    color: #8A9C87;
    display: flex !important;
    align-items: center;
}

#cart_section .cart-collaterals .cross-sells {
    display: none !important;
}




@media screen and (max-width: 768px) {
    #cart_section table.shop_table th,
    #cart_section table.shop_table td {
        font-size: 14px;
        padding: 10px;
    }

    #cart_section tbody tr td .coupon {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }


    td.actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }


    #cart_section .actions .button,
    #cart_section .wc-proceed-to-checkout a.checkout-button,
    .woocommerce a.button {
        font-size: 14px;
        padding: 10px 20px !important;
    }
}



/* You May Also Like Section */
#more_product_add {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#more_product_add .common_container {
    width: 88%;
    max-width: 1366px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

.more_pro_main_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.more_pro_head_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.more_pro_head_box h3 {
    font-size: 42px;
    color: #8A9C87;
    font-weight: 700;
    text-align: center;
    font-family: 'Playfair Display';
    margin: 0;
}

.more_pro_main_box {
    width: 100%;
}

.more_pro_main_box .cross-sells h3 {
    display: none !important;
}

.more_pro_main_box .cross-sells {
    width: 100%;
}

.more_pro_main_box .cross-sells ul {
    list-style: none !important;
    width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.more_pro_main_box .cross-sells ul::before,
.more_pro_main_box .cross-sells ul::after {
    display: none !important;
}

.more_pro_main_box .cross-sells ul li.product {
    width: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    box-shadow: 0px 10px 20px 0px rgba(100, 127, 145, 0.2);
    border-radius: 30px;
    overflow: hidden;
    background-color: #FFFFFF;
}

.more_pro_main_box .cross-sells ul li span.onsale {
    display: none;
}

.more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link {
    width: 100%;
    text-decoration: none;
}

.more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link img {
    width: 100%;
    height: 260px !important;
    object-fit: cover;
    margin: 0 !important;
    margin-bottom: 20px !important;
}

.more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link h2 {
    font-size: 20px !important;
    color: #101923;
    font-weight: 600;
    text-align: center;
    font-family: 'Playfair Display';
    padding: 0 10px !important;
    margin: 0 !important;
    margin-bottom: 10px !important;
}

.more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link span.price {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 !important;
    margin-bottom: 20px !important;
}

.more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link span.price del {
    font-size: 16px;
    color: #989898 !important;
    font-family: 'Inter 18pt';
}

.more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link span.price ins {
    text-decoration: none;
    font-size: 16px;
    color: #8A9C87;
    font-family: 'Inter 18pt';
    font-weight: 600;
}

.more_pro_main_box .cross-sells ul li a.button {
    text-decoration: none;
    width: fit-content;
    display: inline-block;
    font-size: 16px;
    font-weight: 400 !important;
    color: #ffffff !important;
    font-family: 'Inter 18pt';
    background: #8A9C87 !important;
    margin: 0 !important;
    padding: 12px 30px !important;
    border-radius: 100px;
    transition: 0.2s ease-in-out;
}

.more_pro_main_box .cross-sells ul li a.button:hover {
    background-color: #0A400C !important;
}

.more_pro_main_box .cross-sells ul li a.added_to_cart.wc-forward {
    text-decoration: none;
    color: #4CAF50;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter 18pt';
    padding: 0;
    margin-top: 10px;
}




/* Product Section Min 1366px Max 1399px */
@media only screen and (min-width: 1366px) and (max-width: 1399px) {
    .more_pro_main_box .cross-sells ul li.product {
        width: 30% !important;
    }
}



/* Product Section Min 1280px Max 1365px */
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
    .more_pro_main_box .cross-sells ul li.product {
        width: 30% !important;
    }
}


/* Product Section Min 1024px Max 1279px */
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    .more_pro_main_box .cross-sells ul li.product {
        width: 30% !important;
    }
}


/* Product Section Min 992px Max 1023px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    .more_pro_main_box .cross-sells ul li.product {
        width: 46% !important;
    }
}


/* Product Section Max 991px */
@media only screen and (max-width: 991px) {

    .more_pro_head_box {
        margin-bottom: 40px;
    }

    .more_pro_main_box .cross-sells ul li.product {
        width: 46% !important;
    }
}



/* Product Section Min 420px Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {

    #more_product_add .common_container {
        margin: 40px 0;
    }

    .more_pro_head_box {
        margin-bottom: 30px;
    }

    .more_pro_head_box h3 {
        font-size: 28px;
    }

    .more_pro_main_box .cross-sells ul {
        gap: 30px;
    }

    .more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link img {
        width: 100%;
        height: 140px !important;
    }

    .more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link h4 {
        font-size: 18px !important;
    }

    .more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link span.price del {
        font-size: 15px;
    }

    .more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link span.price ins {
        font-size: 15px;
    }

    .more_pro_main_box .cross-sells ul li a.button {
        font-size: 14px;
        padding: 12px 26px !important;
    }

    
}


/* Product Section  Max 445px */
@media only screen and (max-width: 445px) {


    #more_product_add .common_container {
        margin: 40px 0;
    }

    .more_pro_head_box {
        margin-bottom: 30px;
    }


    .more_pro_head_box h3 {
        font-size: 24px;
    }


    .more_pro_main_box .cross-sells ul {
        gap: 30px;
    }

    .more_pro_main_box .cross-sells ul li.product {
        width: 100% !important;
    }

    .more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link img {
        width: 100%;
        height: 280px !important;
    }

    .more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link h2 {
        font-size: 18px !important;
    }

    .more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link span.price del {
        font-size: 15px;
    }

    .more_pro_main_box .cross-sells ul li a.woocommerce-LoopProduct-link span.price ins {
        font-size: 15px;
    }

    .more_pro_main_box .cross-sells ul li.product a.button {
        font-size: 14px;
        padding: 12px 26px !important;
    }

   
}