.cart-section {
    max-width: 700px;
    margin: 48px auto 60px auto;
    padding: 32px 28px 28px 28px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

.cart-section h2 {
    text-align: center;
    margin-bottom: 28px;
    color: #2a5d9f;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
}

#cart-list {
    margin-bottom: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
    gap: 18px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid #e0e0e0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 6px;
    color: #333;
}

.cart-item-price {
    color: #2a5d9f;
    font-weight: bold;
    margin-bottom: 4px;
}

.cart-item-qty {
    font-size: 0.98rem;
    color: #555;
}

.cart-item-remove {
    color: #c0392b;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 12px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #922b21;
    text-decoration: underline;
}

.cart-total {
    text-align: right;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #17406a;
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.cart-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #bfc8d6;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-btn-main {
    background: #2a5d9f;
    color: #fff;
}

.cart-btn-main:hover {
    background: #17406a;
}

.cart-btn:hover {
    background: #dbe5f1;
}

@media (max-width: 600px) {
    .cart-section {
        padding: 16px 6px 18px 6px;
        max-width: 98vw;
    }
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    .cart-btn, .cart-btn-main {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 1rem;
    }
}