/* CB Orders Cart Page Styling */

.cb-cart-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #fff;
}

.cb-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #585858;
}

.cb-cart-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.cb-cart-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cb-clear-all {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cb-clear-all:hover {
    color: #ff7777;
    text-decoration: underline;
}

.cb-add-more-btn {
    background-color: #da1a1f;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cb-add-more-btn:hover {
    background-color: #a50206;
    transform: translateY(-2px);
	color: white;
}

/* Cart Items */
.cb-cart-items {
    margin-bottom: 30px;
}

.cb-cart-item {
    background-color: #111;
    border: 1px solid #3e3e3e;
    border-radius: 10px;
    margin-bottom: 24px;
    overflow: hidden;
}

.cb-item-content {
    display: flex;
    padding: 15px;
    align-items: center;
}

.cb-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.cb-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-item-details {
    flex: 1;
}

.cb-item-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: white;
}

.cb-item-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #da1a1f;
}

.cb-label {
	font-size: 12px;
    font-weight: bold;
    color: #cbcbcb;
	text-transform: uppercase;
}

.cb-item-pricing {
    margin-left: 20px;
    text-align: right;
    flex-shrink: 0;
}

.cb-total-amount {
    margin-bottom: 5px;
}

.cb-amount-label {
    display: block;
    font-size: 14px;
    color: #ccc;
}

.cb-amount-value {
    font-size: 26px !important;
    font-weight: bold;
    color: #ffcc00;
}

.cb-per-coin-price {
    font-size: 14px;
    color: #888;
}

.cb-item-actions {
    display: flex;
    justify-content: flex-end;
    padding: 10px 15px;
    background-color: #222;
    border-top: 1px solid #333;
}

.cb-edit-btn,
.cb-remove-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    font-size: 13px;
}

.cb-edit-btn {
    background-color: #da1a1f;
    color: white;
}

.cb-remove-btn {
    background-color: #444;
    color: #fff;
}

.cb-edit-btn:hover {
    background-color: #b90005;
}

.cb-remove-btn:hover {
    background-color: #e60000;
}

/* Empty Cart */
.cb-empty-cart {
    text-align: center;
    padding: 60px 0px;
    margin: 20px 0;
}

.cb-empty-cart-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #e60000;
    text-shadow: 0 2px 10px rgba(230, 0, 0, 0.3);
}

.cb-empty-cart h3 {
    font-size: 24px;
    font-weight: bold;
    color: #e60000;
    margin-bottom: 15px;
}

.cb-empty-cart p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #ccc;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cb-empty-cart .cb-add-more-btn {
    display: inline-block;
    background-color: #e60000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(230, 0, 0, 0.3);
}

.cb-empty-cart .cb-add-more-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 0, 0, 0.4);
}

/* Grand Total and Checkout */
.cb-grand-total {
     display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: solid #333;
    border-width: 2px 0px;
}

.cb-grand-total-label {
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
    color: white;
}

.cb-grand-total-value {
    font-size: 24px;
    font-weight: bold;
    color: #da1a1f;
}

.cb-checkout-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.cb-checkout-btn {
    background-color: #da1a1f;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-checkout-btn:hover {
    background-color: #b90005;
    transform: translateY(-2px);
}

.cb-cart-icon {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    
    .cb-cart-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cb-cart-actions {
        width: 50%;
        justify-content: flex-end;
    }
    
    
    .cb-item-pricing {
        width: 30%;
    }
    
    .cb-grand-total {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }
}

@media (max-width: 576px) {
	
	.cb-cart-header h2{
		font-size: 20px;
		font-weight: 600;
	}
	
    .cb-item-content {
        flex-direction: row;
        align-items: flex-start;
		flex-wrap: wrap;
    }
	
	.cb-cart-actions{
		width: 66%;
	}
	
	.cb-clear-all{
		font-size: 12px;
	}
	
	.cb-add-more-btn{
		font-size: 10px;
	}
    
    .cb-item-image {
        width: 30%;
		height: auto;
    }
	
	.cb-item-info p{
		margin: 1px 0px;
		font-size: 14px;
	}
	
	.cb-label{
		font-size: 12px;
	}
	
	    .cb-item-pricing {
        width: 100%;
        MARGIN-LEFT: 0PX;
        text-align: center;
        padding-top: 10px;
        margin-top: 10px;
        border: solid 1px #444444;
        border-width: 1px 0px 0px 0px;
    }
	
	
    .cb-item-actions {
        flex-direction: row;
        gap: 10px;
    }
	
	.cb-cart-header{
		align-items: center;
	}
    
    .cb-edit-btn,
    .cb-remove-btn {
        width: 100%;
        margin-left: 0;
        text-align: center;
		font-size: 12px;
    }
    
    .cb-checkout-btn {
        width: 100%;
		font-size: 14px;
    }
	
	.cb-grand-total-label{
		font-size: 14px;
		font-weight: 600;
	}
	
	.cb-grand-total-value {
		font-size: 18px;
		font-weight: 900;
	}
	
	.cb-amount-value{
		font-size: 20px !Important;
		font-weight:500;
	}
	
}

/* Loading States */
.cb-cart-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cb-cart-loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 204, 0, 0.3);
    border-radius: 50%;
    border-top-color: #e60000;
    animation: spinner 1s ease-in-out infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.cb-cart-item.cb-loading {
    position: relative;
}

.cb-cart-item.cb-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.cb-cart-item.cb-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 204, 0, 0.3);
    border-radius: 50%;
    border-top-color: #e60000;
    animation: spinner 1s linear infinite;
    z-index: 3;
} 