/* Cart Page Styles */
.cart-title {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.cart-intro {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    font-size: 1.1em;
    color: #34495e;
}

.empty-cart-message {
    text-align: center;
    font-size: 1.2em;
    margin: 40px 0;
}

.continue-shopping {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.cart-table th {
    background-color: #34495e;
    color: #ffffff;
    padding: 15px;
    text-align: left;
}

.cart-table td {
    background-color: #f8f9fa;
    padding: 15px;
    vertical-align: middle;
}

.cart-product-image {
    max-width: 80px;
    max-height: 80px;
    margin-right: 15px;
    vertical-align: middle;
}

.product-name {
    font-weight: bold;
    color: #2c3e50;
}

.quantity-input {
    width: 60px;
    padding: 5px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-danger {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.cart-benefits {
    margin-top: 40px;
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 4px;
}

.cart-benefits h2 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cart-benefits ul {
    list-style-type: none;
    padding-left: 0;
}

.cart-benefits li {
    margin-bottom: 10px;
    color: #34495e;
}

@media (max-width: 768px) {
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
        display: block;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }

    .cart-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .cart-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
    }

    .cart-actions {
        flex-direction: column;
    }

    .cart-actions .btn {
        margin-bottom: 10px;
    }
}