/*---------------------
  Cart Page starts...
-----------------------*/

/* General Section */
.cart-section {
    background-color: #eee;
    padding: 30px 10px;
    font-family: Arial, sans-serif;
}

/* Container */
.cart-container-1 {
    width: 60%;
    margin: 0 auto;
}

/* Rows and Columns */
.cart-row, .cart-row-1 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cart-col-1 {
    flex: 1 1 100%;
}

.cart-col-2 {
    flex: 1 1 65%;
}

.cart-col-3 {
    flex: 1 1 35%;
}

/* Card */
.cart-card, .cart-card-1, .cart-card-2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-card-body, .cart-card-body-1, .cart-card-body-2 {
    padding: 20px;
}

/* Cart Header */
.cart-continue-shopping {
    margin-bottom: 15px;
}

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

.cart-summary-title {
    font-weight: bold;
}


/* Cart Item Row */
.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-img {
    width: 65px;
    height: auto;
    border-radius: 5px;
}

.cart-item-details h5 {
    margin: 0;
    font-size: 16px;
}

.cart-item-subtitle {
    font-size: 14px;
    color: #666;
}

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

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-action-link {
    text-decoration: none;
    background: #007bff;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
}

.cart-delete-link {
    color: #d32323;
    text-decoration: none;
    font-size: 18px;
}

/* Checkout Card */
.cart-card-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cart-card-icons a {
    font-size: 24px;
    margin-right: 10px;
    text-decoration: none;
    color: #555;
}

.cart-divider {
    margin: 15px 0;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.cart-total-final {
    font-weight: bold;
    font-size: 18px;
}

.cart-checkout-btn {
    display: block;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    margin-top: 15px;
}

.cart-checkout-btn:hover {
    background: #0056b3;
}

.cart-checkout-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive - Tablets */
@media (max-width: 768px) {
	.cart-container-1{
		width: 80%;
	}
    .cart-row-1 {
        flex-direction: column;
    }

    .cart-col-2, .cart-col-3 {
        flex: 1 1 100%;
    }

    .cart-card-icons a {
        margin-bottom: 10px;
    }

    .cart-checkout-content {
        flex-direction: column;
        gap: 5px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
	.cart-container-1{
		width: 100%;
	}
    .cart-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .cart-img {
        width: 50px;
    }

    .cart-total-row {
        font-size: 14px;
    }

    .cart-checkout-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Cart page ends... */