.product-table { 
    width: 100%;
}

.product-table .product-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-height:60px;
    max-width:60px;
}
.product-thumbnail {
    cursor: pointer;
}


.product-title {
    font-size: 16px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
}

.quantity {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: transparent;
    font-weight: bold;
}

.quantity .plus, .quantity .minus {
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    color: #000;
	font-weight:200;
	width:35px;
    border: none;
    font-size: 16px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: none;
}

.qty {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    color: #000;
    font-weight: 500 !important;
}

.out-of-stock-wrapper {
    text-align: center;
    color: red;
    font-weight: 500;
}

.loading-line-53423 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: black;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
    animation: loader 0.7s linear infinite;
    pointer-events: none;
}

@keyframes loader {
    0% {
        left: 0;
        width: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        left: 100%;
        width: 0;
    }
}

.product-table th {
    flex: 1; 
    text-align: left;
    border-bottom: 2px solid #eee !important;
}

.below-table input[type="number"] {
    border: none; 
    box-shadow: none; 
}

td, th {
    padding: .7em 1em;
    border-width: 0 0px 0px 0 !important;
}

table, td, th {
    border: 0px solid var(--ast-border-color) !important;
}

.mobile-header {
    display: none;
}

td.valuebox {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

td.valuebox .quantitywrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.product.brdr-bttm {
    border-bottom: 2px solid #eee;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .product-table thead {
        display: none;
    }

    .below-table .product {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        border-bottom: 2px solid #eee;
        padding: 10px 0;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        padding: 10px 15px;
        border-bottom: 2px solid #eee;
        font-weight: bold;
    }

    .header-column:nth-child(1) {
        flex: 1;
        text-align: left;
        order: 1;
    }

    .header-column:nth-child(2) {
        flex: 0;
        text-align: right;
        order: 2;
        margin-right: 15px;
    }

    .header-column:nth-child(3) {
        flex: 0;
        text-align: right;
        order: 3;
    }

    .product-price {
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .price-wrapper {
        margin-bottom: -30px;
    }

    .product-thumbnail {
        flex-shrink: 0;
        margin-left: -10px;
    }
    .product-thumbnail-wrapper{
		flex-shrink: 0;
    }
}


.custom-footer-cart {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 1000;
	width: 300px;
}

.custom-footer-cart .cart-content{
	display:flex;
}

.custom-footer-cart .cart-icon {
	margin-bottom: 4px;
}


/* Spinner for Footer Cart */
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.custom-footer-cart .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: black;
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
    margin: auto;
}

.quantity button,
.quantity .plus,
.quantity .minus,
input.qty {
    touch-action: manipulation;
}
