.cart-head-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F7FF;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.checkout-summary {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 0px 20px 0px #5959590A;
}

.checkout-summary .summary-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.checkout-summary .summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.checkout-summary .summary-item .label {
    color: #4F4F4F;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-align: right;
}

.checkout-summary .summary-item .shipping-price-label {
    color: #0031A2;
}

.checkout-summary .summary-item .value {
    font-weight: bold;
}

.checkout-summary .summary-item .data {
    font-weight: bold;
    display: flex;
    text-align: left;
}

.checkout-summary .shipping-cost {
    color: #0056b3;
    font-weight: bold;
}

.checkout-summary .discount {
    background: #FFF6F9;
    padding: 8px;
    border-radius: 5px;
}

.checkout-summary .discount .label {
    color: #E91848;
}

.checkout-summary .discount .discount-value {
    color: #E91848;
    font-weight: 700;
    font-size: 16px;
    line-height: 24.8px;
    text-align: right;
}

.checkout-summary .discount-code {
    display: flex;
    margin: 15px 0 20px;
    border: 1px solid #BDBDBD;
    border-radius: 8px;
    overflow: hidden;
}

.checkout-summary .discount-code::placeholder {
    color: #BDBDBD;
}

.checkout-summary .discount-code input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    width: 100%;
}

