.cart-container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.cart-title {
    margin-bottom: 30px;
    color: var(--colorText);
    font-size: 28px;
    font-weight: bold;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    font-weight: bold;
    color: var(--colorTextLight);
}

.cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    padding: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-row:last-child {
    border-bottom: none;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-image {
    width: 80px;
    height: 80px;
    background-color: #f8f8f8;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.product-details h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.product-price {
    color: var(--colorPrimary, #e74c3c);
    font-weight: bold;
    font-size: 16px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #d0d0d0;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.remove-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.remove-btn:hover {
    background-color: #c0392b;
}

.cart-summary {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 18px;
    color: var(--colorPrimary, #e74c3c);
}

.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.action-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.continue-btn {
    background-color: #3498db;
    color: white;
}

.continue-btn:hover {
    background-color: #2980b9;
}

.checkout-btn {
    background-color: var(--colorPrimary, #2ecc71);
    color: white;
}

.checkout-btn:hover {
    background-color: var(--colorHover);
}

.empty-cart {
    text-align: center;
    padding: 50px 20px;
    color: #777;
}

.empty-cart-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ddd;
}

.empty-cart-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.shop-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.shop-btn:hover {
    background-color: #2980b9;
}