.checkout-summary .discount-code .apply-discount {
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #0031A214;
    border-radius: 8px;
    width: 47px;
    color: #0031A2;
    border: unset;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-summary .discount-code .apply-discount:hover {
    background: #0031A2;
    color: white;
}

.checkout-summary .total {
    font-size: 18px;
    font-weight: bold;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.checkout-summary .confirm-purchase {
    width: 100%;
    background: #148A59;
    box-shadow: 0px 0px 20px 0px #5959590A;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    line-height: 21.7px;
    text-align: center;
}

.checkout-summary .summary-item.total .label {
    font-weight: 700;
    font-size: 14px;
    line-height: 21.7px;
    text-align: right;
    color: #4F4F4F;
}

.checkout-summary .confirm-purchase:hover {
    background: #10733a;
}

.shopping-cart {
    padding: 20px;
}

.shopping-cart .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.shopping-cart .cart-header .cart-page-count .countss {
    font-weight: 700;
    font-size: 14px;
    line-height: 21.7px;
    text-align: right;
    color: #828282;
}

.shopping-cart .cart-header .cart-page-count span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24.8px;
    text-align: right;
    color: #333333;
}

.shopping-cart .remove-all {
    background: none;
    border: none;
    color: #d9534f;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.shopping-cart .remove-all span {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-align: right;
    color: #828282;
}

.shopping-cart .cart-item {
    display: flex;
    background: #fff;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 0px 20px 0px #5959590A;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.shopping-cart .quantity-labels-wrap {
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
}

.shopping-cart .item-thumbnail {
    width: 80px;
    height: 80px;
    background-color: #ddd;
    margin-left: 15px;
}

.shopping-cart .item-thumbnail img {
    width: 100%;
    height: 100%;
}

.shopping-cart .item-details {
    flex: 1;
}

.shopping-cart .item-details h4 {
    margin: 0 0 28px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24.8px;
    text-align: right;
    color: #333;
}

.shopping-cart .item-meta-badge {
    background: #F3F7FB;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.shopping-cart .badge-content {
    color: #042A54;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.shopping-cart .show-details {
    font-weight: 600;
    font-size: 12px;
    line-height: 18.6px;
    text-align: right;
    color: #95A0AD;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.shopping-cart .prices-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: end;
}

.shopping-cart .prices-wrapper .woocommerce-Price-currencySymbol {
    color: #4F4F4F !important;
}

.shopping-cart .item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.shopping-cart .quantity {
    padding: 6px;
    background: #F5F5F5;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.shopping-cart .quantity input[type=number] {
    display: inline-block;
    appearance: none;
    width: 30px;
    outline: none;
    border: none;
    vertical-align: middle;
    -moz-appearance: textfield;
    text-align: center;
    background: transparent;
}

.shopping-cart .quantity input[type="number"]::-webkit-outer-spin-button,
.shopping-cart .quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shopping-cart .quantity input[type=button] {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #8282821F;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #828282;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.shopping-cart .price-section {
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

.shopping-cart .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.shopping-cart .discount-price {
    font-weight: 700;
    font-size: 20px;
    line-height: 31px;
    color: #E91848;
}

.shopping-cart .discount-price.main-price {
    color: #0031A2;
}

.woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    color: #828282 !important;
    font-size: 11px;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 18.6px;
    text-align: right;
    margin-right: 4px;
}

.shopping-cart .discount-badge {
    background: #E91848;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.shopping-cart .quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shopping-cart .quantity-control button {
    width: 30px;
    height: 30px;
    border: none;
    background: #f1f1f1;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.shopping-cart .quantity-control .quantity {
    font-weight: bold;
}


/* Product Thumbnail */
.woocommerce .product-thumbnail img {
    max-width: 80px;
    border-radius: 8px;
}

/* Remove Button */
.woocommerce .product-remove a {
    color: #e53935;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce .product-remove a:hover {
    color: #c62828;
}

/* Price and Subtotal */
.woocommerce .product-price,
.woocommerce .product-subtotal {
    font-weight: bold;
    color: var(--primary-color);
}

/* Quantity Input */
.woocommerce .product-quantity .quantity input.qty {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

/* Coupon Section */
.woocommerce .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.woocommerce .coupon input.input-text {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.woocommerce .coupon button.button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.woocommerce .coupon button.button:hover {
    background-color: #45a049;
}

/* Update Cart Button */
.woocommerce button[name="update_cart"] {
    padding: 10px 20px !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.woocommerce button[name="update_cart"]:hover {
    background-color: #45a049;
}

/* Cart Totals Section */
.cart-collaterals .cart_totals {
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.cart-collaterals .cart_totals h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.cart-collaterals .cart_totals table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.cart-collaterals .cart_totals th,
.cart-collaterals .cart_totals td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cart-collaterals .cart_totals th {
    color: #555;
    font-weight: bold;
}

.cart-collaterals .cart_totals .order-total td {
    font-weight: bold;
    font-size: 16px;
    color: var(--primary-color);
}

.cart-collaterals .wc-proceed-to-checkout a {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color) !important;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cart-collaterals .wc-proceed-to-checkout a:hover {
    background-color: #45a049;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .woocommerce table.shop_table th,
    .woocommerce table.shop_table td {
        font-size: 14px;
        padding: 10px;
    }

    .woocommerce .product-thumbnail img {
        max-width: 60px;
    }

    .woocommerce .product-quantity .quantity input.qty {
        width: 50px;
    }

    .cart-collaterals .wc-proceed-to-checkout a {
        width: 100%;
        padding: 12px;
    }
}

.woocommerce td.product-name .wc-item-meta p,
.woocommerce td.product-name .wc-item-meta:last-child,
.woocommerce td.product-name dl.variation p,
.woocommerce td.product-name dl.variation:last-child {
    margin-bottom: 1em !important;
}

.product-name a {
    width: 100%;
    display: block;
    text-align: right;
    color: #333;
    font-weight: 800;
}

.product-name dd {
    width: max-content;
}

.product-name dd p {
    text-wrap: nowrap;
}

.woocommerce-Price-amount bdi {
    display: flex;
    flex-direction: row-reverse;
}

.woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    color: #333;
    font-size: 11px;
}

.checkout-header p {
    margin-top: 21px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24.8px;
    text-align: right;
    color: #333333;
}

.shipping-link {
    min-width: 228px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #828282;
}

.shipping-link a {
    color: #4F4F4F;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.shipping-links-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipping-links-head span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24.8px;
    text-align: right;
    color: #333333;
}

.shipping-links .row .col-md-6 {
    /*padding-right: 15px; */
    padding-left: 16px !important;
}

.shipping-links {
    max-width: 472px;
    margin-right: 22px;
}

button.remove-from-cart {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #8282821F;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #828282;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-cart img {
    width: 147px;
}

.empty-cart p {
    color: #333333;
    font-weight: 700;
    font-size: 20px;
    line-height: 31px;
    text-align: center;
    margin: 16px auto 0px;
}

.empty-cart span {
    color: #828282;
    font-weight: 600;
    font-size: 16px;
    line-height: 24.8px;
    text-align: center;
    margin: 8px auto 20px;
}

.empty-cart a {
    background-color: #0031A2;
    box-shadow: 0px 0px 20px 0px #5959590A;
    padding: 12px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 21.7px;
    text-align: center;
    color: white;
    transition: 0.3s;
}

.empty-cart a:hover {
    background-color: #2554ce;
}

/* Sticky Checkout Bar */
.sticky-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid #ddd;
    display: none;
}

/* Total Amount */
.checkout-total {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    display: flex;
    justify-content: space-between;
}

/* Checkout Button */
.checkout-button {
    background: #16A368;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.checkout-button:hover {
    background: #138e58;
}

.mob.shipping-links-info {
    display: none;
}

@media (min-width: 992px) and (max-width: 1235px) {
    .woocommerce-Price-amount bdi {
        font-size: 12px;
    }

    .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
        font-size: 8px;
    }

    .checkout-summary .summary-item .label {
        font-size: 11px;
    }

    .checkout-summary .summary-item.total .label {
        font-size: 11px;
    }
}

@media (max-width: 450px) {
    .shopping-cart .discount-badge {
        display: none;
    }
}

@media (max-width: 991px) {


    span.cart-page-count {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .summary-item.total {
        display: none;
    }

    .desk.checkout-button {
        display: none;
    }

    .sticky-checkout-bar {
        display: block;
    }

    .desk.shipping-links-info {
        display: none;
    }

    .mob.shipping-links-info {
        display: block;
    }

    .mob.shipping-links-info .row {
        gap: 16px;
    }

    .shopping-cart {
        padding: 15px 0px 15px 15px;
    }

    .checkout-header p {
        display: none;
    }

    .checkout-summary {
        margin-top: 30px;
    }
}

.product-suggestion .title .suggestion-checkbox input:checked+span {
    background-color: #0031a2;
}

.product-suggestion .title .suggestion-checkbox span:nth-child(2) {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-shadow: 0px 4px 10px 0px #26262614;
    cursor: pointer;
}

.product-suggestion .title .suggestion-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4F4F4F;
    font-weight: 600;
    width: max-content;
    font-size: 13px;
}

.product-suggestion .title+div>span:first-child {
    font-weight: 400;
    font-size: 12px;
    color: #828282;
    text-decoration: line-through;
}

.product-suggestion .title+div {
    align-self: end;
    display: flex;
    margin-right: auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-suggestion .title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-suggestion .title span {
    color: #4F4F4F;
    font-weight: 400;
    font-size: 14px;
    word-break: break-word;
}

@media (max-width: 991px) {
    .product-suggestion .title span {
        font-size: 11px !important;
    }
}

.product-suggestion .title .price-suggestion>span:first-child {
    font-weight: 400;
    font-size: 12px;
    color: #828282;
    text-decoration: line-through;
}

.product-suggestion .title .price-suggestion {
    align-self: end;
    display: flex;
    margin-right: auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-suggestion {
    background: #FFFFFF;
    border: 1px dotted #BDBDBD;
    border-radius: 6px;
    padding: 12px;
    align-items: center;
    flex-direction: row;
    display: flex;
    gap: 12px;
    margin-right: auto;
}

.woocommerce-notices-wrapper {
    display: none;
}